apiVersion: apps/v1 kind: Deployment metadata: name: findadispo-frontend namespace: cannaiq spec: replicas: 1 selector: matchLabels: app: findadispo-frontend template: metadata: labels: app: findadispo-frontend spec: imagePullSecrets: - name: regcred containers: - name: findadispo-frontend image: git.spdy.io/creationshop/findadispo-frontend:v1.0.0 ports: - containerPort: 80 resources: requests: memory: "64Mi" cpu: "50m" limits: memory: "128Mi" cpu: "100m" --- apiVersion: v1 kind: Service metadata: name: findadispo-frontend namespace: cannaiq spec: selector: app: findadispo-frontend ports: - port: 80 targetPort: 80