
Sometimes the ephemeral environment needs additional cloud-init data. This change allows user-data sections to be added to the default files in /etc/maas/preseeds: enlist, commissioning, and curtin. For example, to resolve issues with 'apt-get update' failures during enlistment, something like this may be necessary: conf: cloudconfig: override: true sections: bootcmd: - "rm -fr /var/lib/apt/lists" Change-Id: I817006a799003ace3f35d02507489720b0f9079b
63 lines
2.2 KiB
YAML
63 lines
2.2 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.
|
|
*/}}
|
|
|
|
{{- $envAll := . }}
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: maas-etc
|
|
data:
|
|
curtin_userdata: |+
|
|
{{ tuple "etc/_curtin_userdata.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
named.conf.options: |+
|
|
{{ if .Values.conf.bind.override -}}
|
|
{{ .Values.conf.bind.override | indent 4 }}
|
|
{{- else -}}
|
|
{{- if .Values.conf.bind.prefix -}}
|
|
{{ .Values.conf.bind.prefix | indent 4 }}
|
|
{{- end }}
|
|
{{ tuple "etc/_region-dns-config.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.conf.bind.append -}}
|
|
{{ .Values.conf.bind.append | indent 4 }}
|
|
{{- end }}
|
|
regiond.conf: |
|
|
{{ tuple "etc/_regiond.conf.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
nsswitch.conf: |
|
|
{{ tuple "etc/_nsswitch.conf.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
{{- if .Values.conf.drivers }}
|
|
drivers.yaml: |
|
|
{{ tuple "etc/_drivers.yaml.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
{{- end }}
|
|
sleep-inittab: |
|
|
::sysinit:/tmp/maas-vip-configure.sh sleep
|
|
rsyslog.conf: |
|
|
{{ tuple "etc/_rsyslog.conf.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
logrotate.conf: |
|
|
{{ tuple "etc/_logrotate.conf.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
logrotate.cron: |
|
|
{{ tuple "etc/_logrotate.cron.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
{{- if .Values.conf.cloudconfig.override }}
|
|
enlist: |+
|
|
{{ tuple "etc/_enlist.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
commissioning: |+
|
|
{{ tuple "etc/_commissioning.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
curtin: |+
|
|
{{ tuple "etc/_curtin.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
{{- end }}
|