Create Helm based Certificates for Clients
[aaf/authz.git] / auth / helm / aaf / templates / aaf-gui.yaml
1 #########
2 ##  ============LICENSE_START====================================================
3 ##  org.onap.aaf
4 ##  ===========================================================================
5 ##  Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
6 ##  ===========================================================================
7 ##  Licensed under the Apache License, Version 2.0 (the "License");
8 ##  you may not use this file except in compliance with the License.
9 ##  You may obtain a copy of the License at
10 ##
11 ##       http://www.apache.org/licenses/LICENSE-2.0
12 ##
13 ##  Unless required by applicable law or agreed to in writing, software
14 ##  distributed under the License is distributed on an "AS IS" BASIS,
15 ##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ##  See the License for the specific language governing permissions and
17 ##  limitations under the License.
18 ##  ============LICENSE_END====================================================
19 ##
20 ###
21 ### AAF-GUI
22 ###
23 kind: Service
24 apiVersion: v1
25 metadata:
26   name: aaf-gui
27 spec:
28   selector:
29     app: aaf-gui
30   type: NodePort
31   ports:
32     - name: aaf-gui
33       protocol: TCP
34       nodePort: 30083
35       port: 8200
36       targetPort: 8200
37 ---
38 apiVersion: apps/v1
39 kind: Deployment
40 metadata:
41   name: aaf-gui
42   labels:
43     app: aaf-gui
44 spec:
45   replicas: {{ .Values.replicas.gui }}
46   selector:
47     matchLabels:
48       app: aaf-gui
49   template:
50     metadata:
51       labels:
52         app: aaf-gui
53     spec:
54       volumes:
55         # Use this Pod Sharing dir to declare various States of starting
56       - name: {{ .Chart.Name }}-config-vol
57         persistentVolumeClaim:
58           claimName: {{ .Chart.Name }}-config-pvc
59       - name: {{ .Chart.Name }}-status-vol
60         persistentVolumeClaim:
61           claimName: {{ .Chart.Name }}-status-pvc
62       initContainers:
63         - name: {{ .Chart.Name }}-config-container
64           image: {{ .Values.image.repository }}onap/aaf/aaf_config:{{ .Values.image.version }}
65           imagePullPolicy: IfNotPresent
66           command: ["bash","/opt/app/aaf_config/bin/agent.sh"]
67           volumeMounts:
68             - mountPath: "/opt/app/osaaf"
69               name: {{ .Chart.Name }}-config-vol
70           env:
71             - name: AAF_ENV
72               value: "{{ .Values.cadi.aaf_env }}"
73             - name: LATITUDE
74               value: "{{ .Values.cadi.cadi_latitude }}"
75             - name: LONGITUDE
76               value: "{{ .Values.cadi.cadi_longitude }}"
77             - name: aaf_locator_container
78               value: "helm"
79             - name: aaf_locator_container_ns
80               valueFrom:
81                 fieldRef:
82                   fieldPath: metadata.namespace
83             - name: aaf_locate_url
84               value: "https://aaf-locate.onap:8095"
85             - name: aaf_locator_public_hostname
86               value: "aaf.osaaf.org"
87             - name: CASSANDRA_CLUSTER
88               value: "aaf-cass"
89 #            - name: CASSANDRA_USER
90 #              value: ""
91 #            - name: CASSANDRA_PASSWORD
92 #              value: ""
93 #           - name: CASSANDRA_PORT
94 #              value: ""
95       containers:
96 ###
97 ### AAF-GUI
98 ###
99       - name: {{ .Chart.Name }}-gui
100         image: {{ .Values.image.repository }}onap/aaf/aaf_gui:{{ .Values.image.version }}
101         imagePullPolicy: IfNotPresent
102         command: ["/bin/bash","-c","cd /opt/app/aaf && /bin/bash bin/pod_wait.sh aaf-gui aaf-locate && exec bin/gui"]
103         volumeMounts:
104         -  mountPath: "/opt/app/osaaf"
105            name: {{ .Chart.Name }}-config-vol
106         -  mountPath: "/opt/app/aaf/status"
107            name: {{ .Chart.Name }}-status-vol
108         ports:
109         - name: aaf-gui
110           protocol: TCP
111           containerPort: 8200
112
113