From 6ba69cdbbbadc12cd1e14951e8209b383e2624d5 Mon Sep 17 00:00:00 2001
From: Mike Elliott <mike.elliott@amdocs.com>
Date: Tue, 3 Apr 2018 16:37:06 -0400
Subject: Standardized Config for VFC

Change-Id: Ie7064b59032c6cd81ee37466c89a5dee74530939
Issue-ID: OOM-750
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
---
 kubernetes/vfc/templates/all-services.yaml         | 477 ---------------------
 kubernetes/vfc/templates/configmap.yaml            |  21 +
 .../vfc/templates/vfc-catalog-deployment.yaml      |  50 ---
 .../vfc/templates/vfc-emsdriver-deployment.yaml    |  50 ---
 .../vfc/templates/vfc-gvnfmdriver-deployment.yaml  |  50 ---
 .../vfc/templates/vfc-hwvnfmdriver-deployment.yaml |  50 ---
 .../vfc/templates/vfc-jujudriver-deployment.yaml   |  50 ---
 .../vfc-nokiav2vnfmdriver-deployment.yaml          |  50 ---
 .../templates/vfc-nokiavnfmdriver-deployment.yaml  |  50 ---
 kubernetes/vfc/templates/vfc-nslcm-deployment.yaml |  50 ---
 .../vfc/templates/vfc-resmgr-deployment.yaml       |  50 ---
 .../vfc/templates/vfc-vnflcm-deployment.yaml       |  50 ---
 .../vfc/templates/vfc-vnfmgr-deployment.yaml       |  50 ---
 .../vfc/templates/vfc-vnfres-deployment.yaml       |  50 ---
 .../vfc/templates/vfc-workflow-deployment.yaml     |  58 ---
 .../templates/vfc-workflow-engine-activity.yaml    |  58 ---
 .../templates/vfc-ztesdncdriver-deployment.yaml    |  50 ---
 .../vfc-ztevmanagerdriver-deployment.yaml          |  50 ---
 18 files changed, 21 insertions(+), 1293 deletions(-)
 delete mode 100644 kubernetes/vfc/templates/all-services.yaml
 create mode 100644 kubernetes/vfc/templates/configmap.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-catalog-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-emsdriver-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-gvnfmdriver-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-hwvnfmdriver-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-jujudriver-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-nokiav2vnfmdriver-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-nokiavnfmdriver-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-nslcm-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-resmgr-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-vnflcm-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-vnfmgr-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-vnfres-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-workflow-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-workflow-engine-activity.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-ztesdncdriver-deployment.yaml
 delete mode 100644 kubernetes/vfc/templates/vfc-ztevmanagerdriver-deployment.yaml

(limited to 'kubernetes/vfc/templates')

diff --git a/kubernetes/vfc/templates/all-services.yaml b/kubernetes/vfc/templates/all-services.yaml
deleted file mode 100644
index 1e8abe2ec3..0000000000
--- a/kubernetes/vfc/templates/all-services.yaml
+++ /dev/null
@@ -1,477 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcNslcm }}
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-nslcm
-  name: vfc-nslcm
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "nslcm",
-          "version": "v1",
-          "url": "/api/nslcm/v1",
-          "protocol": "REST",
-          "port": "{{.Values.nslcm.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-nslcm
-    port: {{.Values.nslcm.port}}
-    nodePort: {{.Values.nslcm.nodePort}}
-  selector:
-    app: vfc-nslcm
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcResmgr }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-resmgr
-  name: vfc-resmgr
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "resmgr",
-          "version": "v1",
-          "url": "/api/resmgr/v1",
-          "protocol": "REST",
-          "port": "{{.Values.resmgr.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-resmgr
-    port: {{.Values.resmgr.port}}
-    nodePort: {{.Values.resmgr.nodePort}}
-  selector:
-    app: vfc-resmgr
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcGvnfmdriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-gvnfmdriver
-  name: vfc-gvnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "gvnfmdriver",
-          "version": "v1",
-          "url": "/api/gvnfmdriver/v1",
-          "protocol": "REST",
-          "port": "{{.Values.gvnfmdriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-gvnfmdriver
-    port: {{.Values.gvnfmdriver.port}}
-    nodePort: {{.Values.gvnfmdriver.nodePort}}
-  selector:
-    app: vfc-gvnfmdriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcztevnfmdriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-ztevnfmdriver
-  name: vfc-ztevnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "ztevnfmdriver",
-          "version": "v1",
-          "url": "/api/ztevnfmdriver/v1",
-          "protocol": "REST",
-          "port": "{{.Values.ztevnfmdriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-ztevnfmdriver
-    port: {{.Values.ztevnfmdriver.port}}
-    nodePort: {{.Values.ztevnfmdriver.nodePort}}
-  selector:
-    app: vfc-ztevnfmdriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcNokiavnfmdriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-nokiavnfmdriver
-  name: vfc-nokiavnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "nokiavnfmdriver",
-          "version": "v1",
-          "url": "/api/nokiavnfmdriver/v1",
-          "protocol": "REST",
-          "port": "{{.Values.nokiavnfmdriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-nokiavnfmdriver
-    port: {{.Values.nokiavnfmdriver.port}}
-    nodePort: {{.Values.nokiavnfmdriver.nodePort}}
-  selector:
-    app: vfc-nokiavnfmdriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcNokiav2vnfmdriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-nokiav2vnfmdriver
-  name: vfc-nokiav2vnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "NokiaSVNFM",
-          "version": "v1",
-          "url": "/api/NokiaSVNFM/v1",
-          "protocol": "REST",
-          "port": "{{.Values.nokiav2vnfmdriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-nokiav2vnfmdriver
-    port: {{.Values.nokiav2vnfmdriver.port}}
-    nodePort: {{.Values.nokiav2vnfmdriver.nodePort}}
-  selector:
-    app: vfc-nokiav2vnfmdriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcHwvnfmdriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-hwvnfmdriver
-  name: vfc-hwvnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "huaweivnfmdriver",
-          "version": "v1",
-          "url": "/api/huaweivnfmdriver/v1",
-          "protocol": "REST",
-          "port": "{{.Values.hwvnfmdriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-hwvnfmdriver
-    port: {{.Values.hwvnfmdriver.port}}
-    nodePort: {{.Values.hwvnfmdriver.nodePort}}
-  selector:
-    app: vfc-hwvnfmdriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcZtesdncdriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-ztesdncdriver
-  name: vfc-ztesdncdriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "ztesdncdriver",
-          "version": "v1",
-          "url": "/api/ztesdncdriver/v1",
-          "protocol": "REST",
-          "port": "{{.Values.ztesdncdriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-ztesdncdriver
-    port: {{.Values.ztesdncdriver.port}}
-    nodePort: {{.Values.ztesdncdriver.nodePort}}
-  selector:
-    app: vfc-ztesdncdriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcJujudriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-jujudriver
-  name: vfc-jujudriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "jujuvnfmdriver",
-          "version": "v1",
-          "url": "/api/jujuvnfmdriver/v1",
-          "protocol": "REST",
-          "port": "{{.Values.jujudriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-jujudriver
-    port: {{.Values.jujudriver.port}}
-    nodePort: {{.Values.jujudriver.nodePort}}
-  selector:
-    app: vfc-jujudriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcVnflcm }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-vnflcm
-  name: vfc-vnflcm
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "vnflcm",
-          "version": "v1",
-          "url": "/api/vnflcm/v1",
-          "protocol": "REST",
-          "port": "{{.Values.vnflcm.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-vnflcm
-    port: {{.Values.vnflcm.port}}
-    nodePort: {{.Values.vnflcm.nodePort}}
-  selector:
-    app: vfc-vnflcm
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcVnfres }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-vnfres
-  name: vfc-vnfres
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "vnfres",
-          "version": "v1",
-          "url": "/api/vnfres/v1",
-          "protocol": "REST",
-          "port": "{{.Values.vnfres.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-vnfres
-    port: {{.Values.vnfres.port}}
-    nodePort: {{.Values.vnfres.nodePort}}
-  selector:
-    app: vfc-vnfres
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcVnfmgr }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-vnfmgr
-  name: vfc-vnfmgr
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "vnfmgr",
-          "version": "v1",
-          "url": "/api/vnfmgr/v1",
-          "protocol": "REST",
-          "port": "{{.Values.vnfmgr.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-vnfmgr
-    port: {{.Values.vnfmgr.port}}
-    nodePort: {{.Values.vnfmgr.nodePort}}
-  selector:
-    app: vfc-vnfmgr
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcEmsdriver }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-emsdriver
-  name: vfc-emsdriver
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "emsdriver",
-          "version": "v1",
-          "url": "/api/emsdriver/v1",
-          "protocol": "REST",
-          "port": "{{.Values.emsdriver.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-emsdriver
-    port: {{.Values.emsdriver.port}}
-    nodePort: {{.Values.emsdriver.nodePort}}
-  selector:
-    app: vfc-emsdriver
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcWorkflow }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-workflow
-  name: vfc-workflow
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "workflow",
-          "version": "v1",
-          "url": "/api/workflow/v1",
-          "protocol": "REST",
-          "port": "{{.Values.workflow.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-workflow
-    port: {{.Values.workflow.port}}
-    nodePort: {{.Values.workflow.nodePort}}
-  selector:
-    app: vfc-workflow
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcWorkflowEngineActiviti }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-workflowengineactiviti
-  name: vfc-workflowengineactiviti
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "workflow",
-          "version": "v1",
-          "url": "/activiti-rest",
-          "protocol": "REST",
-          "port": "{{.Values.workflowengineactiviti.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-workflow
-    port: {{.Values.workflowengineactiviti.port}}
-    nodePort: {{.Values.workflowengineactiviti.nodePort}}
-  selector:
-    app: vfc-workflow
-  type: NodePort
-#{{ end }}
-#{{ if not .Values.disableVfcVfcCatalog }}
----
-apiVersion: v1
-kind: Service
-metadata:
-  labels:
-    app: vfc-catalog
-  name: vfc-catalog
-  namespace: "{{ .Values.nsPrefix }}"
-  annotations:
-    msb.onap.org/service-info: '[
-      {
-          "serviceName": "catalog",
-          "version": "v1",
-          "url": "/api/catalog/v1",
-          "protocol": "REST",
-          "port": "{{.Values.catalog.port}}",
-          "visualRange":"1"
-      }
-      ]'
-spec:
-  ports:
-  - name: vfc-catalog
-    port: {{.Values.catalog.port}}
-    nodePort: {{.Values.catalog.nodePort}}
-  selector:
-    app: vfc-catalog
-  type: NodePort
-#{{ end }}
diff --git a/kubernetes/vfc/templates/configmap.yaml b/kubernetes/vfc/templates/configmap.yaml
new file mode 100644
index 0000000000..f72ff132d9
--- /dev/null
+++ b/kubernetes/vfc/templates/configmap.yaml
@@ -0,0 +1,21 @@
+# 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: ConfigMap
+metadata:
+  name: {{ .Release.Name }}-vfc-filebeat-configmap
+  namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/logging/filebeat/*").AsConfig . | indent 2 }}
\ No newline at end of file
diff --git a/kubernetes/vfc/templates/vfc-catalog-deployment.yaml b/kubernetes/vfc/templates/vfc-catalog-deployment.yaml
deleted file mode 100644
index af40cbce5b..0000000000
--- a/kubernetes/vfc/templates/vfc-catalog-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcCatalog }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-catalog
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.catalog.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-catalog
-  template:
-    metadata:
-      labels:
-        app: vfc-catalog
-      name: vfc-catalog
-    spec:
-      hostname: vfc-catalog
-      containers:
-      - args:
-        image:  {{.Values.catalog.image}}
-        name: "vfc-catalog"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.catalog.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.catalog.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-emsdriver-deployment.yaml b/kubernetes/vfc/templates/vfc-emsdriver-deployment.yaml
deleted file mode 100644
index adfa3be416..0000000000
--- a/kubernetes/vfc/templates/vfc-emsdriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcEmsdriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-emsdriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.emsdriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-emsdriver
-  template:
-    metadata:
-      labels:
-        app: vfc-emsdriver
-      name: vfc-emsdriver
-    spec:
-      hostname: vfc-emsdriver
-      containers:
-      - args:
-        image:  {{.Values.emsdriver.image}}
-        name: "vfc-emsdriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.emsdriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.emsdriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-gvnfmdriver-deployment.yaml b/kubernetes/vfc/templates/vfc-gvnfmdriver-deployment.yaml
deleted file mode 100644
index 5252c5e91a..0000000000
--- a/kubernetes/vfc/templates/vfc-gvnfmdriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcGvnfmdriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-gvnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.gvnfmdriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-gvnfmdriver
-  template:
-    metadata:
-      labels:
-        app: vfc-gvnfmdriver
-      name: vfc-gvnfmdriver
-    spec:
-      hostname: vfc-gvnfmdriver
-      containers:
-      - args:
-        image:  {{.Values.gvnfmdriver.image}}
-        name: "vfc-gvnfmdriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.gvnfmdriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.gvnfmdriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-hwvnfmdriver-deployment.yaml b/kubernetes/vfc/templates/vfc-hwvnfmdriver-deployment.yaml
deleted file mode 100644
index 9725f72c5c..0000000000
--- a/kubernetes/vfc/templates/vfc-hwvnfmdriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcHwvnfmdriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-hwvnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.hwvnfmdriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-hwvnfmdriver
-  template:
-    metadata:
-      labels:
-        app: vfc-hwvnfmdriver
-      name: vfc-hwvnfmdriver
-    spec:
-      hostname: vfc-hwvnfmdriver
-      containers:
-      - args:
-        image:  {{.Values.hwvnfmdriver.image}}
-        name: "vfc-hwvnfmdriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.hwvnfmdriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.hwvnfmdriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-jujudriver-deployment.yaml b/kubernetes/vfc/templates/vfc-jujudriver-deployment.yaml
deleted file mode 100644
index ea1a42d8e0..0000000000
--- a/kubernetes/vfc/templates/vfc-jujudriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcJujudriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-jujudriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.jujudriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-jujudriver
-  template:
-    metadata:
-      labels:
-        app: vfc-jujudriver
-      name: vfc-jujudriver
-    spec:
-      hostname: vfc-jujudriver
-      containers:
-      - args:
-        image:  {{.Values.jujudriver.image}}
-        name: "vfc-jujudriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.jujudriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.jujudriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-nokiav2vnfmdriver-deployment.yaml b/kubernetes/vfc/templates/vfc-nokiav2vnfmdriver-deployment.yaml
deleted file mode 100644
index 7c021fddc2..0000000000
--- a/kubernetes/vfc/templates/vfc-nokiav2vnfmdriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcNokiav2VnfmDriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-nokiav2vnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.nokiav2vnfmdriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-nokiav2vnfmdriver
-  template:
-    metadata:
-      labels:
-        app: vfc-nokiav2vnfmdriver
-      name: vfc-nokiav2vnfmdriver
-    spec:
-      hostname: vfc-nokiav2vnfmdriver
-      containers:
-      - args:
-        image:  {{.Values.nokiav2vnfmdriver.image}}
-        name: "vfc-nokiav2vnfmdriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.nokiav2vnfmdriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.nokiav2vnfmdriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-nokiavnfmdriver-deployment.yaml b/kubernetes/vfc/templates/vfc-nokiavnfmdriver-deployment.yaml
deleted file mode 100644
index 843090c0d0..0000000000
--- a/kubernetes/vfc/templates/vfc-nokiavnfmdriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcNokiaVnfmDriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-nokiavnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.nokiavnfmdriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-nokiavnfmdriver
-  template:
-    metadata:
-      labels:
-        app: vfc-nokiavnfmdriver
-      name: vfc-nokiavnfmdriver
-    spec:
-      hostname: vfc-nokiavnfmdriver
-      containers:
-      - args:
-        image:  {{.Values.nokiavnfmdriver.image}}
-        name: "vfc-nokiavnfmdriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.nokiavnfmdriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.nokiavnfmdriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-nslcm-deployment.yaml b/kubernetes/vfc/templates/vfc-nslcm-deployment.yaml
deleted file mode 100644
index 88d5cb6fc8..0000000000
--- a/kubernetes/vfc/templates/vfc-nslcm-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcNslcm }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-nslcm
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.nslcm.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-nslcm
-  template:
-    metadata:
-      labels:
-        app: vfc-nslcm
-      name: vfc-nslcm
-    spec:
-      hostname: vfc-nslcm
-      containers:
-      - args:
-        image:  {{.Values.nslcm.image}}
-        name: "vfc-nslcm"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.nslcm.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.nslcm.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-resmgr-deployment.yaml b/kubernetes/vfc/templates/vfc-resmgr-deployment.yaml
deleted file mode 100644
index 71167d19a1..0000000000
--- a/kubernetes/vfc/templates/vfc-resmgr-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcResmgr }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-resmgr
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.resmgr.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-resmgr
-  template:
-    metadata:
-      labels:
-        app: vfc-resmgr
-      name: vfc-resmgr
-    spec:
-      hostname: vfc-resmgr
-      containers:
-      - args:
-        image:  {{.Values.resmgr.image}}
-        name: "vfc-resmgr"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.resmgr.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.resmgr.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-vnflcm-deployment.yaml b/kubernetes/vfc/templates/vfc-vnflcm-deployment.yaml
deleted file mode 100644
index c5a3893244..0000000000
--- a/kubernetes/vfc/templates/vfc-vnflcm-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcVnflcm }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-vnflcm
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.vnflcm.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-vnflcm
-  template:
-    metadata:
-      labels:
-        app: vfc-vnflcm
-      name: vfc-vnflcm
-    spec:
-      hostname: vfc-vnflcm
-      containers:
-      - args:
-        image:  {{.Values.vnflcm.image}}
-        name: "vfc-vnflcm"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.vnflcm.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.vnflcm.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-vnfmgr-deployment.yaml b/kubernetes/vfc/templates/vfc-vnfmgr-deployment.yaml
deleted file mode 100644
index 240bc74015..0000000000
--- a/kubernetes/vfc/templates/vfc-vnfmgr-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcVnfmgr }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-vnfmgr
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.vnfmgr.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-vnfmgr
-  template:
-    metadata:
-      labels:
-        app: vfc-vnfmgr
-      name: vfc-vnfmgr
-    spec:
-      hostname: vfc-vnfmgr
-      containers:
-      - args:
-        image:  {{.Values.vnfmgr.image}}
-        name: "vfc-vnfmgr"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.vnfmgr.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.vnfmgr.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-vnfres-deployment.yaml b/kubernetes/vfc/templates/vfc-vnfres-deployment.yaml
deleted file mode 100644
index ea394f39d8..0000000000
--- a/kubernetes/vfc/templates/vfc-vnfres-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcVnfres }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-vnfres
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.vnfres.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-vnfres
-  template:
-    metadata:
-      labels:
-        app: vfc-vnfres
-      name: vfc-vnfres
-    spec:
-      hostname: vfc-vnfres
-      containers:
-      - args:
-        image:  {{.Values.vnfres.image}}
-        name: "vfc-vnfres"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.vnfres.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.vnfres.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-workflow-deployment.yaml b/kubernetes/vfc/templates/vfc-workflow-deployment.yaml
deleted file mode 100644
index d6aee58bee..0000000000
--- a/kubernetes/vfc/templates/vfc-workflow-deployment.yaml
+++ /dev/null
@@ -1,58 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcWorkflow }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-workflow
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.workflow.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-workflow
-  template:
-    metadata:
-      labels:
-        app: vfc-workflow
-      name: vfc-workflow
-    spec:
-      hostname: vfc-workflow
-      containers:
-      - args:
-        image:  {{.Values.workflow.image}}
-        name: "vfc-workflow"
-        env:
-        - name: SERVICE_IP
-          valueFrom:
-            fieldRef:
-              fieldPath: status.podIP
-        - name: SERVICE_PORT
-          value: "{{ .Values.workflow.port }}"
-        - name: OPENPALETTE_MSB_IP
-          value: msb-iag.{{ .Values.nsPrefix }}
-        - name: OPENPALETTE_MSB_PORT
-          value: "80"
-        ports:
-        - containerPort: {{ .Values.workflow.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.workflow.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-workflow-engine-activity.yaml b/kubernetes/vfc/templates/vfc-workflow-engine-activity.yaml
deleted file mode 100644
index 7db01227dc..0000000000
--- a/kubernetes/vfc/templates/vfc-workflow-engine-activity.yaml
+++ /dev/null
@@ -1,58 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcWorkflowEngineActiviti }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-workflowengineactiviti
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.workflowengineactiviti.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-workflowengineactiviti
-  template:
-    metadata:
-      labels:
-        app: vfc-workflowengineactiviti
-      name: vfc-workflowengineactiviti
-    spec:
-      hostname: vfc-workflowengineactiviti
-      containers:
-      - args:
-        image:  {{.Values.workflowengineactiviti.image}}
-        name: "vfc-workflowengineactiviti"
-        env:
-        - name: SERVICE_IP
-          valueFrom:
-            fieldRef:
-              fieldPath: status.podIP
-        - name: SERVICE_PORT
-          value: "{{ .Values.workflow.port }}"
-        - name: OPENPALETTE_MSB_IP
-          value: msb-iag.{{ .Values.nsPrefix }}
-        - name: OPENPALETTE_MSB_PORT
-          value: "80"
-        ports:
-        - containerPort: {{ .Values.workflowengineactiviti.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.workflowengineactiviti.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-ztesdncdriver-deployment.yaml b/kubernetes/vfc/templates/vfc-ztesdncdriver-deployment.yaml
deleted file mode 100644
index 79e427f635..0000000000
--- a/kubernetes/vfc/templates/vfc-ztesdncdriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcZtesdncdriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-ztesdncdriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.ztesdncdriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-ztesdncdriver
-  template:
-    metadata:
-      labels:
-        app: vfc-ztesdncdriver
-      name: vfc-ztesdncdriver
-    spec:
-      hostname: vfc-ztesdncdriver
-      containers:
-      - args:
-        image:  {{.Values.ztesdncdriver.image}}
-        name: "vfc-ztesdncdriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.ztesdncdriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.ztesdncdriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
diff --git a/kubernetes/vfc/templates/vfc-ztevmanagerdriver-deployment.yaml b/kubernetes/vfc/templates/vfc-ztevmanagerdriver-deployment.yaml
deleted file mode 100644
index 4874970545..0000000000
--- a/kubernetes/vfc/templates/vfc-ztevmanagerdriver-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-
-#{{ if not .Values.disableVfcVfcztevnfmdriver }}
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: vfc-ztevnfmdriver
-  namespace: "{{ .Values.nsPrefix }}"
-spec:
-  replicas: {{ .Values.ztevnfmdriver.replicas }}
-  selector:
-    matchLabels:
-      app: vfc-ztevnfmdriver
-  template:
-    metadata:
-      labels:
-        app: vfc-ztevnfmdriver
-      name: vfc-ztevnfmdriver
-    spec:
-      hostname: vfc-ztevnfmdriver
-      containers:
-      - args:
-        image:  {{.Values.ztevnfmdriver.image}}
-        name: "vfc-ztevnfmdriver"
-        env:
-        - name: MSB_ADDR
-          value: {{ tpl .Values.msbaddr . }}
-        ports:
-        - containerPort: {{ .Values.ztevnfmdriver.port }}
-        readinessProbe:
-          tcpSocket:
-            port: {{ .Values.ztevnfmdriver.port }}
-          initialDelaySeconds: 5
-          periodSeconds: 10
-        imagePullPolicy: "{{ .Values.pullPolicy }}"
-      imagePullSecrets:
-      - name: "{{ .Values.nsPrefix }}-docker-registry-key"
-#{{ end }}
-- 
cgit 1.2.3-korg