asb_dc.yaml.j2 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ---
  2. apiVersion: v1
  3. kind: DeploymentConfig
  4. metadata:
  5. name: asb
  6. labels:
  7. app: openshift-ansible-service-broker
  8. service: asb
  9. spec:
  10. replicas: 1
  11. selector:
  12. app: openshift-ansible-service-broker
  13. strategy:
  14. type: Rolling
  15. template:
  16. metadata:
  17. labels:
  18. app: openshift-ansible-service-broker
  19. service: asb
  20. spec:
  21. nodeSelector: {{ ansible_service_broker_node_selector | to_json }}
  22. serviceAccount: asb
  23. containers:
  24. {% if ansible_service_broker_enable_dashboard_redirector %}
  25. - image: {{ ansible_service_broker_image }}
  26. name: dashboard-redirector
  27. imagePullPolicy: IfNotPresent
  28. ports:
  29. - containerPort: 1337
  30. protocol: TCP
  31. command:
  32. - dashboard-redirector
  33. - --namespace
  34. - "openshift-ansible-service-broker"
  35. imagePullPolicy: IfNotPresent
  36. {% endif %}
  37. - image: {{ ansible_service_broker_image }}
  38. name: asb
  39. imagePullPolicy: IfNotPresent
  40. volumeMounts:
  41. - name: config-volume
  42. mountPath: /etc/ansible-service-broker
  43. - name: asb-tls
  44. mountPath: /etc/tls/private
  45. ports:
  46. - containerPort: 1338
  47. protocol: TCP
  48. env:
  49. - name: BROKER_CONFIG
  50. value: /etc/ansible-service-broker/config.yaml
  51. - name: HTTP_PROXY
  52. value: {{ openshift.common.http_proxy | default('') }}
  53. - name: HTTPS_PROXY
  54. value: {{ openshift.common.https_proxy | default('') }}
  55. - name: NO_PROXY
  56. value: {{ ([openshift.common.no_proxy, '.default'] | join(',')) if openshift.get('common', {}).get('no_proxy') else '' }}
  57. resources: {}
  58. terminationMessagePath: /tmp/termination-log
  59. readinessProbe:
  60. httpGet:
  61. port: 1338
  62. path: /healthz
  63. scheme: HTTPS
  64. initialDelaySeconds: 15
  65. timeoutSeconds: 1
  66. livenessProbe:
  67. httpGet:
  68. port: 1338
  69. path: /healthz
  70. scheme: HTTPS
  71. initialDelaySeconds: 15
  72. timeoutSeconds: 1
  73. volumes:
  74. - name: config-volume
  75. configMap:
  76. name: broker-config
  77. items:
  78. - key: broker-config
  79. path: config.yaml
  80. - name: asb-tls
  81. secret:
  82. secretName: asb-tls