13 lines
439 B
YAML
13 lines
439 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: hello-page
|
|
namespace: hello
|
|
data:
|
|
index.html: |
|
|
<!doctype html><meta charset=utf-8><title>gitops</title>
|
|
<style>body{font-family:system-ui;max-width:34rem;margin:4rem auto;padding:0 1rem;line-height:1.6}
|
|
b{background:#eef;padding:.1em .3em;border-radius:3px}</style>
|
|
<h1>deployed by argocd</h1>
|
|
<p>Nobody ran kubectl. This page came from git, version <b>v1</b>.</p>
|