
This PS drives basic CNI options via ansible playbook in the KubeADM-AIO container and modifies the calico chart to support configuration via values. Change-Id: Iaf2f9807438c3a34e797c62c2c6913edb677997c
50 lines
1.7 KiB
YAML
50 lines
1.7 KiB
YAML
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- if .Values.manifests.configmap_calico_config }}
|
|
{{- $envAll := . }}
|
|
|
|
{{- if empty .Values.conf.cni_network_config.mtu -}}
|
|
{{/*
|
|
#NOTE(portdirect): to err on the side of caution we subtract 20 from the physical
|
|
# MTU to account for IPIP overhead unless explicty turned off.
|
|
*/}}
|
|
{{- if eq .Values.conf.node.CALICO_IPV4POOL_IPIP "off" -}}
|
|
{{- set .Values.conf.cni_network_config "mtu" .Values.networking.mtu | quote | trunc 0 -}}
|
|
{{- else -}}
|
|
{{- set .Values.conf.cni_network_config "mtu" (sub .Values.networking.mtu 20) | quote | trunc 0 -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
---
|
|
# This ConfigMap is used to configure a self-hosted Calico installation.
|
|
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: calico-config
|
|
data:
|
|
# The location of your etcd cluster. This uses the Service clusterIP
|
|
# defined below.
|
|
etcd_endpoints: http://10.96.232.136:{{ tuple "etcd" "internal" "client" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
|
|
|
# Configure the Calico backend to use.
|
|
calico_backend: "bird"
|
|
|
|
# The CNI network configuration to install on each node.
|
|
cni_network_config: |-
|
|
{{ toJson $envAll.Values.conf.cni_network_config | indent 4 }}
|
|
{{- end }}
|