Skip to content

Commit

Permalink
Fix some missed values
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesplain committed Sep 9, 2019
1 parent 8570b3a commit 8407565
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,8 @@ spec:
key: calico_backend
# Cluster type to identify the deployment type
- name: CLUSTER_TYPE
value: "k8s,bgp"
# was value: "k8s,bgp"
value: "kops,bgp"
# Auto-detect the BGP IP address.
- name: IP
value: "autodetect"
Expand All @@ -800,7 +801,7 @@ spec:
# chosen from this range. Changing this value after installation will have
# no effect. This should fall within `--cluster-cidr`.
- name: CALICO_IPV4POOL_CIDR
value: "192.168.0.0/16"
value: "{{ .KubeControllerManager.ClusterCIDR }}"
# Disable file logging so `kubectl logs` works.
- name: CALICO_DISABLE_FILE_LOGGING
value: "true"
Expand All @@ -810,9 +811,9 @@ spec:
# Disable IPv6 on Kubernetes.
- name: FELIX_IPV6SUPPORT
value: "false"
# Set Felix logging to "info"
# Set Felix logging to the desired level
- name: FELIX_LOGSEVERITYSCREEN
value: "info"
value: "{{- or .Networking.Calico.LogSeverityScreen "info" }}"
- name: FELIX_HEALTHENABLED
value: "true"
securityContext:
Expand Down

0 comments on commit 8407565

Please sign in to comment.