apiVersion: v1 kind: ConfigMap metadata: name: test-html namespace: default data: index.html: | K3s Test Page

🚀 K3s Cluster Running!

Domain: *.u6.net3w.com

Powered by Caddy + K3s

--- apiVersion: apps/v1 kind: Deployment metadata: name: test-html namespace: default spec: replicas: 1 selector: matchLabels: app: test-html template: metadata: labels: app: test-html spec: containers: - name: nginx image: nginx:alpine ports: - containerPort: 80 volumeMounts: - name: html mountPath: /usr/share/nginx/html volumes: - name: html configMap: name: test-html --- apiVersion: v1 kind: Service metadata: name: test-html namespace: default spec: selector: app: test-html ports: - port: 80 targetPort: 80 type: ClusterIP