19 lines
362 B
YAML
19 lines
362 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: sample-webapp-html
|
|
namespace: sample
|
|
labels:
|
|
app: sample-webapp
|
|
managed-by: argocd
|
|
data:
|
|
index.html: |
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>Sample Web App</title></head>
|
|
<body>
|
|
<h1>Sample Web App</h1>
|
|
<p>Managed by Argo CD - GitOps is working!</p>
|
|
</body>
|
|
</html>
|