gitops/helm/test/templates/webpage-cm.yaml
2026-07-23 22:00:10 +02:00

16 lines
299 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: test-cm
namespace: test
data:
index.html: |
<html>
<head>
<title>hello there</title>
</head>
<body>
<h1>Test Page</h1>
<p>Lorem ipsum, dolor sit amet.</p>
</body>
</html>