|
12 | 12 | | authentication.awsConfig.useExistingSecret | bool | `false` | Use an existing secret to configure the AWS credentials. | |
13 | 13 | | authentication.enabled | bool | `true` | Enable/Disable the authentication module. | |
14 | 14 | | authentication.tlsCompatibilityMode | bool | `false` | Enable TLS compatibility mode for client certificates and keys. If set to true, Liqo will use widely supported algorithm (RSA) instead of Ed25519 (default) for generating private keys and CSRs. Enable this option to ensure compatibility with systems that do not yet support Ed25519 as signature algorithm. | |
15 | | -| common.affinity | object | `{}` | Affinity for all liqo pods, excluding virtual kubelet. | |
| 15 | +| common.affinity | object | `{}` | Affinity for all liqo pods, excluding virtual kubelet pod and fabric daemonset. | |
16 | 16 | | common.extraArgs | list | `[]` | Extra arguments for all liqo pods, excluding virtual kubelet. | |
17 | 17 | | common.globalAnnotations | object | `{}` | Global annotations to be added to all resources created by Liqo controllers | |
18 | 18 | | common.globalLabels | object | `{"liqo.io/managed":"true"}` | Global labels to be added to all resources created by Liqo controllers | |
19 | | -| common.nodeSelector | object | `{}` | NodeSelector for all liqo pods, excluding virtual kubelet. | |
20 | | -| common.tolerations | list | `[]` | Tolerations for all liqo pods, excluding virtual kubelet. | |
| 19 | +| common.nodeSelector | object | `{}` | NodeSelector for all liqo pods, excluding virtual kubelet pod and fabric daemonset. | |
| 20 | +| common.tolerations | list | `[]` | Tolerations for all liqo pods, excluding virtual kubelet pod and fabric daemonset. | |
21 | 21 | | controllerManager.config.defaultLimitsEnforcement | string | `"None"` | Defines how strict is the enforcement of the quota offered by the remote cluster. enableResourceEnforcement must be enabled to use this feature. Possible values are: None, Soft, Hard. None: the offloaded pods might not have the resource `requests` or `limits`. Soft: it forces the offloaded pods to have `requests` set. If the pods go over the requests, the total used resources might go over the quota. Hard: it forces the offloaded pods to have `limits` and `requests` set, with `requests` == `limits`. This is the safest mode as the consumer cluster cannot go over the quota. | |
22 | 22 | | controllerManager.config.enableNodeFailureController | bool | `false` | Ensure offloaded pods running on a failed node are evicted and rescheduled on a healthy node, preventing them to remain in a terminating state indefinitely. This feature can be useful in case of remote node failure to guarantee better service continuity and to have the expected pods workload on the remote cluster. However, enabling this feature could produce zombies in the worker node, in case the node returns Ready again without a restart. | |
23 | 23 | | controllerManager.config.enableResourceEnforcement | bool | `true` | It enforces offerer-side that offloaded pods do not exceed offered resources (based on container limits). This feature is suggested to be enabled when consumer-side enforcement is not sufficient. It makes sure that the sum of the requests of the offloaded pods never exceeds the quota offered by the remote cluster. The quota can be still exceeded if no limits and requests are defined in the offloaded pods or if the limits are larger than the requests. For a stricter enforcement, the defaultLimitsEnforcement can be set to Hard. | |
|
93 | 93 | | networking.fabric.config.nftablesMonitor | bool | `false` | Enable/Disable the nftables monitor for the fabric pod. It means that the fabric pod will monitor the nftables rules and will restore them in case of changes. In some cases (like K3S), this monitor can cause a huge amount of CPU usage. If you are experiencing high CPU usage, you can disable this feature. | |
94 | 94 | | networking.fabric.image.name | string | `"ghcr.io/liqotech/fabric"` | Image repository for the fabric pod. | |
95 | 95 | | networking.fabric.image.version | string | `""` | Custom version for the fabric image. If not specified, the global tag is used. | |
| 96 | +| networking.fabric.pod.affinity | object | `{}` | Affinity for the fabric pod. | |
96 | 97 | | networking.fabric.pod.annotations | object | `{}` | Annotations for the fabric pod. | |
97 | 98 | | networking.fabric.pod.extraArgs | list | `[]` | Extra arguments for the fabric pod. | |
98 | 99 | | networking.fabric.pod.labels | object | `{}` | Labels for the fabric pod. | |
| 100 | +| networking.fabric.pod.nodeSelector | object | `{}` | NodeSelector for the fabric pod. | |
99 | 101 | | networking.fabric.pod.priorityClassName | string | `""` | PriorityClassName (https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#pod-priority) for the fabric pod. | |
100 | 102 | | networking.fabric.pod.resources | object | `{"limits":{},"requests":{}}` | Resource requests and limits (https://kubernetes.io/docs/user-guide/compute-resources/) for the fabric pod. | |
101 | | -| networking.fabric.tolerations | list | `[]` | Extra tolerations for the fabric daemonset. | |
| 103 | +| networking.fabric.pod.tolerations | list | `[]` | Extra tolerations for the fabric pod. | |
102 | 104 | | networking.gatewayTemplates | object | `{"container":{"gateway":{"image":{"name":"ghcr.io/liqotech/gateway","version":""}},"geneve":{"image":{"name":"ghcr.io/liqotech/gateway/geneve","version":""}},"wireguard":{"image":{"name":"ghcr.io/liqotech/gateway/wireguard","version":""}}},"ping":{"interval":"2s","lossThreshold":5,"updateStatusInterval":"10s"},"replicas":1,"server":{"service":{"allocateLoadBalancerNodePorts":"","annotations":{}}},"wireguard":{"implementation":"kernel"}}` | Set the options for the default gateway (server/client) templates. The default templates use a WireGuard implementation to connect the gateway of the clusters. These options are used to configure only the default templates and should not be considered if a custom template is used. | |
103 | 105 | | networking.gatewayTemplates.container.gateway.image.name | string | `"ghcr.io/liqotech/gateway"` | Image repository for the gateway container. | |
104 | 106 | | networking.gatewayTemplates.container.gateway.image.version | string | `""` | Custom version for the gateway image. If not specified, the global tag is used. | |
|
0 commit comments