summaryrefslogtreecommitdiffstats
path: root/templates/configmap.yaml
diff options
context:
space:
mode:
authorMarco Platania <platania@research.att.com>2019-10-09 14:39:50 +0000
committerGerrit Code Review <gerrit@onap.org>2019-10-09 14:39:50 +0000
commit5b0139d2234044b4cef0e78fe35dee30c77cf39a (patch)
treed14d36233c3d748cbd53bd43851ba104320ec18f /templates/configmap.yaml
parent2b3f953c2b2099539166e49bdd18f61d70e3ca68 (diff)
parentbd1c1916d906a894dbc0c1fd1245bf3d4735371b (diff)
Merge "splitting out light httpd" into stagingstaging
Diffstat (limited to 'templates/configmap.yaml')
-rw-r--r--templates/configmap.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/configmap.yaml b/templates/configmap.yaml
index da50934..170ee56 100644
--- a/templates/configmap.yaml
+++ b/templates/configmap.yaml
@@ -24,3 +24,29 @@ metadata:
heritage: {{ .Release.Service }}
data:
{{ tpl (.Files.Glob "resources/config/eteshare/config/*").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: {{ include "common.fullname" . }}-lighttpd-configmap
+ namespace: {{ include "common.namespace" . }}
+ labels:
+ app: {{ include "common.name" . }}
+ chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
+ release: {{ .Release.Name }}
+ heritage: {{ .Release.Service }}
+data:
+{{ tpl (.Files.Glob "resources/config/lighttpd/*").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: {{ include "common.fullname" . }}-lighttpd-index-configmap
+ namespace: {{ include "common.namespace" . }}
+ labels:
+ app: {{ include "common.name" . }}
+ chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
+ release: {{ .Release.Name }}
+ heritage: {{ .Release.Service }}
+data:
+{{ tpl (.Files.Glob "resources/lighttpd/*").AsConfig . | indent 2 }} \ No newline at end of file