apiVersion: apps/v1 kind: Deployment metadata: name: aks-helloworld-two spec: replicas: 1 selector: matchLabels: app: aks-helloworld-two template: metadata: labels: app: aks-helloworld-two spec: containers: - name: aks-helloworld-two image: mcr.microsoft.com/azuredocs/aks-helloworld:v1 ports: - containerPort: 80 env: - name: TITLE value: "AKS Ingress Demo" nodeSelector: kubernetes.io/os: linux --- apiVersion: v1 kind: Service metadata: name: aks-helloworld-two-svc spec: ports: - port: 80 targetPort: 80 protocol: TCP name: http selector: app: aks-helloworld-two