34 lines
576 B
Plaintext
34 lines
576 B
Plaintext
agent {
|
|
data_dir = "/run/spire"
|
|
log_level = "DEBUG"
|
|
server_address = "spire-server"
|
|
server_port = "8081"
|
|
socket_path = "/run/spire/sockets/agent.sock"
|
|
trust_bundle_path = "/run/spire/bundle/bundle.crt"
|
|
trust_domain = {{ quote .Values.mtls.trustDomain }}
|
|
}
|
|
|
|
plugins {
|
|
NodeAttestor "k8s_psat" {
|
|
plugin_data {
|
|
cluster = "nginx-mesh"
|
|
}
|
|
}
|
|
|
|
KeyManager "memory" {
|
|
plugin_data {
|
|
}
|
|
}
|
|
|
|
WorkloadAttestor "k8s" {
|
|
plugin_data {
|
|
skip_kubelet_verification = true
|
|
}
|
|
}
|
|
|
|
WorkloadAttestor "unix" {
|
|
plugin_data {
|
|
}
|
|
}
|
|
}
|