16 lines
299 B
YAML
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> |