Initial Helm and Kargo setup

This commit is contained in:
5vl
2026-09-10 13:57:05 +02:00
commit 9af750af3f
16 changed files with 576 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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>