From f555128b1a48e67692b5dcded5f61ca130fd1a71 Mon Sep 17 00:00:00 2001 From: Michelle Weidling <weidling@sub.uni-goettingen.de> Date: Thu, 13 Jul 2023 14:09:14 +0200 Subject: [PATCH] feat: helm create + konvert --- quiver-mongoapi-helm/.helmignore | 23 ++++++ quiver-mongoapi-helm/Chart.yaml | 24 ++++++ quiver-mongoapi-helm/templates/NOTES.txt | 22 +++++ quiver-mongoapi-helm/templates/_helpers.tpl | 62 ++++++++++++++ .../mongo-persistentvolumeclaim.yaml | 14 ++++ .../templates/mongodb-deployment.yaml | 41 ++++++++++ ...quiver-mongoapi-default-networkpolicy.yaml | 14 ++++ .../templates/tests/test-connection.yaml | 15 ++++ .../templates/webserver-deployment.yaml | 35 ++++++++ .../templates/webserver-ingress.yaml | 0 .../templates/webserver-service.yaml | 19 +++++ quiver-mongoapi-helm/values.yaml | 82 +++++++++++++++++++ 12 files changed, 351 insertions(+) create mode 100644 quiver-mongoapi-helm/.helmignore create mode 100644 quiver-mongoapi-helm/Chart.yaml create mode 100644 quiver-mongoapi-helm/templates/NOTES.txt create mode 100644 quiver-mongoapi-helm/templates/_helpers.tpl create mode 100644 quiver-mongoapi-helm/templates/mongo-persistentvolumeclaim.yaml create mode 100644 quiver-mongoapi-helm/templates/mongodb-deployment.yaml create mode 100644 quiver-mongoapi-helm/templates/quiver-mongoapi-default-networkpolicy.yaml create mode 100644 quiver-mongoapi-helm/templates/tests/test-connection.yaml create mode 100644 quiver-mongoapi-helm/templates/webserver-deployment.yaml create mode 100644 quiver-mongoapi-helm/templates/webserver-ingress.yaml create mode 100644 quiver-mongoapi-helm/templates/webserver-service.yaml create mode 100644 quiver-mongoapi-helm/values.yaml diff --git a/quiver-mongoapi-helm/.helmignore b/quiver-mongoapi-helm/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/quiver-mongoapi-helm/.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/quiver-mongoapi-helm/Chart.yaml b/quiver-mongoapi-helm/Chart.yaml new file mode 100644 index 0000000..2efcb95 --- /dev/null +++ b/quiver-mongoapi-helm/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: quiver-mongoapi-helm +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.1.0 + +# 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. +# It is recommended to use it with quotes. +appVersion: "1.16.0" diff --git a/quiver-mongoapi-helm/templates/NOTES.txt b/quiver-mongoapi-helm/templates/NOTES.txt new file mode 100644 index 0000000..8a54602 --- /dev/null +++ b/quiver-mongoapi-helm/templates/NOTES.txt @@ -0,0 +1,22 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "quiver-mongoapi-helm.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "quiver-mongoapi-helm.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "quiver-mongoapi-helm.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "quiver-mongoapi-helm.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT +{{- end }} diff --git a/quiver-mongoapi-helm/templates/_helpers.tpl b/quiver-mongoapi-helm/templates/_helpers.tpl new file mode 100644 index 0000000..ffa2cc8 --- /dev/null +++ b/quiver-mongoapi-helm/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "quiver-mongoapi-helm.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 "quiver-mongoapi-helm.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 "quiver-mongoapi-helm.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "quiver-mongoapi-helm.labels" -}} +helm.sh/chart: {{ include "quiver-mongoapi-helm.chart" . }} +{{ include "quiver-mongoapi-helm.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "quiver-mongoapi-helm.selectorLabels" -}} +app.kubernetes.io/name: {{ include "quiver-mongoapi-helm.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "quiver-mongoapi-helm.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "quiver-mongoapi-helm.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/quiver-mongoapi-helm/templates/mongo-persistentvolumeclaim.yaml b/quiver-mongoapi-helm/templates/mongo-persistentvolumeclaim.yaml new file mode 100644 index 0000000..993f58d --- /dev/null +++ b/quiver-mongoapi-helm/templates/mongo-persistentvolumeclaim.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: mongo + name: mongo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} diff --git a/quiver-mongoapi-helm/templates/mongodb-deployment.yaml b/quiver-mongoapi-helm/templates/mongodb-deployment.yaml new file mode 100644 index 0000000..504b62e --- /dev/null +++ b/quiver-mongoapi-helm/templates/mongodb-deployment.yaml @@ -0,0 +1,41 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.28.0 (c4137012e) + creationTimestamp: null + labels: + io.kompose.service: mongodb + name: mongodb +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + io.kompose.service: mongodb + strategy: + type: Recreate + template: + metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.28.0 (c4137012e) + creationTimestamp: null + labels: + io.kompose.network/quiver-mongoapi-default: "true" + io.kompose.service: mongodb + spec: + containers: + - image: mongodb/mongodb-community-server + imagePullPolicy: {{ .Values.image.pullPolicy }} + name: mongodb + resources: {} + volumeMounts: + - mountPath: /data/db + name: mongo + restartPolicy: Always + volumes: + - name: mongo + persistentVolumeClaim: + claimName: mongo +status: {} diff --git a/quiver-mongoapi-helm/templates/quiver-mongoapi-default-networkpolicy.yaml b/quiver-mongoapi-helm/templates/quiver-mongoapi-default-networkpolicy.yaml new file mode 100644 index 0000000..876b9cf --- /dev/null +++ b/quiver-mongoapi-helm/templates/quiver-mongoapi-default-networkpolicy.yaml @@ -0,0 +1,14 @@ +apiVersion: networking.k8s.io/v1 +kind: NetworkPolicy +metadata: + creationTimestamp: null + name: quiver-mongoapi-default +spec: + ingress: + - from: + - podSelector: + matchLabels: + io.kompose.network/quiver-mongoapi-default: "true" + podSelector: + matchLabels: + io.kompose.network/quiver-mongoapi-default: "true" diff --git a/quiver-mongoapi-helm/templates/tests/test-connection.yaml b/quiver-mongoapi-helm/templates/tests/test-connection.yaml new file mode 100644 index 0000000..3c6df3c --- /dev/null +++ b/quiver-mongoapi-helm/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "quiver-mongoapi-helm.fullname" . }}-test-connection" + labels: + {{- include "quiver-mongoapi-helm.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "quiver-mongoapi-helm.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/quiver-mongoapi-helm/templates/webserver-deployment.yaml b/quiver-mongoapi-helm/templates/webserver-deployment.yaml new file mode 100644 index 0000000..280fc5e --- /dev/null +++ b/quiver-mongoapi-helm/templates/webserver-deployment.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.28.0 (c4137012e) + creationTimestamp: null + labels: + io.kompose.service: webserver + name: webserver +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + io.kompose.service: webserver + strategy: {} + template: + metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.28.0 (c4137012e) + creationTimestamp: null + labels: + io.kompose.network/quiver-mongoapi-default: "true" + io.kompose.service: webserver + spec: + containers: + - image: docker.gitlab.gwdg.de/subugoe/ocr-d/quiver-mongoapi:main + imagePullPolicy: {{ .Values.image.pullPolicy }} + name: webserver + ports: + - containerPort: 8084 + resources: {} + restartPolicy: Always +status: {} diff --git a/quiver-mongoapi-helm/templates/webserver-ingress.yaml b/quiver-mongoapi-helm/templates/webserver-ingress.yaml new file mode 100644 index 0000000..e69de29 diff --git a/quiver-mongoapi-helm/templates/webserver-service.yaml b/quiver-mongoapi-helm/templates/webserver-service.yaml new file mode 100644 index 0000000..7818a57 --- /dev/null +++ b/quiver-mongoapi-helm/templates/webserver-service.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Service +metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.28.0 (c4137012e) + creationTimestamp: null + labels: + io.kompose.service: webserver + name: webserver +spec: + ports: + - name: "8084" + port: 8084 + targetPort: 8084 + selector: + io.kompose.service: webserver +status: + loadBalancer: {} diff --git a/quiver-mongoapi-helm/values.yaml b/quiver-mongoapi-helm/values.yaml new file mode 100644 index 0000000..7639ee7 --- /dev/null +++ b/quiver-mongoapi-helm/values.yaml @@ -0,0 +1,82 @@ +# Default values for quiver-mongoapi-helm. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + className: "" + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: + - path: / + pathType: ImplementationSpecific + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +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 + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} -- GitLab