17-alm-servicebroker.deployment.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ##---
  2. # Source: olm/templates/17-alm-servicebroker.deployment.yaml
  3. apiVersion: extensions/v1beta1
  4. kind: Deployment
  5. metadata:
  6. name: alm-service-broker
  7. namespace: operator-lifecycle-manager
  8. labels:
  9. app: alm-service-broker
  10. tectonic-operators.coreos.com/managed-by: tectonic-x-operator
  11. spec:
  12. strategy:
  13. type: RollingUpdate
  14. replicas: 1
  15. selector:
  16. matchLabels:
  17. app: alm-service-broker
  18. template:
  19. metadata:
  20. labels:
  21. app: alm-service-broker
  22. spec:
  23. serviceAccountName: alm-operator-serviceaccount
  24. containers:
  25. - name: alm-service-broker
  26. command:
  27. - /bin/servicebroker
  28. - '-debug'
  29. image: quay.io/coreos/alm-service-broker@sha256:3f7bc4b3ead4372df6f455f4f4f791c241e6e47b5fbdf2296de257282a8aec80
  30. imagePullPolicy: IfNotPresent
  31. ports:
  32. - containerPort: 8080
  33. livenessProbe:
  34. httpGet:
  35. path: /healthz
  36. port: 8080
  37. readinessProbe:
  38. httpGet:
  39. path: /healthz
  40. port: 8080
  41. imagePullSecrets:
  42. - name: coreos-pull-secret