22global :
33 imagePullSecrets :
44# - name: "a-secret-name"
5+ # Labels to be applied to all deployed resources
6+ commonLabels : {}
7+ # Annotations to be applied to all deployed resources
8+ commonAnnotations : {}
59
610# The IPv4 cidr pool to create on startup if none exists. Pod IPs will be
711# chosen from this range.
@@ -35,7 +39,7 @@ flannel:
3539 backend : " vxlan"
3640 # Port used by the backend 0 means default value (VXLAN: 8472, Wireguard: 51821, UDP: 8285)
3741 # backendPort: 0
38- # MTU to use for outgoing packets (VXLAN and Wiregurad ) if not defined the MTU of the external interface is used.
42+ # MTU to use for outgoing packets (VXLAN and WireGuard ) if not defined the MTU of the external interface is used.
3943 # mtu: 1500
4044 #
4145 # VXLAN Configs:
@@ -49,13 +53,13 @@ flannel:
4953 # MAC prefix to be used on Windows. (Defaults is 0E-2A)
5054 # macPrefix: "0E-2A"
5155 #
52- # Wireguard Configs:
56+ # WireGuard Configs:
5357 #
5458 # UDP listen port used with IPv6
5559 # backendPortv6: 51821
5660 # Pre shared key to use
5761 # psk: 0
58- # IP version to use on Wireguard
62+ # IP version to use on WireGuard
5963 # tunnelMode: "separate"
6064 # Persistent keep interval to use
6165 # keepaliveInterval: 0
@@ -94,6 +98,46 @@ flannel:
9498 operator : Exists
9599 nodeSelector : {}
96100
101+ configMap :
102+ # Additional labels to add to the ConfigMap
103+ labels : {}
104+ # Additional annotations to add to the ConfigMap
105+ annotations : {}
106+
107+ # Labels to be applied to the deployed pods
108+ podLabels : {}
109+ # Annotations to be applied to the deployed pods
110+ podAnnotations : {}
111+
112+ daemonSet :
113+ # Additional labels to add to the DaemonSet
114+ labels : {}
115+ # Additional annotations to add to the DaemonSet
116+ annotations : {}
117+
118+ serviceAccount :
119+ # Additional labels to add to the service account
120+ labels : {}
121+ # Additional annotations to add to the service account
122+ annotations : {}
123+
124+ rbac :
125+ # Additional labels to add to all RBAC-related resources
126+ labels : {}
127+ # Additional annotations to add to all RBAC-related resources
128+ annotations : {}
129+ clusterRole :
130+ # Additional labels to add to the ClusterRole
131+ labels : {}
132+ # Additional annotations to add to the ClusterRole
133+ annotations : {}
134+ clusterRoleBinding :
135+ # Additional labels to add to the ClusterRoleBinding
136+ labels : {}
137+ # Additional annotations to add to the ClusterRoleBinding
138+ annotations : {}
139+
140+
97141netpol :
98142 enabled : false
99143 args :
0 commit comments