apiVersion: apps/v1 kind: Deployment metadata: name: test-app namespace: default labels: app: test-app spec: replicas: 2 selector: matchLabels: app: test-app template: metadata: labels: app: test-app version: v1 spec: containers: - name: nginx image: nginx:1.25-alpine ports: - containerPort: 80 volumeMounts: - name: html mountPath: /usr/share/nginx/html volumes: - name: html configMap: name: test-app-html --- apiVersion: v1 kind: ConfigMap metadata: name: test-app-html namespace: default data: index.html: | Test App v1

🚀 Test Application

Version: v1.0

Deployed via GitOps with ArgoCD

Hostname: neta