Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 1 | apiVersion: extensions/v1beta1 |
| 2 | kind: Deployment |
| 3 | metadata: |
| 4 | name: aai-resources |
| 5 | namespace: "{{ .Values.nsPrefix }}-aai" |
| 6 | spec: |
| 7 | selector: |
| 8 | matchLabels: |
| 9 | app: aai-resources |
| 10 | template: |
| 11 | metadata: |
| 12 | labels: |
| 13 | app: aai-resources |
| 14 | name: aai-resources |
Mandeep Khinda | c432f86 | 2017-09-01 02:15:17 +0000 | [diff] [blame] | 15 | annotations: |
| 16 | pod.beta.kubernetes.io/init-containers: '[ |
| 17 | { |
| 18 | "args": [ |
| 19 | "--container-name", |
| 20 | "hbase" |
| 21 | ], |
| 22 | "command": [ |
| 23 | "/root/ready.py" |
| 24 | ], |
| 25 | "env": [ |
| 26 | { |
| 27 | "name": "NAMESPACE", |
| 28 | "valueFrom": { |
| 29 | "fieldRef": { |
| 30 | "apiVersion": "v1", |
| 31 | "fieldPath": "metadata.namespace" |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 | ], |
yuryn | 4c6a50e | 2017-09-04 16:42:08 +0300 | [diff] [blame] | 36 | "image": "{{ .Values.image.readiness }}", |
| 37 | "imagePullPolicy": "{{ .Values.pullPolicy }}", |
Mandeep Khinda | c432f86 | 2017-09-01 02:15:17 +0000 | [diff] [blame] | 38 | "name": "aai-resources-readiness" |
| 39 | } |
Mike Elliott | 47e76d0 | 2017-09-22 11:31:54 -0400 | [diff] [blame] | 40 | ]' |
Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 41 | spec: |
| 42 | containers: |
| 43 | - name: aai-resources |
| 44 | image: "{{ .Values.image.aaiResourcesImage }}:{{ .Values.image.aaiResourcesVersion}}" |
| 45 | imagePullPolicy: {{ .Values.pullPolicy }} |
| 46 | env: |
| 47 | - name: CHEF_BRANCH |
| 48 | value: master |
| 49 | - name: AAI_CHEF_ENV |
| 50 | value: simpledemo |
| 51 | - name: AAI_CORE_VERSION |
| 52 | value: 1.1.0-SNAPSHOT |
| 53 | - name: AAI_CHEF_LOC |
| 54 | value: /var/chef/aai-data/environments |
| 55 | - name: CHEF_GIT_URL |
| 56 | value: http://gerrit.onap.org/r/aai |
Venkata Harish K Kajur | dbd77f6 | 2017-09-23 03:08:09 +0000 | [diff] [blame] | 57 | - name: LOCAL_USER_ID |
| 58 | value: "0" |
Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 59 | volumeMounts: |
yuryn | c400bf5 | 2017-09-13 19:21:03 +0300 | [diff] [blame] | 60 | - mountPath: /etc/localtime |
| 61 | name: localtime |
| 62 | readOnly: true |
Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 63 | - mountPath: /var/chef/aai-data/ |
| 64 | name: aai-data |
BorislavG | c4bafe1 | 2017-10-03 15:40:55 +0300 | [diff] [blame^] | 65 | - mountPath: /var/log/onap |
| 66 | name: aai-resources-logs |
| 67 | - mountPath: /opt/app/aai-resources/bundleconfig/etc/logback.xml |
| 68 | name: aai-resources-log-conf |
| 69 | subPath: logback.xml |
Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 70 | ports: |
| 71 | - containerPort: 8447 |
| 72 | readinessProbe: |
| 73 | tcpSocket: |
| 74 | port: 8447 |
| 75 | initialDelaySeconds: 5 |
| 76 | periodSeconds: 10 |
BorislavG | c4bafe1 | 2017-10-03 15:40:55 +0300 | [diff] [blame^] | 77 | - name: filebeat-onap-aai-resources |
| 78 | image: {{ .Values.image.filebeat }} |
| 79 | imagePullPolicy: {{ .Values.pullPolicy }} |
| 80 | volumeMounts: |
| 81 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 82 | name: filebeat-conf |
| 83 | - mountPath: /var/log/onap |
| 84 | name: aai-resources-logs |
| 85 | - mountPath: /usr/share/filebeat/data |
| 86 | name: aai-resources-filebeat |
Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 87 | volumes: |
yuryn | c400bf5 | 2017-09-13 19:21:03 +0300 | [diff] [blame] | 88 | - name: localtime |
| 89 | hostPath: |
| 90 | path: /etc/localtime |
Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 91 | - name: aai-data |
| 92 | hostPath: |
| 93 | path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/aai-data/" |
BorislavG | c4bafe1 | 2017-10-03 15:40:55 +0300 | [diff] [blame^] | 94 | - name: filebeat-conf |
| 95 | hostPath: |
| 96 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/log4j/filebeat.yml |
| 97 | - name: aai-resources-logs |
| 98 | emptyDir: {} |
| 99 | - name: aai-resources-filebeat |
| 100 | emptyDir: {} |
| 101 | - name: aai-resources-log-conf |
| 102 | configMap: |
| 103 | name: aai-resources-configmap |
Mandeep Khinda | fc06843 | 2017-08-30 14:24:02 +0000 | [diff] [blame] | 104 | restartPolicy: Always |
| 105 | imagePullSecrets: |
| 106 | - name: "{{ .Values.nsPrefix }}-docker-registry-key" |
BorislavG | c4bafe1 | 2017-10-03 15:40:55 +0300 | [diff] [blame^] | 107 | --- |
| 108 | apiVersion: v1 |
| 109 | kind: ConfigMap |
| 110 | metadata: |
| 111 | name: aai-resources-configmap |
| 112 | namespace: {{ .Values.nsPrefix }}-aai |
| 113 | data: |
| 114 | {{ (.Files.Glob "resources/resources/conf/logback.xml").AsConfig | indent 2 }} |
| 115 | |