From 23982992f639710b1a4dd11a6e01622206627d62 Mon Sep 17 00:00:00 2001 From: "aravind.est" Date: Wed, 2 Nov 2022 15:39:57 +0000 Subject: [PATCH] Add helm charts for ICS version Issue-ID: NONRTRIC-807 Signed-off-by: aravind.est Change-Id: I7bf6eb8228fdab94cd672b33b9ecec08f29e3051 --- icsversion/helm/odu-app-ics-version/.helmignore | 23 +++++++ icsversion/helm/odu-app-ics-version/Chart.yaml | 5 ++ .../odu-app-ics-version/templates/_helpers.tpl | 79 +++++++++++++++++++++ .../odu-app-ics-version/templates/deployment.yaml | 80 ++++++++++++++++++++++ .../odu-app-ics-version/templates/service.yaml | 30 ++++++++ icsversion/helm/odu-app-ics-version/values.yaml | 80 ++++++++++++++++++++++ 6 files changed, 297 insertions(+) create mode 100755 icsversion/helm/odu-app-ics-version/.helmignore create mode 100755 icsversion/helm/odu-app-ics-version/Chart.yaml create mode 100755 icsversion/helm/odu-app-ics-version/templates/_helpers.tpl create mode 100755 icsversion/helm/odu-app-ics-version/templates/deployment.yaml create mode 100755 icsversion/helm/odu-app-ics-version/templates/service.yaml create mode 100755 icsversion/helm/odu-app-ics-version/values.yaml diff --git a/icsversion/helm/odu-app-ics-version/.helmignore b/icsversion/helm/odu-app-ics-version/.helmignore new file mode 100755 index 0000000..0e8a0eb --- /dev/null +++ b/icsversion/helm/odu-app-ics-version/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/icsversion/helm/odu-app-ics-version/Chart.yaml b/icsversion/helm/odu-app-ics-version/Chart.yaml new file mode 100755 index 0000000..830e4b4 --- /dev/null +++ b/icsversion/helm/odu-app-ics-version/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v2 +appVersion: "1.0.0" +description: A Helm chart to deploy odu-app-ics-version version +name: odu-app-ics-version +version: 1.0.0 diff --git a/icsversion/helm/odu-app-ics-version/templates/_helpers.tpl b/icsversion/helm/odu-app-ics-version/templates/_helpers.tpl new file mode 100755 index 0000000..a0246c1 --- /dev/null +++ b/icsversion/helm/odu-app-ics-version/templates/_helpers.tpl @@ -0,0 +1,79 @@ +{{/* +# Copyright (C) 2022 Nordix Foundation. All rights reserved. +# ======================================================================== +# 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. +# ============LICENSE_END================================================= +*/}} + +{{/* +Expand the name of the chart. +*/}} +{{- define "odu-app-ics-version.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "odu-app-ics-version.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "odu-app-ics-version.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "odu-app-ics-version.labels" -}} +helm.sh/chart: {{ include "odu-app-ics-version.chart" . }} +{{ include "odu-app-ics-version.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "odu-app-ics-version.selectorLabels" -}} +app.kubernetes.io/name: {{ include "odu-app-ics-version.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "odu-app-ics-version.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "odu-app-ics-version.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/icsversion/helm/odu-app-ics-version/templates/deployment.yaml b/icsversion/helm/odu-app-ics-version/templates/deployment.yaml new file mode 100755 index 0000000..508a3ce --- /dev/null +++ b/icsversion/helm/odu-app-ics-version/templates/deployment.yaml @@ -0,0 +1,80 @@ +# Copyright (C) 2022 Nordix Foundation. All rights reserved. +# ======================================================================== +# 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. +# ============LICENSE_END================================================= + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "odu-app-ics-version.fullname" . }} + labels: + {{- include "odu-app-ics-version.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + {{- include "odu-app-ics-version.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "odu-app-ics-version.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + - name: CONSUMER_HOST + value: "{{ .Values.consumer.host }}" + - name: CONSUMER_PORT + value: "{{ .Values.consumer.port }}" + - name: SDNR_ADDR + value: "{{ .Values.sdnr.address }}" + - name: SDNR_USER + value: "{{ .Values.sdnr.user }}" + - name: SDNR_PASSWORD + value: "{{ .Values.sdnr.password }}" + - name: INFO_COORD_ADDR + value: "{{ .Values.informationcoordinator.address }}" + - name: NODE_ID + value: "{{ .Values.simulator.node }}" + ports: + - name: http + containerPort: 8095 + protocol: TCP + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/icsversion/helm/odu-app-ics-version/templates/service.yaml b/icsversion/helm/odu-app-ics-version/templates/service.yaml new file mode 100755 index 0000000..b52c77a --- /dev/null +++ b/icsversion/helm/odu-app-ics-version/templates/service.yaml @@ -0,0 +1,30 @@ +# Copyright (C) 2022 Nordix Foundation. All rights reserved. +# ======================================================================== +# 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. +# ============LICENSE_END================================================= + +apiVersion: v1 +kind: Service +metadata: + name: {{ include "odu-app-ics-version.fullname" . }} + labels: + {{- include "odu-app-ics-version.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "odu-app-ics-version.selectorLabels" . | nindent 4 }} diff --git a/icsversion/helm/odu-app-ics-version/values.yaml b/icsversion/helm/odu-app-ics-version/values.yaml new file mode 100755 index 0000000..e141653 --- /dev/null +++ b/icsversion/helm/odu-app-ics-version/values.yaml @@ -0,0 +1,80 @@ +# Copyright (C) 2022 Nordix Foundation. All rights reserved. +# ======================================================================== +# 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. +# ============LICENSE_END================================================= + +# Default values for odu-app-ics-version. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: odu-app-icsversion + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "latest" + +consumer: + host: http://localhost + port: 8095 + +sdnr: + address: http://sdnr-simulator:8181 + user: admin + password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U + +informationcoordinator: + address: http://ics:9082 + +simulator: + node: o-du-1122 + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 8095 + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {} -- 2.16.6