diff --git a/quiver-mongoapi-helm/.helmignore b/quiver-mongoapi-helm/.helmignore
new file mode 100644
index 0000000000000000000000000000000000000000..0e8a0eb36f4ca2c939201c0d54b5d82a1ea34778
--- /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 0000000000000000000000000000000000000000..2efcb959d3d1c67d68dd14fb764f846315f58086
--- /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 0000000000000000000000000000000000000000..8a54602ec96052fea94c16caffa9fa4bcf4dcd3b
--- /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 0000000000000000000000000000000000000000..ffa2cc85be3699814d22db9ff8deb0b8448dda17
--- /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 0000000000000000000000000000000000000000..993f58dae345664e3eb43a161fa3b1968c81026f
--- /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 0000000000000000000000000000000000000000..504b62e010b1b426cfda95f057f16adc99498325
--- /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 0000000000000000000000000000000000000000..876b9cf7eb91316c9b01ccc4a480cca44f3666af
--- /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 0000000000000000000000000000000000000000..3c6df3cef2b05e4c89457ae43e159fc7f205999b
--- /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 0000000000000000000000000000000000000000..280fc5ec5468ccf56cb58d86c81dde83bdeae71e
--- /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 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/quiver-mongoapi-helm/templates/webserver-service.yaml b/quiver-mongoapi-helm/templates/webserver-service.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..7818a57816b3b033897979ab32771f4ebe41f1fb
--- /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 0000000000000000000000000000000000000000..7639ee7314363ef58b0f7f13f720014ec1a04a80
--- /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: {}