-
Notifications
You must be signed in to change notification settings - Fork 7
/
values.yaml
29 lines (26 loc) · 1.24 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
## When podCIDR is not defined or it's empty string (""), calico will try to:
## a. autodetect it from kubeadm configmaps (if cluster was installed with kubeadm)
## (check if it found it in the calico-node pod. e.g. kubectl -n kube-system logs -f calico-node-v56w9 | grep 'kubeadm config map' )
## b. use "192.168.0.0/16"
## More info at: https://docs.projectcalico.org/getting-started/kubernetes/self-managed-onprem/onpremises#install-calico-with-kubernetes-api-datastore-50-nodes-or-less
## and: https://github.com/projectcalico/calico/issues/717
## If you are not sure, find it like this: `grep cluster-cidr /etc/kubernetes/manifests/kube-controller-manager.yaml | cut -d"=" -f2`
## PS: if you had flannel before, your clusters will have "10.244.0.0/16"
podCIDR: ""
#podCIDR: "192.168.0.0/16"
flexVolumePluginDir: "/usr/libexec/kubernetes/kubelet-plugins/volume/exec"
vethMtu: 0
autoHostEndpoints: false
typha:
image:
registry: "docker.io"
enabled: false
env:
# TYPHA_PROMETHEUSMETRICSPORT: "9093"
node:
image:
registry: "docker.io"
env:
# Disable sourceDestCheck on AWS
# https://docs.projectcalico.org/reference/resources/felixconfig#aws-iam-rolepolicy-for-source-destination-check-configuration
#FELIX_AWSSRCDSTCHECK: "Disable"