diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3ebb21f8b02e9fb903333377272b354396e71af7..5767480fe3d79605bf34e8cc9c278a6d1a113b7a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -126,6 +126,26 @@ jobs:
           file: deploy/Dockerfile
           tags: s3rius/rustus:latest,s3rius/rustus:${{env.APP_VERSION}}
 
+  release_helm:
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v2
+      - name: Configure Git
+        run: |
+          git config user.name "$GITHUB_ACTOR"
+          git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
+      - name: Install Helm
+        uses: azure/setup-helm@v1
+        with:
+          version: v3.7.1
+      - name: Run chart-releaser
+        uses: helm/chart-releaser-action@v1.3.0
+        with:
+          charts_dir: ./deploy
+        env:
+          CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
+
   publish_crate:
     runs-on: ubuntu-latest
     steps:
diff --git a/deploy/Dockerfile b/deploy/Dockerfile
index 96c0cb49e6a138118dc27d5913f87d489e0cfc64..4fca83a51e82e2558cda1acd829e99b23368a90c 100644
--- a/deploy/Dockerfile
+++ b/deploy/Dockerfile
@@ -14,6 +14,6 @@ COPY . .
 RUN cargo build --release --bin rustus --features=all
 
 FROM debian:bullseye-20211201-slim AS runtime
-WORKDIR app
+WORKDIR /app
 COPY --from=builder /app/target/release/rustus /usr/local/bin/
 ENTRYPOINT ["/usr/local/bin/rustus"]
diff --git a/deploy/alpine.Dockerfile b/deploy/alpine.Dockerfile
index be8e4df2fd97fb4dc1bd6d4bd3cd35ba52c4b12f..deb1275586ae45ec5589b63f3accbe2ff820d2ee 100644
--- a/deploy/alpine.Dockerfile
+++ b/deploy/alpine.Dockerfile
@@ -7,5 +7,6 @@ ADD "https://github.com/s3rius/rustus/releases/download/${app_version}/rustus-${
 RUN tar xvf *.tar.gz
 RUN rm *.tar.gz
 RUN mv rustus /bin
+WORKDIR /app
 
 ENTRYPOINT ["/bin/rustus"]
\ No newline at end of file
diff --git a/deploy/helm/.helmignore b/deploy/helm/.helmignore
new file mode 100644
index 0000000000000000000000000000000000000000..0e8a0eb36f4ca2c939201c0d54b5d82a1ea34778
--- /dev/null
+++ b/deploy/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/deploy/helm/Chart.lock b/deploy/helm/Chart.lock
new file mode 100644
index 0000000000000000000000000000000000000000..188b0a7da4f488a3f97896f70fee996c392209d6
--- /dev/null
+++ b/deploy/helm/Chart.lock
@@ -0,0 +1,12 @@
+dependencies:
+- name: redis
+  repository: https://charts.bitnami.com/bitnami
+  version: 16.6.0
+- name: postgresql
+  repository: https://charts.bitnami.com/bitnami
+  version: 11.1.9
+- name: mysql
+  repository: https://charts.bitnami.com/bitnami
+  version: 8.8.27
+digest: sha256:96a4a257c98a0c8dbe07690d480dec99a1a73c5074e5e8811d6947e741eb9126
+generated: "2022-03-24T14:49:00.598734768+04:00"
diff --git a/deploy/helm/Chart.yaml b/deploy/helm/Chart.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..a39382bde94081f02b04d368116d9a6817d00a09
--- /dev/null
+++ b/deploy/helm/Chart.yaml
@@ -0,0 +1,40 @@
+apiVersion: v2
+name: rustus
+description: A Helm chart for rustus
+home: https://github.com/s3rius/rustus/
+icon: https://raw.githubusercontent.com/s3rius/rustus/master/imgs/logo.svg
+# 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: "0.4.8"
+
+
+dependencies:
+  - name: redis
+    version: ^16.0
+    condition: redis.enabled
+    repository: "https://charts.bitnami.com/bitnami"
+  - name: postgresql
+    version: ^11.0
+    condition: postgresql.enabled
+    repository: "https://charts.bitnami.com/bitnami"
+  - name: mysql
+    version: ^8.0
+    condition: mysql.enabled
+    repository: "https://charts.bitnami.com/bitnami"
\ No newline at end of file
diff --git a/deploy/helm/charts/mysql-8.8.27.tgz b/deploy/helm/charts/mysql-8.8.27.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..91094de0ff9060c1052081fffc59e6276f6caf79
Binary files /dev/null and b/deploy/helm/charts/mysql-8.8.27.tgz differ
diff --git a/deploy/helm/charts/postgresql-11.1.9.tgz b/deploy/helm/charts/postgresql-11.1.9.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..e308ad4c099a5f4a459b307fd457b5d20df19c30
Binary files /dev/null and b/deploy/helm/charts/postgresql-11.1.9.tgz differ
diff --git a/deploy/helm/charts/redis-16.6.0.tgz b/deploy/helm/charts/redis-16.6.0.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..770de4e3e3241056140f0a00761c3310ae45ed52
Binary files /dev/null and b/deploy/helm/charts/redis-16.6.0.tgz differ
diff --git a/deploy/helm/templates/NOTES.txt b/deploy/helm/templates/NOTES.txt
new file mode 100644
index 0000000000000000000000000000000000000000..216b5706a6ef20dd91117d6d553a9f12b9c8362f
--- /dev/null
+++ b/deploy/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 "rustus.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 "rustus.fullname" . }}'
+  export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "rustus.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 "rustus.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/deploy/helm/templates/_helpers.tpl b/deploy/helm/templates/_helpers.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..218dbb73764bab17931dd9473505a2c5caeb8de9
--- /dev/null
+++ b/deploy/helm/templates/_helpers.tpl
@@ -0,0 +1,63 @@
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "rustus.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 "rustus.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 "rustus.chart" -}}
+{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
+{{- end }}
+
+{{/*
+Common labels
+*/}}
+{{- define "rustus.labels" -}}
+helm.sh/chart: {{ include "rustus.chart" . }}
+{{ include "rustus.selectorLabels" . }}
+{{- if .Chart.AppVersion }}
+app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
+{{- end }}
+app.kubernetes.io/managed-by: {{ .Release.Service }}
+{{- end }}
+
+{{/*
+Selector labels
+*/}}
+{{- define "rustus.selectorLabels" -}}
+app: {{ include "rustus.name" . }}
+app.kubernetes.io/name: {{ include "rustus.name" . }}
+app.kubernetes.io/instance: {{ .Release.Name }}
+{{- end }}
+
+{{/*
+Create the name of the service account to use
+*/}}
+{{- define "rustus.serviceAccountName" -}}
+{{- if .Values.serviceAccount.create }}
+{{- default (include "rustus.fullname" .) .Values.serviceAccount.name }}
+{{- else }}
+{{- default "default" .Values.serviceAccount.name }}
+{{- end }}
+{{- end }}
diff --git a/deploy/helm/templates/deployment.yaml b/deploy/helm/templates/deployment.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..320d3687c1f02b2217ed2fd89d1c7706438ce236
--- /dev/null
+++ b/deploy/helm/templates/deployment.yaml
@@ -0,0 +1,83 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+  name: {{ include "rustus.fullname" . }}
+  labels:
+    {{- include "rustus.labels" . | nindent 4 }}
+spec:
+  {{- if not .Values.autoscaling.enabled }}
+  replicas: {{ .Values.replicaCount }}
+  {{- end }}
+  selector:
+    matchLabels:
+      {{- include "rustus.selectorLabels" . | nindent 6 }}
+  template:
+    metadata:
+      {{- with .Values.podAnnotations }}
+      annotations:
+        {{- toYaml . | nindent 8 }}
+      {{- end }}
+      labels:
+        {{- include "rustus.selectorLabels" . | nindent 8 }}
+    spec:
+      {{- with .Values.imagePullSecrets }}
+      imagePullSecrets:
+        {{- toYaml . | nindent 8 }}
+      {{- end }}
+      serviceAccountName: {{ include "rustus.serviceAccountName" . }}
+      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 }}
+          {{- with .Values.image.command }}
+          command:
+            {{- . | toYaml | nindent 12 }}
+          {{- end }}
+          ports:
+            - name: http
+              containerPort: {{ default 1081 .Values.env.RUSTUS_PORT }}
+              protocol: TCP
+          readinessProbe:
+            httpGet:
+              path: /health
+              port: http
+          {{- with .Values.env }}
+          env:
+            {{- range $key, $val := . }}
+            - name: {{ $key | quote }}
+              value: {{ $val | quote }}
+            {{- end }}
+          {{- end }}
+          {{- if .Values.persistence.enabled }}
+          volumeMounts:
+            - name: data
+              mountPath: {{ default "/app/data" .Values.env.RUSTUS_DATA_DIR }}
+          {{- end }}
+          resources:
+            {{- toYaml .Values.resources | nindent 12 }}
+      {{- if .Values.persistence.enabled }}
+      volumes:
+        - name: data
+          persistentVolumeClaim:
+            {{- if .Values.persistence.existingClaim }}
+            claimName: {{ .Values.persistence.existingClaim }}
+            {{- else }}
+            claimName: {{ printf "rustus-data-%s" (include "rustus.fullname" .) }}
+            {{- end }}
+      {{- end }}
+      {{- 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/deploy/helm/templates/hpa.yaml b/deploy/helm/templates/hpa.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..13d5fa13cf4903fa140785e8084d9f4bf63c583b
--- /dev/null
+++ b/deploy/helm/templates/hpa.yaml
@@ -0,0 +1,28 @@
+{{- if .Values.autoscaling.enabled }}
+apiVersion: autoscaling/v2beta1
+kind: HorizontalPodAutoscaler
+metadata:
+  name: {{ include "rustus.fullname" . }}
+  labels:
+    {{- include "rustus.labels" . | nindent 4 }}
+spec:
+  scaleTargetRef:
+    apiVersion: apps/v1
+    kind: Deployment
+    name: {{ include "rustus.fullname" . }}
+  minReplicas: {{ .Values.autoscaling.minReplicas }}
+  maxReplicas: {{ .Values.autoscaling.maxReplicas }}
+  metrics:
+    {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
+    - type: Resource
+      resource:
+        name: cpu
+        targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
+    {{- end }}
+    {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
+    - type: Resource
+      resource:
+        name: memory
+        targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
+    {{- end }}
+{{- end }}
diff --git a/deploy/helm/templates/ingress.yaml b/deploy/helm/templates/ingress.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..9c17955a6607bac58cdb2a64c51fb4a1102a5647
--- /dev/null
+++ b/deploy/helm/templates/ingress.yaml
@@ -0,0 +1,61 @@
+{{- if .Values.ingress.enabled -}}
+{{- $fullName := include "rustus.fullname" . -}}
+{{- $svcPort := .Values.service.port -}}
+{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
+  {{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
+  {{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}
+  {{- end }}
+{{- end }}
+{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}}
+apiVersion: networking.k8s.io/v1
+{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
+apiVersion: networking.k8s.io/v1beta1
+{{- else -}}
+apiVersion: extensions/v1beta1
+{{- end }}
+kind: Ingress
+metadata:
+  name: {{ $fullName }}
+  labels:
+    {{- include "rustus.labels" . | nindent 4 }}
+  {{- with .Values.ingress.annotations }}
+  annotations:
+    {{- toYaml . | nindent 4 }}
+  {{- end }}
+spec:
+  {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }}
+  ingressClassName: {{ .Values.ingress.className }}
+  {{- end }}
+  {{- if .Values.ingress.tls }}
+  tls:
+    {{- range .Values.ingress.tls }}
+    - hosts:
+        {{- range .hosts }}
+        - {{ . | quote }}
+        {{- end }}
+      secretName: {{ .secretName }}
+    {{- end }}
+  {{- end }}
+  rules:
+    {{- range .Values.ingress.hosts }}
+    - host: {{ .host | quote }}
+      http:
+        paths:
+          {{- range .paths }}
+          - path: {{ .path }}
+            {{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }}
+            pathType: {{ .pathType }}
+            {{- end }}
+            backend:
+              {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
+              service:
+                name: {{ $fullName }}
+                port:
+                  number: {{ $svcPort }}
+              {{- else }}
+              serviceName: {{ $fullName }}
+              servicePort: {{ $svcPort }}
+              {{- end }}
+          {{- end }}
+    {{- end }}
+{{- end }}
diff --git a/deploy/helm/templates/pvc.yml b/deploy/helm/templates/pvc.yml
new file mode 100644
index 0000000000000000000000000000000000000000..5836d74ecb2703ae1eb2a38bc872326b22710399
--- /dev/null
+++ b/deploy/helm/templates/pvc.yml
@@ -0,0 +1,30 @@
+{{- if and (.Values.persistence.enabled) (not .Values.persistence.existingClaim) }}
+kind: PersistentVolumeClaim
+apiVersion: v1
+metadata:
+  name: {{ printf "rustus-data-%s" (include "rustus.fullname" .) }}
+  labels:
+    {{- include "rustus.selectorLabels" . | nindent 4 }}
+  {{- if .Values.persistence.annotations }}
+  annotations: {{- toYaml .Values.persistence.annotations | nindent 4 }}
+  {{- end }}
+spec:
+  storageClassName: {{ .Values.persistence.storageClass }}
+  accessModes:
+  {{- range .Values.persistence.accessModes }}
+    - {{ . | quote }}
+  {{- end }}
+  {{- with .Values.persistence.dataSource }}
+  dataSource:
+    {{ . | toYaml | nindent 4 }}
+  {{- end }}
+  {{- with .Values.persistence.selector }}
+  selector:
+    {{- . | toYaml | nindent 4 }}
+  {{- end }}
+  mountOptions:
+    {{- .Values.persistence.mountOptions | toYaml | nindent 4 }}
+  resources:
+    requests:
+      storage: {{ .Values.persistence.size | quote }}
+{{- end }}
\ No newline at end of file
diff --git a/deploy/helm/templates/service.yaml b/deploy/helm/templates/service.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..3143da2526b56412f78beb731359c69fc96c4397
--- /dev/null
+++ b/deploy/helm/templates/service.yaml
@@ -0,0 +1,15 @@
+apiVersion: v1
+kind: Service
+metadata:
+  name: {{ include "rustus.fullname" . }}
+  labels:
+    {{- include "rustus.labels" . | nindent 4 }}
+spec:
+  type: {{ .Values.service.type }}
+  ports:
+    - port: {{ .Values.service.port }}
+      targetPort: http
+      protocol: TCP
+      name: http
+  selector:
+    {{- include "rustus.selectorLabels" . | nindent 4 }}
diff --git a/deploy/helm/templates/serviceaccount.yaml b/deploy/helm/templates/serviceaccount.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..9118fa4eff7cb45a001ea4ecca9ca72fa2897fb8
--- /dev/null
+++ b/deploy/helm/templates/serviceaccount.yaml
@@ -0,0 +1,12 @@
+{{- if .Values.serviceAccount.create -}}
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+  name: {{ include "rustus.serviceAccountName" . }}
+  labels:
+    {{- include "rustus.labels" . | nindent 4 }}
+  {{- with .Values.serviceAccount.annotations }}
+  annotations:
+    {{- toYaml . | nindent 4 }}
+  {{- end }}
+{{- end }}
diff --git a/deploy/helm/values.yaml b/deploy/helm/values.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..a062c48f8467c8e97f5085561e5bebc78aefffb7
--- /dev/null
+++ b/deploy/helm/values.yaml
@@ -0,0 +1,180 @@
+# Default values for rustus.
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+
+replicaCount: 1
+
+image:
+  repository: s3rius/rustus
+  pullPolicy: IfNotPresent
+  # Overrides the image tag whose default is the chart appVersion.
+  tag: ""
+  command: []
+  # command:
+  #   - rustus
+
+env:
+  RUSTUS_PORT: 1081
+  RUSTUS_DATA_DIR: /data
+  RUSTUS_INFO_DIR: /data
+  RUSTUS_DIR_STRUCTURE: "{year}/{month}/{day}"
+
+#  For redis info storage
+#  RUSTUS_INFO_STORAGE: redis-info-storage
+#  RUSTUS_INFO_DB_DSN: redis://:pass@rustus-redis-master/0
+
+#  For postgresql info storage
+#  RUSTUS_INFO_STORAGE: db-info-storage
+#  RUSTUS_INFO_DB_DSN: postgresql://rustus:rustus@rustus-postgresql/rustus
+
+#  For MySQL info storage
+#  RUSTUS_INFO_STORAGE: db-info-storage
+#  RUSTUS_INFO_DB_DSN: mysql://rustus:rustus@rustus-mysql/rustus
+
+persistence:
+  enabled: false
+
+  # Existing pvc to use
+  existingClaim: ""
+
+  # Options for creating pvc
+  accessModes:
+    - ReadWriteOnce
+  size: 1Gi
+  storageClass: local-path
+  mountOptions: {}
+  selector: {}
+  annotations: {}
+  dataSource: {}
+
+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: rustus.localhost
+      paths:
+        - path: /
+          pathType: Prefix
+  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: {}
+
+# Configuration for redis sub-chart
+redis:
+  # After enabling this parameter
+  # you should set info-storage to redis-info-storage
+  # and provide valid connection string.
+  # You can do it using following env variables:
+  #  RUSTUS_INFO_STORAGE: redis-info-storage
+  #  RUSTUS_INFO_DB_DSN: redis://:pass@rustus-redis-master/0
+
+  enabled: false
+
+  global:
+    redis:
+      # ! Override values for production use
+      password: "pass"
+
+  master:
+    persistence:
+      # ! Override values for production use
+      enabled: false
+
+    service:
+      type: ClusterIP
+
+# Configuration for postgresql sub-chart
+postgresql:
+  # After enabling this parameter
+  # you should set info-storage to db-info-storage
+  # and provide valid connection string.
+  # You can do it using following env variables:
+  #  RUSTUS_INFO_STORAGE: db-info-storage
+  #  RUSTUS_INFO_DB_DSN: postgresql://rustus:rustus@rustus-postgresql/rustus
+
+  enabled: false
+
+  global:
+    postgresql:
+      auth:
+        # ! Override values for production use
+        username: rustus
+        password: rustus
+        database: rustus
+
+mysql:
+  # After enabling this parameter
+  # you should set info-storage to db-info-storage
+  # and provide valid connection string.
+  # You can do it using following env variables:
+  #  RUSTUS_INFO_STORAGE: db-info-storage
+  #  RUSTUS_INFO_DB_DSN: mysql://rustus:rustus@rustus-mysql/rustus
+
+  enabled: false
+
+  auth:
+    # ! Override values for production use
+    database: rustus
+    username: rustus
+    password: rustus
diff --git a/src/main.rs b/src/main.rs
index 16713c62440ab5438afe459584457a7d2bdb3ac3..6fc08e66bc997f51c7b6b52a4e4a0b3655bc05cc 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -93,6 +93,7 @@ pub fn create_server(state: State) -> Result<Server, std::io::Error> {
                 }
                 srv.call(req)
             })
+            .route("/health", web::get().to(routes::health_check))
             // Default response for unknown requests.
             // It returns 404 status_code.
             .default_service(web::route().to(routes::not_found))
diff --git a/src/routes.rs b/src/routes.rs
index 9dca6f6662765707b129ff720e2589c130d1a711..6a0769234bc6aff0463f9c9769c7b4c327b4d235 100644
--- a/src/routes.rs
+++ b/src/routes.rs
@@ -10,3 +10,10 @@ use crate::errors::{RustusError, RustusResult};
 pub async fn not_found() -> RustusResult<HttpResponse> {
     Err(RustusError::FileNotFound)
 }
+
+/// Checks that application is accepting connections correctly.
+#[allow(clippy::unused_async)]
+#[cfg_attr(coverage, no_coverage)]
+pub async fn health_check() -> HttpResponse {
+    HttpResponse::Ok().finish()
+}