X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=nonrtric%2Fhelm%2Fa1simulator%2Ftemplates%2Fdeployment.yaml;fp=nonrtric%2Fhelm%2Fa1simulator%2Ftemplates%2Fdeployment.yaml;h=998d6bf651b64e0de819d79b3cccf658caeed08e;hb=5e10316729da47c17161788a7185a70438506742;hp=0000000000000000000000000000000000000000;hpb=4c6681e11ffe07273d9beefce3b28a9f5df7ff60;p=it%2Fdep.git diff --git a/nonrtric/helm/a1simulator/templates/deployment.yaml b/nonrtric/helm/a1simulator/templates/deployment.yaml new file mode 100644 index 00000000..998d6bf6 --- /dev/null +++ b/nonrtric/helm/a1simulator/templates/deployment.yaml @@ -0,0 +1,54 @@ +################################################################################ +# Copyright (c) 2020 Nordix Foundation. # +# # +# 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. # +################################################################################ + +kind: Deployment +apiVersion: apps/v1 +metadata: + name: deployment-{{ .Values.a1simulator.instanceName }} + namespace: nonrtric + generation: 1 + labels: + app: nonrtric-{{ include "common.name.a1simulator" . }} + chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} + annotations: + deployment.kubernetes.io/revision: '1' +spec: + replicas: 1 + selector: + matchLabels: + app: nonrtric-{{ include "common.name.a1simulator" . }} + release: {{ .Release.Name }} + template: + metadata: + labels: + app: nonrtric-{{ include "common.name.a1simulator" . }} + release: {{ .Release.Name }} + spec: + hostname: {{ include "common.name.a1simulator" . }} + containers: + - name: {{ include "common.containername.a1simulator" . }} + image: {{ .Values.a1simulator.image.registry }}/{{ .Values.a1simulator.image.name }}:{{ .Values.a1simulator.image.tag }} + imagePullPolicy: {{ .Values.a1simulator.imagePullPolicy }} + ports: + - containerPort: {{ include "common.serviceport.a1simulator.http" . }} + protocol: TCP + readinessProbe: + tcpSocket: + port: {{ include "common.serviceport.a1simulator.http" . }} + initialDelaySeconds: 5 + periodSeconds: 15 \ No newline at end of file