Skip to content

Commit

Permalink
Make envvar values strings in YAML (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
george-angel authored Oct 4, 2024
1 parent 12c75ee commit e855110
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Set following envvar:
```
- name: STRONGBOX_KEYRING_ENABLED
value: true
value: "true"
```
to enable Strongbox decryption for your Namespace.
Expand Down Expand Up @@ -100,7 +100,7 @@ spec:
plugin:
env:
- name: STRONGBOX_ENABLED
value: true
value: "true"
- name: STRONGBOX_SECRET_NAMESPACE
value: team-a
- name: STRONGBOX_SECRET_KEY
Expand All @@ -113,7 +113,7 @@ Set following envvar:

```
- name: GIT_SSH_CUSTOM_KEY_ENABLED
value: true
value: "true"
```

to use your own Git SSH key to fetch remote private bases.
Expand Down Expand Up @@ -272,8 +272,8 @@ subjects:
|-|-|-|
| ARGOCD_APP_NAME | set by argocd | name of application |
| ARGOCD_APP_NAMESPACE | set by argocd | application's destination namespace |
| STRONGBOX_KEYRING_ENABLED | false | Enable Strongbox for decryption |
| STRONGBOX_KEYRING_ENABLED | "false" | Enable Strongbox for decryption |
| STRONGBOX_KEYRING_KEY | .strongbox_keyring | the name of the secret data key which contains a valid strongbox keyring file |
| STRONGBOX_SECRET_NAMESPACE | | the name of a namespace where secret resource containing strongbox keyring is located, defaults to current |
| GIT_SSH_CUSTOM_KEY_ENABLED | false | Enable Git SSH building using custom (non global) key |
| GIT_SSH_CUSTOM_KEY_ENABLED | "false" | Enable Git SSH building using custom (non global) key |
| GIT_SSH_SECRET_NAMESPACE | | the value should be the name of a namespace where secret resource containing ssh keys are located, defaults to current |

0 comments on commit e855110

Please sign in to comment.