blob: 772c3a79c87545d6dff9b7e4471db62ee52bda6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#{{ if not .Values.disableAaiAaiResources }}
apiVersion: v1
kind: ConfigMap
metadata:
name: aai-chef-config-configmap
namespace: {{ .Values.nsPrefix }}-aai
data:
{{ tpl (.Files.Glob "resources/config/aai-data/chef-config/dev/.knife/solo.rb").AsConfig . | indent 2 }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: aai-resources-environments-configmap
namespace: {{ .Values.nsPrefix }}-aai
data:
{{ tpl (.Files.Glob "resources/config/aai-data/environments/*").AsConfig . | indent 2 }}
#{{ end }}
|