17 lines
381 B
YAML
17 lines
381 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: static-site-html
|
|
namespace: default
|
|
data:
|
|
index.html: |
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>Hello from GitOps!</title></head>
|
|
<body>
|
|
<h1>🚀 First Level: Static Site</h1>
|
|
<p>Deployed via Argo CD + Kyverno</p>
|
|
<p>Image: harbor.apps.kopikopi.com.ru/drone/test:latest</p>
|
|
</body>
|
|
</html>
|