Application

---
apiVersion: v1
kind: Namespace
metadata:
  name: demo-gitops
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: gitops-deployment
  namespace: demo-gitops
spec:
  replicas: 2
  selector:
    matchLabels:
      app: gitops-deployment
  template:
    metadata:
      labels:
        app: gitops-deployment
    spec:
      containers:
        - name: gitops-deployment
          image: d3fk/asciinematic:latest
          ports:
            - name: http
              containerPort: 80