35dfb998f4
This PS moves to namespace specific ingress controllers, and a cluster wide ingress controller that acts as the external front door to the cluster. The cluster ingress controller will also be able to create a dummy interface that can be announced via the OpenStack-Helm-Infra Calico chart. The ability to exercise the edge VIP feature is currently only demonstrated in the single node gate and guide, as it requires additional configuration, or hardware to set up the routes in a multinode env. Change-Id: I8b823b93465f2e90aaabcca9ec9b783d34539e07
34 lines
1.0 KiB
YAML
34 lines
1.0 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_conf }}
|
|
{{- $envAll := . }}
|
|
|
|
{{- if and .Values.network.host_namespace .Values.network.vip.manage -}}
|
|
{{- if empty (index .Values.conf.ingress "bind-address") -}}
|
|
{{- set .Values.conf.ingress "bind-address" ( .Values.network.vip.addr | split "/" )._0 | quote | trunc 0 -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: ingress-conf
|
|
data:
|
|
{{ toYaml .Values.conf.ingress | indent 2 }}
|
|
{{- end }}
|