Merge pull request #25 from 1Password/readme-update

Minor README adjustments
This commit is contained in:
Joris Coenen
2021-04-21 10:50:48 +02:00
committed by GitHub

View File

@@ -102,7 +102,7 @@ To create a Kubernetes Secret from a 1Password item, create a yaml file with the
```yaml ```yaml
apiVersion: onepassword.com/v1 apiVersion: onepassword.com/v1
kind: OnePasswordItem # {insert_new_name} kind: OnePasswordItem
metadata: metadata:
name: <item_name> #this name will also be used for naming the generated kubernetes secret name: <item_name> #this name will also be used for naming the generated kubernetes secret
spec: spec:
@@ -131,8 +131,8 @@ kind: Deployment
metadata: metadata:
name: deployment-example name: deployment-example
annotations: annotations:
operator.1password.io/item-path: "vaults/{vault_id_or_title}/items/{item_id_or_title}" operator.1password.io/item-path: "vaults/<vault_id_or_title>/items/<item_id_or_title>"
operator.1password.io/item-name: "{secret_name}" operator.1password.io/item-name: "<secret_name>"
``` ```
Applying this yaml file will create a Kubernetes Secret with the name `<secret_name>` and contents from the location specified at the specified Item Path. Applying this yaml file will create a Kubernetes Secret with the name `<secret_name>` and contents from the location specified at the specified Item Path.