aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/aaf/charts/aaf-cs/templates/secret.yaml
blob: 4ae60f17c94cdecceb9c967189b0bddb1518c40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright © 2017 Amdocs, Bell Canada
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

apiVersion: v1
kind: Secret
metadata:
  name: {{ include "common.fullname" . }}
  namespace: {{ include "common.namespace" . }}
type: Opaque
data:
{{ (.Files.Glob "resources/config/aaf-cs-data/*").AsSecrets | indent 2 }}
n> "{{ .Values.nsPrefix }}-policy" spec: selector: matchLabels: app: pap template: metadata: labels: app: pap name: pap spec: initContainers: - command: - /root/ready.py args: - --container-name - nexus - --container-name - mariadb env: - name: NAMESPACE valueFrom: fieldRef: apiVersion: v1 fieldPath: metadata.namespace image: "{{ .Values.image.readiness }}:{{ .Values.image.readinessVersion }}" imagePullPolicy: {{ .Values.pullPolicy }} name: pap-readiness - command: ["/bin/bash", "-c", "echo $POD_IP > /config/ip_addr.txt"] env: - name: POD_IP valueFrom: fieldRef: apiVersion: v1 fieldPath: status.podIP volumeMounts: - mountPath: /config/ name: pe image: {{ .Values.image.ubuntu }} imagePullPolicy: {{ .Values.pullPolicy }} name: generate-ip-addr-txt containers: - command: - /bin/bash - ./do-start.sh - pap image: "{{ .Values.image.policyPe }}:{{ .Values.image.policyPeVersion }}" imagePullPolicy: {{ .Values.pullPolicy }} name: pap ports: - containerPort: 8443 - containerPort: 9091 readinessProbe: tcpSocket: port: 9091 initialDelaySeconds: 5 periodSeconds: 10 volumeMounts: - mountPath: /etc/localtime name: localtime readOnly: true - mountPath: /tmp/policy-install/config/ name: pe - mountPath: /var/log/onap name: policy-logs - mountPath: /tmp/policy-install/logback.xml name: policy-sdk-logback - mountPath: /tmp/logback.xml name: policy-logback lifecycle: postStart: exec: command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/opt/app/policy/servers/pap/webapps/pap/WEB-INF/classes/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; export SRC=/tmp/policy-install/logback.xml; export DST=/opt/app/policy/servers/console/webapps/onap/WEB-INF/classes/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"] - image: {{ .Values.image.filebeat }} imagePullPolicy: {{ .Values.pullPolicy }} name: filebeat-onap volumeMounts: - mountPath: /usr/share/filebeat/filebeat.yml name: filebeat-conf - mountPath: /var/log/onap name: policy-logs - mountPath: /usr/share/filebeat/data name: policy-data-filebeat volumes: - name: localtime hostPath: path: /etc/localtime - name: filebeat-conf hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/logback/filebeat.yml - name: policy-logs emptyDir: {} - name: policy-data-filebeat emptyDir: {} - name: policy-logback hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/policy/xacml-pap-rest/logback.xml - name: policy-sdk-logback hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/policy/ep_sdk_app/logback.xml - name: pe hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/policy/opt/policy/config/pe/ imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" #{{ end }}