aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src
AgeCommit message (Expand)AuthorFilesLines
2019-07-30Merge "repair vfcInstanceGroup order"Seshu Kumar M2-16/+102
2019-07-29Merge "Upgrade springboot.version from 2.0.5 to 2.1.5."Steve Smokowski1-0/+2
2019-07-29repair vfcInstanceGroup orderzm3302-16/+102
2019-07-26Upgrade springboot.version from 2.0.5 to 2.1.5.Sangalang, Felix1-0/+2
2019-07-26Merge "Fix the License issue inside the sample csar"subhash kumar singh1-0/+0
2019-07-23-
# Copyright © 2017 Amdocs, Bell Canada
# Modifications Copyright © 2018 AT&T
#
# 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: extensions/v1beta1
kind: Deployment
metadata:
  name: {{ include "common.fullname" . }}
  namespace: {{ include "common.namespace" . }}
  labels:
    app: {{ include "common.name" . }}
    chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
    release: {{ include "common.release" . }}
    heritage: {{ .Release.Service }}
spec:
  replicas: {{ .Values.replicaCount }}
  template:
    metadata:
      labels:
        app: {{ include "common.name" . }}
        release: {{ include "common.release" . }}
    spec:
      containers:
        - name: {{ include "common.name" . }}
          image: "{{ include "common.repository" . }}/{{ .Values.image }}"
          imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
          ports:
          - containerPort: {{ .Values.service.internalPort }}
          {{- if eq .Values.liveness.enabled true }}
          livenessProbe:
            tcpSocket:
              port: {{ .Values.service.internalPort }}
            initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
            periodSeconds: {{ .Values.liveness.periodSeconds }}
          {{end -}}
          readinessProbe:
            tcpSocket:
              port: {{ .Values.service.internalPort }}
            initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
            periodSeconds: {{ .Values.readiness.periodSeconds }}
          volumeMounts:
          - mountPath: /etc/localtime
            name: localtime
            readOnly: true
          resources:
{{ include "common.resources" . | indent 12 }}
        {{- if .Values.nodeSelector }}
        nodeSelector:
{{ toYaml .Values.nodeSelector | indent 10 }}
        {{- end -}}
        {{- if .Values.affinity }}
        affinity:
{{ toYaml .Values.affinity | indent 10 }}
        {{- end }}
      volumes:
        - name: localtime
          hostPath:
            path: /etc/localtime
      imagePullSecrets:
      - name: "{{ include "common.namespace" . }}-docker-registry-key"
deb5ce5dcb0120bef53c52e1ef4c14fa5'>Renamed NF fields in catalog db pojoMerkel, Jeff1-6/+6 2019-05-21Add WORKFLOW artifactType to SDC ConfigElena Kuleshov1-1/+1 2019-05-22Fix CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT distributeEric Multanen3-4/+7 2019-05-16Addressed vCPE-Infra processing issue ASDC ControllerRamesh Parthasarathy10-12/+695 2019-05-10Merge "use logger to log exception"Steve Smokowski1-1/+2 2019-05-15Use workflow's name for invocationElena Kuleshov1-1/+1 2019-05-09Merge "UPDATE lICENSE INFO" into dublinsubhash kumar singh1-0/+0 2019-05-09Update License infoseshukm1-0/+0 2019-05-09UPDATE lICENSE INFOseshukm1-0/+0 2019-05-09use logger to log exceptionArindam Mondal1-1/+2 2019-05-07Update the format of resourceInputzm3302-9/+14 2019-05-06Merge "VFModule To HeatTemplateUUID" into dublinSeshu Kumar M1-1/+6 2019-05-05VFModule To HeatTemplateUUIDMerkel, Jeff1-1/+6 2019-05-05Check if InstanceGroup modelUUID already existsMerkel, Jeff1-8/+18 2019-05-03Merge "Merge remote-tracking branch 'origin/dublin'"Marcus Williams3-79/+222 2019-05-03Merge remote-tracking branch 'origin/dublin'Benjamin, Max (mb388a)3-79/+222 2019-05-03Merge "add resource input Save format when resource is list type e.g. {key2:v...Seshu Kumar M2-32/+72 2019-04-30Add Model Version QuerySmokowski, Steven4-3/+17 2019-04-30add resource inputzm3302-32/+72