Created
May 18, 2020 18:48
-
-
Save kalinon/bd3d1e5dde41b6a94532d83e1495ce3d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server: | |
standalone: | |
enabled: true | |
config: | | |
ui = true | |
listener "tcp" { | |
tls_disable = 1 | |
address = "[::]:8200" | |
cluster_address = "[::]:8201" | |
} | |
service: | |
enabled: true | |
extraSecretEnvironmentVars: [] | |
# extraVolumes is a list of extra volumes to mount. These will be exposed | |
# to Vault in the path `/vault/userconfig/<name>/`. The value below is | |
# an array of objects, examples are shown below. | |
extraVolumes: | |
# This mounts the config.hcl which holds our MinIO backend config | |
- type: secret | |
name: vault-config | |
# Have vault load the config.hcl in the mounted secret | |
extraArgs: -config=/vault/userconfig/vault-config/config.hcl | |
ui: | |
enabled: true | |
serviceType: NodePort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment