open-vault/command/agent/config/test-fixtures/config-cache-persist-false.hcl
Theron Voran 1fdf08b149
agent: persistent caching support (#10938)
Adds the option of a write-through cache, backed by boltdb

Co-authored-by: Theron Voran <tvoran@users.noreply.github.com>
Co-authored-by: Jason O'Donnell <2160810+jasonodonnell@users.noreply.github.com>
Co-authored-by: Calvin Leung Huang <cleung2010@gmail.com>
2021-03-03 14:01:33 -08:00

15 lines
240 B
HCL

pid_file = "./pidfile"
cache {
persist "kubernetes" {
exit_on_err = false
keep_after_import = false
path = "/vault/agent-cache/"
}
}
listener "tcp" {
address = "127.0.0.1:8300"
tls_disable = true
}