24 lines
607 B
YAML
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>
|