Separating RICPLT from it/dep repo.
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / a1mediator / templates / deployment.yaml
diff --git a/ric-platform/50-RIC-Platform/helm/a1mediator/templates/deployment.yaml b/ric-platform/50-RIC-Platform/helm/a1mediator/templates/deployment.yaml
deleted file mode 100644 (file)
index 4430483..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-################################################################################
-#   Copyright (c) 2019 AT&T Intellectual Property.                             #
-#   Copyright (c) 2019 Nokia.                                                  #
-#                                                                              #
-#   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: apps/v1
-kind: Deployment
-metadata:
-  name: {{ include "common.deploymentname.a1mediator" . }}
-  namespace: {{ include "common.namespace.platform" . }}
-  labels:
-    app: {{ include "common.namespace.platform" . }}-{{ include "common.name.a1mediator" . }}
-    chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
-    release: {{ .Release.Name }}
-    heritage: {{ .Release.Service }}
-spec:
-  replicas: {{ .Values.a1mediator.replicaCount }}
-  selector:
-    matchLabels:
-      app: {{ include "common.namespace.platform" . }}-{{ include "common.name.a1mediator" . }}
-      release: {{ .Release.Name }}
-  template:
-    metadata:
-      {{- if .Values.a1mediator.annotations }}
-      annotations:
-        {{- .Values.a1mediator.annotations | nindent 8 -}}
-      {{ end }}
-      labels:
-        app: {{ include "common.namespace.platform" . }}-{{ include "common.name.a1mediator" . }}
-        release: {{ .Release.Name }}
-    spec:
-      hostname: {{ include "common.name.a1mediator" . }}
-      imagePullSecrets:
-        - name: {{ include "common.repositoryCred" . }}
-      containers:
-        - name: {{ include "common.containername.a1mediator" . }}
-          volumeMounts:
-          - name: a1conf
-            mountPath: /opt/route/local.rt
-            subPath: local.rt
-          envFrom:
-            - configMapRef:
-                name: {{ include "common.configmapname.a1mediator" . }}-env
-          image: {{ include "common.repository" . }}/{{ .Values.a1mediator.image.name }}:{{ .Values.a1mediator.image.tag }}
-          imagePullPolicy: {{ include "common.pullPolicy" . }}
-          ports:
-            - name: http
-              containerPort: {{ include "common.serviceport.a1mediator.http" . }}
-              protocol: TCP
-            - name: rmrroute
-              containerPort: {{ include "common.serviceport.a1mediator.rmr.route" . }}
-              protocol: TCP
-            - name: rmrdata
-              containerPort: {{ include "common.serviceport.a1mediator.rmr.data" . }}
-              protocol: TCP
-          livenessProbe:
-            httpGet:
-              path: /a1-p/healthcheck
-              port: http
-          readinessProbe:
-            httpGet:
-              path: /a1-p/healthcheck
-              port: http
-      volumes:
-        - name: "a1conf"
-          configMap:
-            name:  {{ include "common.configmapname.a1mediator" . }}-a1conf