broker.j2 924 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. kind: Deployment
  2. apiVersion: extensions/v1beta1
  3. metadata:
  4. name: ups-broker
  5. labels:
  6. app: ups-broker
  7. spec:
  8. replicas: 1
  9. selector:
  10. matchLabels:
  11. app: ups-broker
  12. template:
  13. metadata:
  14. labels:
  15. app: ups-broker
  16. spec:
  17. containers:
  18. - name: ups-broker
  19. image: quay.io/kubernetes-service-catalog/user-broker:canary
  20. imagePullPolicy: Always
  21. args:
  22. - --port
  23. - "8080"
  24. ports:
  25. - containerPort: 8080
  26. readinessProbe:
  27. tcpSocket:
  28. port: 8080
  29. failureThreshold: 1
  30. initialDelaySeconds: 10
  31. periodSeconds: 10
  32. successThreshold: 1
  33. timeoutSeconds: 2
  34. livenessProbe:
  35. tcpSocket:
  36. port: 8080
  37. failureThreshold: 3
  38. initialDelaySeconds: 10
  39. periodSeconds: 10
  40. successThreshold: 1
  41. timeoutSeconds: 2