diff options
Diffstat (limited to 'kubernetes/portal/templates/portal-apps-deployment.yaml')
-rwxr-xr-x | kubernetes/portal/templates/portal-apps-deployment.yaml | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/kubernetes/portal/templates/portal-apps-deployment.yaml b/kubernetes/portal/templates/portal-apps-deployment.yaml new file mode 100755 index 0000000000..23a645910a --- /dev/null +++ b/kubernetes/portal/templates/portal-apps-deployment.yaml @@ -0,0 +1,146 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: portalapps + namespace: {{ .Values.NS }} +spec: + selector: + matchLabels: + app: portalapps + template: + metadata: + labels: + app: portalapps + name: portalapps + annotations: + pod.beta.kubernetes.io/init-containers: '[ + { + "args": [ + "--container-name", + "portaldb" + ], + "command": [ + "/root/ready.py" + ], + "env": [ + { + "name": "NAMESPACE", + "valueFrom": { + "fieldRef": { + "apiVersion": "v1", + "fieldPath": "metadata.namespace" + } + } + } + ], + "image": "{{ .Values.image.readiness }}", + "imagePullPolicy": "{{ .Values.pullPolicy }}", + "name": "portalapps-readiness" + }, + { + "command": ["/bin/bash", "-c", "if [ ! -e /portal_root/boot.txt ]; then mysql -u root -ppassword -h portaldb < /portal-mysql/oom_updates.sql; fi"], + "volumeMounts": [ + { + "mountPath": "/portal-mysql/oom_updates.sql", + "name": "portal-mariadb-onboarding-sql" + }, + { + "mountPath": "/portal_root/", + "name": "portal-root" + } + ], + "image": "{{ .Values.image.mariadbClient }}", + "imagePullPolicy": "{{ .Values.pullPolicy }}", + "name": "provision-portaldb-users" + } + ]' + spec: + containers: + - image: {{ .Values.image.portalapps }} + imagePullPolicy: {{ .Values.pullPolicy }} + lifecycle: + postStart: + exec: + command: ["/bin/sh", "-c", "echo yes > /portal_root/boot.txt"] + name: portalapps + volumeMounts: + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPPORTAL/WEB-INF/fusion/conf/fusion.properties + name: portal-fusion-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPPORTAL/WEB-INF/classes/openid-connect.properties + name: portal-openid-connect-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPPORTAL/WEB-INF/conf/system.properties + name: portal-system-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPPORTAL/WEB-INF/classes/portal.properties + name: portal-portal-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPDBCAPP/WEB-INF/fusion/conf/fusion.properties + name: dbcapp-fusion-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPDBCAPP/WEB-INF/conf/system.properties + name: dbcapp-system-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPDBCAPP/WEB-INF/classes/portal.properties + name: dbcapp-portal-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPDBCAPP/WEB-INF/dbcapp/dbcapp.properties + name: dbcapp-dbcapp-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPSDKAPP/WEB-INF/conf/system.properties + name: sdkapp-system-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPSDKAPP/WEB-INF/classes/portal.properties + name: sdkapp-portal-properties + - mountPath: /opt/apache-tomcat-8.0.37/webapps/ECOMPSDKAPP/WEB-INF/fusion/conf/fusion.properties + name: sdkapp-fusion-properties + - mountPath: /portal_root/ + name: portal-root + - mountPath: /opt/apache-tomcat-8.0.37/logs + name: portal-logs + ports: + - containerPort: 8005 + - containerPort: 8009 + - containerPort: 8080 + readinessProbe: + tcpSocket: + port: 8080 + initialDelaySeconds: 5 + periodSeconds: 10 + volumes: + - name: portal-fusion-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/fusion.properties + - name: portal-openid-connect-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/openid-connect.properties + - name: portal-system-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/system.properties + - name: portal-portal-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/portal.properties + - name: dbcapp-fusion-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPDBCAPP/fusion.properties + - name: dbcapp-system-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPDBCAPP/system.properties + - name: dbcapp-portal-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPDBCAPP/portal.properties + - name: dbcapp-dbcapp-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPDBCAPP/dbcapp.properties + - name: sdkapp-system-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPSDKAPP/system.properties + - name: sdkapp-portal-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPSDKAPP/portal.properties + - name: sdkapp-fusion-properties + hostPath: + path: /dockerdata-nfs/onap/portal/portal-fe/webapps/etc/ECOMPSDKAPP/fusion.properties + - name: portal-mariadb-onboarding-sql + hostPath: + path: /dockerdata-nfs/onap/portal/mariadb/oom_updates.sql + - name: portal-root + hostPath: + path: /dockerdata-nfs/onap/portal + - name: portal-logs + hostPath: + path: /dockerdata-nfs/onap/portal/logs + imagePullSecrets: + - name: onap-docker-registry-key |