1234567891011121314151617181920212223242526272829303132333435363738394041 |
- kind: Deployment
- apiVersion: extensions/v1beta1
- metadata:
- name: ups-broker
- labels:
- app: ups-broker
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: ups-broker
- template:
- metadata:
- labels:
- app: ups-broker
- spec:
- containers:
- - name: ups-broker
- image: quay.io/kubernetes-service-catalog/user-broker:canary
- imagePullPolicy: Always
- args:
- - --port
- - "8080"
- ports:
- - containerPort: 8080
- readinessProbe:
- tcpSocket:
- port: 8080
- failureThreshold: 1
- initialDelaySeconds: 10
- periodSeconds: 10
- successThreshold: 1
- timeoutSeconds: 2
- livenessProbe:
- tcpSocket:
- port: 8080
- failureThreshold: 3
- initialDelaySeconds: 10
- periodSeconds: 10
- successThreshold: 1
- timeoutSeconds: 2
|