apiVersion: apps/v1 kind: Deployment metadata: name: web-client spec: selector: matchLabels: app: web-client template: metadata: labels: app: web-client spec: containers: - name: web-client image: barretthousen/service-web-client stdin: true tty: true ports: - containerPort: 80 name: http resources: limits: memory: "512Mi" cpu: "500m" --- apiVersion: v1 kind: Service metadata: name: web-client spec: selector: app: web-client ports: - port: 80 targetPort: 80