diff options
author | Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com> | 2021-11-24 12:00:45 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2021-12-13 17:01:24 +0000 |
commit | bae8d839893d1ce5c1e9dfa670fbe536520093a0 (patch) | |
tree | 02feb907365859d03498ee9db10cf517a05804d1 /robot/assets/helm/pm-https-server/templates | |
parent | 2a2c4c30c423a528e1969eaa8fb1176ba3250689 (diff) |
[ROBOT] ADD HTTPS based BULKPM test cases that use helm based componentsrefactoring
Add https server based test cases
Signed-off-by: Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com>
Issue-ID: INT-1895
Change-Id: I74f7102398a08e1629b50f510ef179d35c8761bd
Diffstat (limited to 'robot/assets/helm/pm-https-server/templates')
5 files changed, 182 insertions, 0 deletions
diff --git a/robot/assets/helm/pm-https-server/templates/_helpers.tpl b/robot/assets/helm/pm-https-server/templates/_helpers.tpl new file mode 100644 index 00000000..b7a3e1e8 --- /dev/null +++ b/robot/assets/helm/pm-https-server/templates/_helpers.tpl @@ -0,0 +1,78 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "pmhttpsserver.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common namespace +*/}} +{{- define "pmhttpsserver.namespace" -}} + {{- default .Release.Namespace .Values.nsPrefix -}} +{{- 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 "pmhttpsserver.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 "pmhttpsserver.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "pmhttpsserver.labels" -}} +helm.sh/chart: {{ include "pmhttpsserver.chart" . }} +{{ include "pmhttpsserver.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "pmhttpsserver.selectorLabels" -}} +app.kubernetes.io/name: {{ include "pmhttpsserver.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "pmhttpsserver.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "pmhttpsserver.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} + +{{/* +Define dns names in certificate +*/}} +{{- define "pmhttpsserver.dnsNames" -}} +{{- range $dnsName := $.Values.certificates.dnsNames }} +- {{ $dnsName }} +{{- end }} +{{- end }} diff --git a/robot/assets/helm/pm-https-server/templates/certificate.yaml b/robot/assets/helm/pm-https-server/templates/certificate.yaml new file mode 100644 index 00000000..229ac940 --- /dev/null +++ b/robot/assets/helm/pm-https-server/templates/certificate.yaml @@ -0,0 +1,26 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + namespace: {{ include "pmhttpsserver.namespace" . }} + name: '{{ .Values.certificates.name }}-cert' +spec: + commonName: {{ .Values.certificates.commonName }} + secretName: '{{ .Values.certificates.name }}-secret' + renewBefore: {{ .Values.certificates.renewBefore }} + duration: {{ .Values.certificates.duration }} + subject: + organizations: + - {{ .Values.certificates.subject.organization }} + countries: + - {{ .Values.certificates.subject.country }} + localities: + - {{ .Values.certificates.subject.locality }} + provinces: + - {{ .Values.certificates.subject.province }} + organizationalUnits: + - {{ .Values.certificates.subject.organizationalUnit }} + issuerRef: + group: {{ .Values.certificates.issuerRef.group }} + kind: {{ .Values.certificates.issuerRef.kind }} + name: {{ .Values.certificates.issuerRef.name }} + dnsNames: {{ include "pmhttpsserver.dnsNames" . | indent 4 }} diff --git a/robot/assets/helm/pm-https-server/templates/deployment.yaml b/robot/assets/helm/pm-https-server/templates/deployment.yaml new file mode 100644 index 00000000..dc00607a --- /dev/null +++ b/robot/assets/helm/pm-https-server/templates/deployment.yaml @@ -0,0 +1,46 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "pmhttpsserver.fullname" . }} + namespace: {{ include "pmhttpsserver.namespace" . }} + labels: + {{ include "pmhttpsserver.labels" . | nindent 4 }} +spec: + selector: + matchLabels: + {{ include "pmhttpsserver.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + {{ include "pmhttpsserver.selectorLabels" . | nindent 8 }} + spec: + containers: + - name: {{ .Chart.Name }} + image: '{{ include "repositoryGenerator.repository" . }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}' + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + - name: http2 + containerPort: 8080 + protocol: TCP + - name: https + containerPort: 443 + protocol: TCP + volumeMounts: + - name: certstore + mountPath: {{ .Values.certsDir }} + volumes: + - name: certstore + projected: + sources: + - secret: + name: '{{.Values.certificates.name}}-secret' + items: + - key: tls.key + path: key.pem + - key: tls.crt + path: keystore.pem + - key: ca.crt + path: truststore.pem diff --git a/robot/assets/helm/pm-https-server/templates/secret.yaml b/robot/assets/helm/pm-https-server/templates/secret.yaml new file mode 100644 index 00000000..9d5547d4 --- /dev/null +++ b/robot/assets/helm/pm-https-server/templates/secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: '{{ .Values.certificates.name }}-secret' + namespace: {{ include "pmhttpsserver.namespace" . }} +data: + p12.pass: MjNlOTE3NzVjOTE4ZTRmNjY4ZTFhYzgyZDY5ZjExYWU0ZWU0ZGM2MTM3YzUwMzZkZjE3MmEyODJhYTA5 +type: Opaque diff --git a/robot/assets/helm/pm-https-server/templates/service.yaml b/robot/assets/helm/pm-https-server/templates/service.yaml new file mode 100644 index 00000000..c85c9c8c --- /dev/null +++ b/robot/assets/helm/pm-https-server/templates/service.yaml @@ -0,0 +1,24 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "pmhttpsserver.fullname" . }} + namespace: {{ include "pmhttpsserver.namespace" . }} + labels: + {{ include "pmhttpsserver.labels" . | nindent 4 }} +spec: + type: NodePort + ports: + - port: 80 + targetPort: http + protocol: TCP + name: http + - port: 8080 + targetPort: http2 + protocol: TCP + name: http2 + - port: 443 + targetPort: https + protocol: TCP + name: https + selector: + {{ include "pmhttpsserver.selectorLabels" . | nindent 4 }} |