changed to unmaintained
[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: {{.Values.services.gui.fqdn}}
33       protocol: TCP
34       nodePort: 30083
35       port: {{.Values.services.gui.internal_port}}
36       targetPort: {{.Values.services.gui.internal_port}}
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.services.gui.replicas }}
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: aaf-config-vol
57         persistentVolumeClaim:
58           claimName: aaf-config-pvc
59       - name: aaf-status-vol
60         persistentVolumeClaim:
61           claimName: aaf-status-pvc
62       initContainers:
63         - command:
64             - /bin/sh
65             - -c
66             - |
67               chmod -R 775 /opt/app/aaf/status
68               chown -R 1000:1000 /opt/app/aaf/status
69               chmod -R 775 /opt/app/osaaf
70               chown -R 1000:1000 /opt/app/osaaf
71           image: busybox:1.28
72           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
73           name: init-sysctl
74           volumeMounts:
75             - mountPath: /opt/app/osaaf
76               name: aaf-config-vol
77             - mountPath: /opt/app/aaf/status
78               name: aaf-status-vol
79         - name: aaf-config-container
80           image: {{ .Values.image.repository }}onap/aaf/aaf_config:{{ .Values.image.version }}
81           imagePullPolicy: IfNotPresent
82           command: ["bash","-c","cd /opt/app/aaf_config && bin/pod_wait.sh config aaf-service rm"]
83           volumeMounts:
84             - mountPath: "/opt/app/aaf/status"
85               name: aaf-status-vol
86       containers:
87 ###
88 ### AAF-GUI
89 ###
90       - name: aaf-gui
91         image: {{ .Values.image.repository }}onap/aaf/aaf_core:{{ .Values.image.version }}
92         imagePullPolicy: IfNotPresent
93         command: ["/bin/bash","-c","cd /opt/app/aaf && /bin/bash bin/pod_wait.sh aaf-gui aaf-locate && exec bin/gui"]
94         volumeMounts:
95         -  mountPath: "/opt/app/osaaf"
96            name: aaf-config-vol
97         -  mountPath: "/opt/app/aaf/status"
98            name: aaf-status-vol
99         ports:
100         - name: {{.Values.services.gui.fqdn}}
101           protocol: TCP
102           containerPort: {{.Values.services.gui.internal_port}}