diff --git a/deployment/helmchart/Chart.lock b/deployment/helmchart/Chart.lock
index c76e83583ee7191057dba026fa699aaa11f49291..e20d8df6e3dbe1ff19723e9a7bf6a212f64e66a2 100644
--- a/deployment/helmchart/Chart.lock
+++ b/deployment/helmchart/Chart.lock
@@ -1,6 +1,6 @@
 dependencies:
 - name: common
   repository: https://charts.bitnami.com/bitnami
-  version: 1.10.0
-digest: sha256:d6f283322d34efda54721ddd67aec935f1bea501c7b45dfbe89814aed21ae5dc
-generated: "2021-09-30T16:27:06.738339948+02:00"
+  version: 1.10.4
+digest: sha256:e177cdcd71e67a1e64e95260c4b780374e1d66e85be405d5dc58459654e49ffa
+generated: "2022-01-21T11:11:54.359313957+01:00"
diff --git a/deployment/helmchart/templates/configmaps.yaml b/deployment/helmchart/templates/configmaps.yaml
index a2f8262c2f8cc26eb399a04f9ab2f0e3fca33135..34c5a7fb2cbbf6b1f0ee4eadd14b98703151c5be 100644
--- a/deployment/helmchart/templates/configmaps.yaml
+++ b/deployment/helmchart/templates/configmaps.yaml
@@ -13,9 +13,10 @@ data:
   SECRET_KEY: {{ .Values.backend.secretKey }}
   FLASK_APP: app.py
   FLASK_ENV: {{ .Values.backend.flaskEnv }}
-  # Probably needed in the future:
-  # DASHBOARD_BACKEND_USERNAME: {{ .Values.backend.username | quote }}
-  # DASHBOARD_BACKEND_EMAIL: {{ .Values.backend.email | quote }}
+  HYDRA_CLIENT_ID: {{ .Values.backend.oidc.clientId }}
+  HYDRA_AUTHORIZATION_BASE_URL: {{ .Values.backend.oidc.authorizationBaseUrl }}
+  TOKEN_URL: {{ .Values.backend.oidc.tokenUrl }}
+
   # {{- if .Values.backend.smtp.enabled }}
   # DASHBOARD_BACKEND_SMTP_HOST: {{ .Values.backend.smtp.host | quote }}
   # DASHBOARD_BACKEND_SMTP_PORT: {{ .Values.backend.smtp.port | quote }}
diff --git a/deployment/helmchart/templates/deployment.yaml b/deployment/helmchart/templates/deployment.yaml
index b69be60972d39a3488ad695d407408a6f2667fca..1557dec4bddccbc25ba546273f012eebb62eaf70 100644
--- a/deployment/helmchart/templates/deployment.yaml
+++ b/deployment/helmchart/templates/deployment.yaml
@@ -138,6 +138,11 @@ spec:
                 secretKeyRef:
                   name: {{ include "backend.smtp.secretName" . }}
                   key: smtp-password
+            - name: HYDRA_CLIENT_SECRET
+              valueFrom:
+                secretKeyRef:
+                  name: {{ include "backend.secretName" . }}
+                  key: oidc-client-secret
             - name: KRATOS_URL
               value: {{ .Values.backend.kratosUrl }}
             {{- end }}
diff --git a/deployment/helmchart/templates/secrets-admin-panel.yaml b/deployment/helmchart/templates/secrets-admin-panel.yaml
index 969b2109b3b75b9174337590ed3a8f8c448bea91..07562c87fe9fd4e3750a4a286bab6fd32e630c14 100644
--- a/deployment/helmchart/templates/secrets-admin-panel.yaml
+++ b/deployment/helmchart/templates/secrets-admin-panel.yaml
@@ -20,4 +20,7 @@ data:
   {{- if and (.Values.backend.smtp.password) (.Values.backend.smtp.enabled) (not .Values.backend.smtp.existingSecret) }}
   smtp-password: {{ .Values.backend.smtp.password | b64enc | quote }}
   {{- end }}
+  {{- if .Values.backend.oidc.clientSecret }}
+  oidc-client-secret: {{ .Values.backend.oidc.clientSecret | b64enc | quote }}
+  {{- end }}
 {{- end }}
diff --git a/deployment/helmchart/values.yaml b/deployment/helmchart/values.yaml
index 45a94fec74f3d86ce4da02b1d57e28041184715c..1f976f16745ff9fe0c92033ee1c749657a93e836 100644
--- a/deployment/helmchart/values.yaml
+++ b/deployment/helmchart/values.yaml
@@ -59,7 +59,7 @@ dashboard:
   image:
     registry: open.greenhost.net:4567
     repository: stackspin/dashboard/dashboard
-    tag: 0-1-2
+    tag: 0-1-3
     ## Specify a imagePullPolicy
     ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
     ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -232,7 +232,7 @@ backend:
   image:
     registry: open.greenhost.net:4567
     repository: stackspin/dashboard-backend/dashboard-backend
-    tag: 0-1-2
+    tag: 0-1-3
     ## Specify a imagePullPolicy
     ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
     ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
@@ -249,6 +249,11 @@ backend:
 
   # URL to the Ory Kratos API
   kratosUrl: http://127.0.0.1:8000
+  oidc:
+    clientId: dashboard
+    clientSecret: ReplaceWithSecret
+    authorizationBaseUrl: https://sso.stackspin.example.org/oauth2/auth
+    tokenUrl: https://sso.stackspin.example.org/oauth2/token
 
   ## Kubernetes service configuration. For minikube, set this to NodePort, elsewhere use LoadBalancer or ClusterIP
   ##