apiVersion: apps/v1 kind: Deployment metadata: name: public-website spec: selector: matchLabels: app: public-website replicas: 1 template: metadata: labels: app: public-website spec: containers: - name: public-website image: "volosoft/microservice-demo-public-website" env: - name: ASPNETCORE_ENVIRONMENT value: Development - name: ASPNETCORE_URLS value: http://0.0.0.0:80 - name: AuthServer__Authority value: http://auth-server:51511 - name: Redis__Configuration value: redis - name: RemoteServices__Default__BaseUrl value: http://public-website-gateway/ ports: - name: http containerPort: 80