Files
homelab/tmp/acm-hub-bootstrap/charts/all/hello-world/templates/hello-world-cm.yaml
2025-05-19 11:18:25 -05:00

24 lines
607 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: hello-world-configmap
labels:
app.kubernetes.io/instance: hello-world
data:
"index.html": |-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello World</title>
</head>
<body>
<h1>Hello World!</h1>
<br/>
<h2>
Hub Cluster domain is '{{ .Values.global.hubClusterDomain }}' <br>
Pod is running on Local Cluster Domain '{{ .Values.global.localClusterDomain }}' <br>
</h2>
</body>
</html>