##--- # Source: olm/templates/17-alm-servicebroker.deployment.yaml apiVersion: extensions/v1beta1 kind: Deployment metadata: name: alm-service-broker namespace: operator-lifecycle-manager labels: app: alm-service-broker tectonic-operators.coreos.com/managed-by: tectonic-x-operator spec: strategy: type: RollingUpdate replicas: 1 selector: matchLabels: app: alm-service-broker template: metadata: labels: app: alm-service-broker spec: serviceAccountName: alm-operator-serviceaccount containers: - name: alm-service-broker command: - /bin/servicebroker - '-debug' image: quay.io/coreos/alm-service-broker@sha256:3f7bc4b3ead4372df6f455f4f4f791c241e6e47b5fbdf2296de257282a8aec80 imagePullPolicy: IfNotPresent ports: - containerPort: 8080 livenessProbe: httpGet: path: /healthz port: 8080 readinessProbe: httpGet: path: /healthz port: 8080 imagePullSecrets: - name: coreos-pull-secret