diff options
author | Eric Au <kachun.au@amdocs.com> | 2017-08-31 16:18:11 -0400 |
---|---|---|
committer | Eric Au <kachun.au@amdocs.com> | 2017-09-08 11:28:43 -0400 |
commit | cdaafde182424c51185909a7fd98924364616fb2 (patch) | |
tree | cf72451df2c4a104e1bdac64a837953a0ae58aca /kubernetes/policy/templates/dep-pypdp.yaml | |
parent | b8d9bacebcf47ca4a96d49cf21418067b8550870 (diff) |
Policy 1.1 in Kubernetes
- up verion containers to use 1.1
- pap and brmsgw report it is waiting for pap 9091 port to be open but pdp and pypdp reports pap 9091 port is open
- removed push-policies.sh from 1.1 due to comment in CR
- removed pypdp container from 1.1 due to comment in CR
- removed pypdp.conf from 1.1 due to comment in CR
- removed ip_addr.txt from 1.1 due to comment in CR
Change-Id: Ibb685ec603a59dba56aa9673044ae1923d993191
Issue-Id: OOM-249
Signed-off-by: Eric Au <kachun.au@amdocs.com>
Diffstat (limited to 'kubernetes/policy/templates/dep-pypdp.yaml')
-rw-r--r-- | kubernetes/policy/templates/dep-pypdp.yaml | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/kubernetes/policy/templates/dep-pypdp.yaml b/kubernetes/policy/templates/dep-pypdp.yaml deleted file mode 100644 index 4e2c9b62a1..0000000000 --- a/kubernetes/policy/templates/dep-pypdp.yaml +++ /dev/null @@ -1,72 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: pypdp - namespace: "{{ .Values.nsPrefix }}-policy" -spec: - replicas: 1 - selector: - matchLabels: - app: pypdp - template: - metadata: - labels: - app: pypdp - name: pypdp - annotations: - pod.beta.kubernetes.io/init-containers: '[ - { - "args": [ - "--container-name", - "mariadb", - "--container-name", - "nexus", - "--container-name", - "pap", - "--container-name", - "pdp" - ], - "command": [ - "/root/ready.py" - ], - "env": [ - { - "name": "NAMESPACE", - "valueFrom": { - "fieldRef": { - "apiVersion": "v1", - "fieldPath": "metadata.namespace" - } - } - } - ], - "image": "{{ .Values.image.readiness }}", - "imagePullPolicy": "{{ .Values.pullPolicy }}", - "name": "pypdp-readiness" - } - ]' - spec: - containers: - - command: - - /bin/bash - - ./do-start.sh - - pypdp - image: {{ .Values.image.policyPe }} - imagePullPolicy: {{ .Values.pullPolicy }} - name: pypdp - ports: - - containerPort: 8480 - readinessProbe: - tcpSocket: - port: 8480 - initialDelaySeconds: 5 - periodSeconds: 10 - volumeMounts: - - mountPath: /tmp/policy-install/config - name: pe - volumes: - - name: pe - hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/policy/opt/policy/config/pe/ - imagePullSecrets: - - name: "{{ .Values.nsPrefix }}-docker-registry-key" |