apiVersion: apps/v1 kind: Deployment metadata: name: coal-api labels: app: coal-api spec: replicas: 1 selector: matchLabels: app: coal-api template: metadata: name: coal-api labels: app: coal-api spec: containers: - name: coal-api image: coal imagePullPolicy: Always ports: - containerPort: 7456 env: - name: PG_HOST value: pg - name: REDIS_HOST value: redis restartPolicy: Always --- apiVersion: v1 kind: Service metadata: name: coal-api spec: selector: app: coal-api ports: - protocol: TCP port: 7456 targetPort: 7456 type: ClusterIP