Add Agent TTL to Spire Server (#626)
* Add Agent TTL Signed-off-by: Eric Cavalcanti <[email protected]> * Allow unset agentttl Signed-off-by: Eric Cavalcanti <[email protected]> --------- Signed-off-by: Eric Cavalcanti <[email protected]>
This commit is contained in:
@@ -368,6 +368,7 @@ In order to run Tornjak with simple HTTP Connection only, make sure you don't cr
|
||||
| `initContainers` | Additional init containers to create | `[]` |
|
||||
| `caKeyType` | The CA key type to use, possible values are rsa-2048, rsa-4096, ec-p256, ec-p384 (AWS requires the use of RSA. EC cryptography is not supported) | `rsa-2048` |
|
||||
| `caTTL` | TTL for CA | `24h` |
|
||||
| `agentTTL` | The TTL to use for agent SVIDs. If unset, the defaultX509SvidTTL will be used. | `""` |
|
||||
| `defaultX509SvidTTL` | TTL for X509 Svids | `4h` |
|
||||
| `defaultJwtSvidTTL` | TTL for JWT Svids | `1h` |
|
||||
| `nodeAttestor.k8sPSAT.enabled` | Enable PSAT k8s nodeattestor | `true` |
|
||||
|
||||
@@ -58,6 +58,9 @@ server:
|
||||
ca_key_type: {{ .Values.caKeyType | quote }}
|
||||
ca_ttl: {{ .Values.caTTL | quote }}
|
||||
|
||||
{{- if .Values.agentTTL }}
|
||||
agent_ttl: {{ .Values.agentTTL | quote }}
|
||||
{{- end }}
|
||||
default_x509_svid_ttl: {{ .Values.defaultX509SvidTTL | quote }}
|
||||
default_jwt_svid_ttl: {{ .Values.defaultJwtSvidTTL | quote }}
|
||||
|
||||
|
||||
@@ -905,6 +905,8 @@ initContainers: []
|
||||
caKeyType: rsa-2048
|
||||
## @param caTTL TTL for CA
|
||||
caTTL: 24h
|
||||
## @param agentTTL The TTL to use for agent SVIDs. If unset, the defaultX509SvidTTL will be used.
|
||||
agentTTL: ""
|
||||
## @param defaultX509SvidTTL TTL for X509 Svids
|
||||
defaultX509SvidTTL: 4h
|
||||
## @param defaultJwtSvidTTL TTL for JWT Svids
|
||||
|
||||
Reference in New Issue
Block a user