apiVersion: apps/v1 kind: Deployment metadata: name: httpbin labels: app: httpbin spec: replicas: 1 selector: matchLabels: app: httpbin template: metadata: labels: app: httpbin spec: containers: - name: httpbin image: kennethreitz/httpbin --- apiVersion: v1 kind: Service metadata: name: httpbin spec: selector: app: httpbin ports: - protocol: TCP port: 80 targetPort: 80