License addition in all yamls
[oom.git] / kubernetes / portal / templates / portal-vnc-dep.yaml
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
15 #{{ if not .Values.disablePortalVncPortal }}
16 kind: ConfigMap
17 metadata:
18   name: portal-vnc-profiles-ini
19   namespace: "{{ .Values.nsPrefix }}"
20 data:
21 {{ (.Files.Glob "resources/vnc/init_profile/profiles.ini").AsConfig | indent 2 }}
22 ---
23 apiVersion: v1
24 kind: ConfigMap
25 metadata:
26   name: portal-vnc-update-hosts
27   namespace: "{{ .Values.nsPrefix }}"
28 data:
29 {{ (.Files.Glob "resources/scripts/update_hosts.sh").AsConfig | indent 2 }}
30 ---
31 apiVersion: extensions/v1beta1
32 kind: Deployment
33 metadata:
34   labels:
35     app: portal-vnc
36   name: portal-vnc
37   namespace: "{{ .Values.nsPrefix }}"
38 spec:
39   replicas: {{ .Values.vncPortalReplicas }}
40   selector:
41     matchLabels:
42       app: portal-vnc
43   template:
44     metadata:
45       labels:
46         app: portal-vnc
47       name: portal-vnc
48     spec:
49       initContainers:
50       - command:
51         - /root/ready.py
52         args:
53         - --container-name
54         - portalapps
55         env:
56         - name: NAMESPACE
57           valueFrom:
58             fieldRef:
59               apiVersion: v1
60               fieldPath: metadata.namespace
61         image: {{ .Values.image.readiness }}
62         imagePullPolicy: {{ .Values.pullPolicy }}
63         name: portal-vnc-readiness
64       - command:
65         - /root/ready.py
66         args:
67         - --container-name
68         - pap
69         env:
70         - name: NAMESPACE
71           value: {{ .Values.nsPrefix }}
72         image: {{ .Values.image.readiness }}
73         imagePullPolicy: {{ .Values.pullPolicy }}
74         name: vnc-pap-readiness
75       - command:
76         - /root/ready.py
77         args:
78         - --container-name
79         - sdc-fe
80         env:
81         - name: NAMESPACE
82           value: {{ .Values.nsPrefix }}
83         image: {{ .Values.image.readiness }}
84         imagePullPolicy: {{ .Values.pullPolicy }}
85         name: vnc-sdc-readiness
86       - command:
87         - /root/ready.py
88         args:
89         - --container-name
90         - vid-server
91         env:
92         - name: NAMESPACE
93           value: {{ .Values.nsPrefix }}
94         image: {{ .Values.image.readiness }}
95         imagePullPolicy: {{ .Values.pullPolicy }}
96         name: vnc-vid-readiness
97       containers:
98       - image: {{ .Values.image.ubuntuDesktop }}
99         imagePullPolicy: {{ .Values.pullPolicy }}
100         lifecycle:
101           postStart:
102             exec:
103               command: ["/bin/sh", "-c", "mkdir -p /root/.mozilla/firefox/onap.default; cp /root/.init_profile/profiles.ini /root/.mozilla/firefox/; echo 'user_pref(\"browser.tabs.remote.autostart.2\", false);' > /root/.mozilla/firefox/onap.default/prefs.js; (while true; do /tmp/update_hosts.sh sdc-be.{{ .Values.nsPrefix }} sdc.api.be.simpledemo.onap.org; /tmp/update_hosts.sh portalapps.{{ .Values.nsPrefix }} portal.api.simpledemo.onap.org; /tmp/update_hosts.sh pap.{{ .Values.nsPrefix }} policy.api.simpledemo.onap.org; /tmp/update_hosts.sh sdc-fe.{{ .Values.nsPrefix }} sdc.api.simpledemo.onap.org; /tmp/update_hosts.sh vid-server.{{ .Values.nsPrefix }} vid.api.simpledemo.onap.org; /tmp/update_hosts.sh sparky-be.{{ .Values.nsPrefix }} aai.api.simpledemo.onap.org; /tmp/update_hosts.sh cli.{{ .Values.nsPrefix }} cli.api.simpledemo.onap.org; sleep 10; done)  > update_hosts.log 2>&1 &"]
104         env:
105         - name: VNC_PASSWORD
106           value: password
107         name: portal-vnc
108         volumeMounts:
109         - mountPath: /etc/localtime
110           name: localtime
111           readOnly: true
112         - mountPath: /root/.init_profile/profiles.ini
113           name: vnc-profiles-ini
114           subPath: profiles.ini
115         - mountPath: /tmp/update_hosts.sh
116           name: vnc-update-hosts
117           subPath: update_hosts.sh
118         securityContext:
119           privileged: true
120       securityContext: {}
121       volumes:
122         - name: localtime
123           hostPath:
124             path: /etc/localtime
125         - name: vnc-profiles-ini
126           configMap:
127             name: portal-vnc-profiles-ini
128         - name: vnc-update-hosts
129           configMap:
130             name: portal-vnc-update-hosts
131             defaultMode: 0755
132       imagePullSecrets:
133       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
134 #{{ end }}