apiVersion : apps/v1beta1 kind: Deployment metadata: name: testapp spec: selector: matchLabels: app: testapp replicas: 1 template: metadata: labels: app: testapp spec: containers: - name: testapp image: testcr.azurecr.io/testapp ports: - containerPort: 80 --- apiVersion: v1 kind: Service metadata: name: testservice spec: selector: app: testapp ports: - protocol: TCP port: 80 targetPort: 80 ---