Files
kub-web-test/templates/configmap.yaml
T
2026-09-10 13:57:05 +02:00

20 lines
407 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-web-content
data:
index.html: |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ .Values.environment }} - kub-web-test</title>
</head>
<body>
<h1>{{ .Values.environment }}</h1>
<p>kub-web-test deployed with Helm, Argo CD and Kargo.</p>
</body>
</html>