12 lines
273 B
YAML
12 lines
273 B
YAML
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ .Release.Name }}-index-html-configmap
|
||
|
namespace: default
|
||
|
data:
|
||
|
index.html: |
|
||
|
<html>
|
||
|
<h1>Welcome</h1>
|
||
|
</br>
|
||
|
<h1>Hi! I got deployed in {{ .Values.env.name }} Environment using Helm Chart </h1>
|
||
|
</html
|