-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathvalues.yaml
executable file
·62 lines (61 loc) · 1.73 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
flannel:
# kube-flannel image
image:
repository: rancher/hardened-flannel
tag: v0.25.4-build20240610
image_cni:
repository: rancher/hardened-cni-plugins
tag: v1.4.1-build20240430
# flannel command arguments
args:
- "--ip-masq"
- "--kube-subnet-mgr"
# Backend for kube-flannel. Backend should not be changed
# at runtime. (vxlan, host-gw, wireguard, udp)
# Documentation at https://github.com/flannel-io/flannel/blob/master/Documentation/backends.md
backend: "vxlan"
# Port used by the backend 0 means default value (VXLAN: 8472, Wireguard: 51821, UDP: 8285)
backendPort: 4789
# MTU to use for outgoing packets (VXLAN and Wiregurad) if not defined the MTU of the external interface is used.
# mtu: 1500
#
# VXLAN Configs:
#
# VXLAN Identifier to be used. On Linux default is 1.
vni: 4096
# Enable VXLAN Group Based Policy (Default false)
# GBP: false
# Enable direct routes (default is false)
# directRouting: false
# MAC prefix to be used on Windows. (Defaults is 0E-2A)
# macPrefix: "0E-2A"
#
# Wireguard Configs:
#
# UDP listen port used with IPv6
# backendPortv6: 51821
# Pre shared key to use
# psk: 0
# IP version to use on Wireguard
# tunnelMode: "separate"
# Persistent keep interval to use
# keepaliveInterval: 0
#
# General daemonset configs
#
tolerations:
- key: "node.kubernetes.io/not-ready"
effect: "NoSchedule"
- key: "node-role.kubernetes.io/control-plane"
effect: "NoSchedule"
- key: "node.cloudprovider.kubernetes.io/uninitialized"
effect: "NoSchedule"
value: "true"
- key: "node-role.kubernetes.io/etcd"
operator: "Exists"
effect: "NoExecute"
global:
systemDefaultRegistry: ""
clusterCIDRv4: ""
clusterCIDRv6: ""