We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change database backend to file backend.
Inside config/vault_config.json this is the content of this file: { "ui": true, "backend": { "file": { "path": "/vault_data", } }, "listener": { "tcp": { "address": "0.0.0.0:8200", "tls_disable": true } }, "disable_mlock": true }
In tesla_services.yml is needed to add: vault: volumes: - vault_volume:/vault_data
volumes: .... vault_volume: driver_opts: type: none device: /var/tesla/vault o: bind
The text was updated successfully, but these errors were encountered:
Added option to select Vault backend. Fix issue #101
f824964
This issue is implemented.
Sorry, something went wrong.
No branches or pull requests
Change database backend to file backend.
Inside config/vault_config.json this is the content of this file:
{
"ui": true,
"backend": {
"file": {
"path": "/vault_data",
}
},
"listener": {
"tcp": {
"address": "0.0.0.0:8200",
"tls_disable": true
}
},
"disable_mlock": true
}
In tesla_services.yml is needed to add:
vault:
volumes:
- vault_volume:/vault_data
volumes:
....
vault_volume:
driver_opts:
type: none
device: /var/tesla/vault
o: bind
The text was updated successfully, but these errors were encountered: