aboutsummaryrefslogtreecommitdiffstats
path: root/robot/assets/helm
diff options
context:
space:
mode:
authorKrzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com>2021-10-01 12:22:06 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2021-12-07 13:59:24 +0000
commit5e6967f1c6df40720e748977c7d9514c0463035c (patch)
tree138a1c67cef37d5bbb221aca9a44b0bd2acfd120 /robot/assets/helm
parenta93a8881de7253dca565678814920349b061bef7 (diff)
[ROBOT] ADD BULKPM test cases that use helm based component services
Signed-off-by: Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com> Issue-ID: INT-1895 Change-Id: I32389f4f0cd0d2e9fb7b73b99554a4722c4687d0
Diffstat (limited to 'robot/assets/helm')
-rw-r--r--robot/assets/helm/sftp/Chart.yaml23
-rw-r--r--robot/assets/helm/sftp/templates/_helpers.tpl58
-rw-r--r--robot/assets/helm/sftp/templates/deployment.yaml43
-rw-r--r--robot/assets/helm/sftp/templates/service.yaml17
-rw-r--r--robot/assets/helm/sftp/values.yaml50
5 files changed, 191 insertions, 0 deletions
diff --git a/robot/assets/helm/sftp/Chart.yaml b/robot/assets/helm/sftp/Chart.yaml
new file mode 100644
index 00000000..36ecdbe1
--- /dev/null
+++ b/robot/assets/helm/sftp/Chart.yaml
@@ -0,0 +1,23 @@
+apiVersion: v2
+name: sftp
+description: A Helm chart for Kubernetes
+
+# A chart can be either an 'application' or a 'library' chart.
+#
+# Application charts are a collection of templates that can be packaged into versioned archives
+# to be deployed.
+#
+# Library charts provide useful utilities or functions for the chart developer. They're included as
+# a dependency of application charts to inject those utilities and functions into the rendering
+# pipeline. Library charts do not define any templates and therefore cannot be deployed.
+type: application
+
+# This is the chart version. This version number should be incremented each time you make changes
+# to the chart and its templates, including the app version.
+# Versions are expected to follow Semantic Versioning (https://semver.org/)
+version: 0.0.1
+
+# This is the version number of the application being deployed. This version number should be
+# incremented each time you make changes to the application. Versions are not expected to
+# follow Semantic Versioning. They should reflect the version the application is using.
+appVersion: 0.0.1
diff --git a/robot/assets/helm/sftp/templates/_helpers.tpl b/robot/assets/helm/sftp/templates/_helpers.tpl
new file mode 100644
index 00000000..f949b4a3
--- /dev/null
+++ b/robot/assets/helm/sftp/templates/_helpers.tpl
@@ -0,0 +1,58 @@
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "sftp.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 "sftp.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 "sftp.chart" -}}
+{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
+{{- end }}
+
+{{/*
+Common labels
+*/}}
+{{- define "sftp.labels" -}}
+helm.sh/chart: {{ include "sftp.chart" . }}
+{{ include "sftp.selectorLabels" . }}
+{{- if .Chart.AppVersion }}
+app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
+{{- end }}
+app.kubernetes.io/managed-by: {{ .Release.Service }}
+{{- end }}
+
+{{/*
+Selector labels
+*/}}
+{{- define "sftp.selectorLabels" -}}
+app.kubernetes.io/name: {{ include "sftp.name" . }}
+app.kubernetes.io/instance: {{ .Release.Name }}
+{{- end }}
+
+{{/*
+Common namespace
+*/}}
+{{- define "sftp.namespace" -}}
+ {{- default .Release.Namespace .Values.nsPrefix -}}
+{{- end -}} \ No newline at end of file
diff --git a/robot/assets/helm/sftp/templates/deployment.yaml b/robot/assets/helm/sftp/templates/deployment.yaml
new file mode 100644
index 00000000..53fc0b12
--- /dev/null
+++ b/robot/assets/helm/sftp/templates/deployment.yaml
@@ -0,0 +1,43 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: {{ include "sftp.fullname" . }}
+ namespace: {{ include "sftp.namespace" . }}
+ labels:
+ {{ include "sftp.labels" . | nindent 4 }}
+spec:
+ replicas: {{ .Values.replicaCount }}
+ selector:
+ matchLabels:
+ {{ include "sftp.selectorLabels" . | nindent 6 }}
+ template:
+ metadata:
+ labels:
+ {{ include "sftp.selectorLabels" . | nindent 8 }}
+ spec:
+ containers:
+ - name: {{ .Values.fullnameOverride }}
+ image: {{ .Values.image.repository }}
+ imagePullPolicy: {{ .Values.image.pullPolicy }}
+ ports:
+ - containerPort: {{ .Values.pod.port }}
+ protocol: TCP
+ env:
+ - name: SFTP_USERS
+ value: {{ .Values.env.users }}
+ livenessProbe:
+ tcpSocket:
+ port: {{ .Values.pod.port }}
+ initialDelaySeconds: 10
+ periodSeconds: 30
+ timeoutSeconds: 1
+ successThreshold: 1
+ failureThreshold: 3
+ readinessProbe:
+ tcpSocket:
+ port: {{ .Values.pod.port }}
+ initialDelaySeconds: 10
+ periodSeconds: 5
+ timeoutSeconds: 1
+ successThreshold: 1
+ failureThreshold: 10
diff --git a/robot/assets/helm/sftp/templates/service.yaml b/robot/assets/helm/sftp/templates/service.yaml
new file mode 100644
index 00000000..f1c4d790
--- /dev/null
+++ b/robot/assets/helm/sftp/templates/service.yaml
@@ -0,0 +1,17 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: {{ include "sftp.fullname" . }}
+ namespace: {{ include "sftp.namespace" . }}
+ labels:
+ {{ include "sftp.labels" . | nindent 4 }}
+spec:
+ type: {{ .Values.service.type }}
+ ports:
+ - port: {{ .Values.pod.port }}
+ targetPort: {{ .Values.pod.port }}
+ protocol: TCP
+ name: {{ .Values.fullnameOverride }}
+ nodePort: {{ .Values.service.port }}
+ selector:
+ {{ include "sftp.selectorLabels" . | nindent 4 }}
diff --git a/robot/assets/helm/sftp/values.yaml b/robot/assets/helm/sftp/values.yaml
new file mode 100644
index 00000000..2ed5d94c
--- /dev/null
+++ b/robot/assets/helm/sftp/values.yaml
@@ -0,0 +1,50 @@
+global:
+
+replicaCount: 1
+
+nameOverride: "sftp"
+
+image:
+ repository: atmoz/sftp
+ pullPolicy: IfNotPresent
+ # Overrides the image tag whose default is the chart appVersion.
+
+imagePullSecrets: []
+
+pod:
+ port: 22
+
+ingress:
+ enabled: false
+
+podAnnotations: {}
+
+podSecurityContext: {}
+ # fsGroup: 2000
+
+securityContext: {}
+ # capabilities:
+ # drop:
+ # - ALL
+ # readOnlyRootFilesystem: true
+ # runAsNonRoot: true
+ # runAsUser: 1000
+env:
+ users: "bulkpm:bulkpm:::upload"
+
+service:
+ type: NodePort
+ port: 32222
+
+autoscaling:
+ enabled: false
+ minReplicas: 1
+ maxReplicas: 1
+ targetCPUUtilizationPercentage: 80
+ # targetMemoryUtilizationPercentage: 80
+
+nodeSelector: {}
+
+tolerations: []
+
+affinity: {}