1--- 2apiVersion: apps/v1 3kind: Deployment 4metadata: 5 name: terminus 6spec: 7 replicas: 1 8 selector: 9 matchLabels: 10 app: terminus 11 template: 12 metadata: 13 labels: 14 app: terminus 15 spec: 16 containers: 17 - name: terminus 18 image: buoyantio/bb:v0.0.6 19 args: 20 - terminus 21 - "--h1-server-port=8080" 22 - "--response-text=pong" 23 ports: 24 - containerPort: 8080