Policy 1.1 in Kubernetes
[oom.git] / kubernetes / policy / templates / dep-pypdp.yaml
diff --git a/kubernetes/policy/templates/dep-pypdp.yaml b/kubernetes/policy/templates/dep-pypdp.yaml
deleted file mode 100644 (file)
index 4e2c9b6..0000000
+++ /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"