mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-09 07:22:40 -04:00
parent
9bfdce096c
commit
fcea00331a
3 changed files with 18 additions and 5 deletions
|
@ -132,7 +132,13 @@ extraArgs: []
|
||||||
extraEnv: []
|
extraEnv: []
|
||||||
|
|
||||||
# -- Additional agent hostPath mounts.
|
# -- Additional agent hostPath mounts.
|
||||||
extraHostPathMounts: []
|
extraHostPathMounts:
|
||||||
|
- name: dev-net
|
||||||
|
mountPath: /dev/net
|
||||||
|
hostPath: /dev/net
|
||||||
|
hostPathType: Directory
|
||||||
|
readOnly: true
|
||||||
|
mountPropagation: HostToContainer
|
||||||
|
|
||||||
# -- Additional agent volumes.
|
# -- Additional agent volumes.
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
|
@ -519,7 +525,7 @@ encryption:
|
||||||
|
|
||||||
wireguard:
|
wireguard:
|
||||||
# -- Enables the fallback to the user-space implementation.
|
# -- Enables the fallback to the user-space implementation.
|
||||||
userspaceFallback: false
|
userspaceFallback: true
|
||||||
|
|
||||||
# -- Deprecated in favor of encryption.ipsec.keyFile.
|
# -- Deprecated in favor of encryption.ipsec.keyFile.
|
||||||
# Name of the key file inside the Kubernetes secret configured via secretName.
|
# Name of the key file inside the Kubernetes secret configured via secretName.
|
||||||
|
|
|
@ -522,7 +522,7 @@ encryption:
|
||||||
|
|
||||||
wireguard:
|
wireguard:
|
||||||
# -- Enables the fallback to the user-space implementation.
|
# -- Enables the fallback to the user-space implementation.
|
||||||
userspaceFallback: false
|
userspaceFallback: true
|
||||||
|
|
||||||
# -- Deprecated in favor of encryption.ipsec.keyFile.
|
# -- Deprecated in favor of encryption.ipsec.keyFile.
|
||||||
# Name of the key file inside the Kubernetes secret configured via secretName.
|
# Name of the key file inside the Kubernetes secret configured via secretName.
|
||||||
|
@ -1582,7 +1582,13 @@ operator:
|
||||||
extraEnv: []
|
extraEnv: []
|
||||||
|
|
||||||
# -- Additional cilium-operator hostPath mounts.
|
# -- Additional cilium-operator hostPath mounts.
|
||||||
extraHostPathMounts: []
|
extraHostPathMounts:
|
||||||
|
- name: dev-net
|
||||||
|
mountPath: /dev/net
|
||||||
|
hostPath: /dev/net
|
||||||
|
hostPathType: Directory
|
||||||
|
readOnly: true
|
||||||
|
mountPropagation: HostToContainer
|
||||||
|
|
||||||
# -- Additional cilium-operator volumes.
|
# -- Additional cilium-operator volumes.
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
|
|
|
@ -49,7 +49,8 @@ var azureVals = map[string]any{
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
},
|
},
|
||||||
"encryption": map[string]any{
|
"encryption": map[string]any{
|
||||||
"enabled": false,
|
"enabled": true,
|
||||||
|
"type": "wireguard",
|
||||||
},
|
},
|
||||||
"l7Proxy": false,
|
"l7Proxy": false,
|
||||||
"ipam": map[string]any{
|
"ipam": map[string]any{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue