vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
yuryn | fcef994 | 2017-10-26 17:10:50 +0300 | [diff] [blame] | 15 | #{{ if not .Values.disableAaiDataRouter }} |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 16 | apiVersion: extensions/v1beta1 |
| 17 | kind: Deployment |
| 18 | metadata: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 19 | name: aai-data-router |
| 20 | namespace: "{{ .Values.nsPrefix }}" |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 21 | spec: |
vaibhav_16dec | a97d3fd | 2018-02-14 05:32:10 +0000 | [diff] [blame] | 22 | replicas: {{ .Values.dataRouterReplicas }} |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 23 | selector: |
| 24 | matchLabels: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 25 | app: aai-data-router |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 26 | template: |
| 27 | metadata: |
| 28 | labels: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 29 | app: aai-data-router |
| 30 | name: aai-data-router |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 31 | spec: |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 32 | initContainers: |
| 33 | - command: |
| 34 | - /bin/sh |
| 35 | - -c |
| 36 | - | |
| 37 | mkdir -p /logroot/data-router/logs |
| 38 | chmod -R 777 /logroot/data-router/logs |
| 39 | chown -R root:root /logroot |
| 40 | env: |
| 41 | - name: NAMESPACE |
| 42 | valueFrom: |
| 43 | fieldRef: |
| 44 | apiVersion: v1 |
| 45 | fieldPath: metadata.namespace |
| 46 | securityContext: |
| 47 | privileged: true |
| 48 | image: {{ .Values.image.es_bb }} |
| 49 | imagePullPolicy: {{ .Values.pullPolicy }} |
| 50 | name: init-sysctl |
| 51 | volumeMounts: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 52 | - name: aai-data-router-logs |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 53 | mountPath: /logroot/ |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 54 | containers: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 55 | - name: aai-data-router |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 56 | image: "{{ .Values.image.dataRouterImage }}:{{ .Values.image.dataRouterVersion }}" |
| 57 | imagePullPolicy: {{ .Values.pullPolicy }} |
| 58 | env: |
| 59 | - name: SERVICE_BEANS |
| 60 | value: /opt/app/data-router/dynamic/conf |
| 61 | - name: CONFIG_HOME |
| 62 | value: /opt/app/data-router/config/ |
| 63 | - name: KEY_STORE_PASSWORD |
| 64 | value: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 65 | - name: DYNAMIC_ROUTES |
| 66 | value: /opt/app/data-router/dynamic/routes |
| 67 | - name: KEY_MANAGER_PASSWORD |
| 68 | value: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 69 | - name: PATH |
| 70 | value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| 71 | - name: JAVA_HOME |
| 72 | value: usr/lib/jvm/java-8-openjdk-amd64 |
| 73 | volumeMounts: |
yuryn | 8b3bc5a | 2017-09-13 19:21:03 +0300 | [diff] [blame] | 74 | - mountPath: /etc/localtime |
| 75 | name: localtime |
| 76 | readOnly: true |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 77 | - mountPath: /opt/app/data-router/config/model/aai_oxm_v8.xml |
| 78 | subPath: aai_oxm_v8.xml |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 79 | name: aai-data-router-model-v8 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 80 | - mountPath: /opt/app/data-router/config/model/aai_oxm_v9.xml |
| 81 | subPath: aai_oxm_v9.xml |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 82 | name: aai-data-router-model-v9 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 83 | - mountPath: /opt/app/data-router/config/model/aai_oxm_v10.xml |
| 84 | subPath: aai_oxm_v10.xml |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 85 | name: aai-data-router-model-v10 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 86 | - mountPath: /opt/app/data-router/config/model/aai_oxm_v11.xml |
| 87 | subPath: aai_oxm_v11.xml |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 88 | name: aai-data-router-model-v11 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 89 | - mountPath: /opt/app/data-router/config/auth |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 90 | name: aai-data-router-auth |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 91 | - mountPath: /opt/app/data-router/config/data-router.properties |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 92 | name: aai-data-router-properties |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 93 | subPath: data-router.properties |
| 94 | - mountPath: /opt/app/data-router/dynamic/routes/entity-event.route |
| 95 | subPath: entity-event.route |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 96 | name: aai-data-router-dynamic-route |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 97 | - mountPath: /opt/app/data-router/dynamic/conf/entity-event-policy.xml |
| 98 | subPath: entity-event-policy.xml |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 99 | name: aai-data-router-dynamic-policy |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 100 | - mountPath: /logs/ |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 101 | name: aai-data-router-logs |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 102 | ports: |
| 103 | - containerPort: 9502 |
| 104 | readinessProbe: |
| 105 | tcpSocket: |
| 106 | port: 9502 |
| 107 | initialDelaySeconds: 5 |
| 108 | periodSeconds: 10 |
| 109 | volumes: |
yuryn | 8b3bc5a | 2017-09-13 19:21:03 +0300 | [diff] [blame] | 110 | - name: localtime |
| 111 | hostPath: |
| 112 | path: /etc/localtime |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 113 | - name: aai-data-router-model-v8 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 114 | configMap: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 115 | name: aai-data-router-model-v8-configmap |
| 116 | - name: aai-data-router-model-v9 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 117 | configMap: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 118 | name: aai-data-router-model-v9-configmap |
| 119 | - name: aai-data-router-model-v10 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 120 | configMap: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 121 | name: aai-data-router-model-v10-configmap |
| 122 | - name: aai-data-router-model-v11 |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 123 | configMap: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 124 | name: aai-data-router-model-v11-configmap |
| 125 | - name: aai-data-router-auth |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 126 | secret: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 127 | secretName: aai-data-router-secret |
| 128 | - name: aai-data-router-properties |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 129 | configMap: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 130 | name: aai-data-router-prop-configmap |
| 131 | - name: aai-data-router-dynamic-route |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 132 | configMap: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 133 | name: aai-data-router-dynamic-configmap |
| 134 | - name: aai-data-router-dynamic-policy |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 135 | configMap: |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 136 | name: aai-data-router-dynamic-configmap |
| 137 | - name: aai-data-router-logs |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 138 | hostPath: |
kerenj | b19df80 | 2018-02-25 11:19:53 +0000 | [diff] [blame] | 139 | path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/data-router/logs" |
Mandeep Khinda | 4b88197 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 140 | restartPolicy: Always |
| 141 | imagePullSecrets: |
| 142 | - name: "{{ .Values.nsPrefix }}-docker-registry-key" |
mayankg2703 | 955077e | 2018-02-05 11:00:25 +0000 | [diff] [blame] | 143 | #{{ end }} |