From 4856d08a5b065a004051e6fc680186b6ea36a8b9 Mon Sep 17 00:00:00 2001
From: OZGCloud <ozgcloud@mgm-tp.com>
Date: Mon, 9 Dec 2024 11:07:06 +0100
Subject: [PATCH] OZG-7092 clean up comments

---
 .../src/main/helm/templates/deployment.yaml           | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/token-checker-server/src/main/helm/templates/deployment.yaml b/token-checker-server/src/main/helm/templates/deployment.yaml
index 9c7658d..7b5607e 100644
--- a/token-checker-server/src/main/helm/templates/deployment.yaml
+++ b/token-checker-server/src/main/helm/templates/deployment.yaml
@@ -48,7 +48,7 @@ spec:
         component: {{ .Release.Name }}
     spec:
       {{- if (.Values.serviceAccount).create }}
-      serviceAccountName: {{ include "app.serviceAccountName" . }} # TODO: Service Account muss noch erstellt werden
+      serviceAccountName: {{ include "app.serviceAccountName" . }}
       {{- end }}
       topologySpreadConstraints:
       - maxSkew: 1
@@ -59,8 +59,6 @@ spec:
             app.kubernetes.io/name: {{ .Release.Name }}
       containers:
       - env:
-          # - name: SERVICE_BINDING_ROOT
-          #   value: "/bindings"
           - name: spring_profiles_active
             value: {{ include "app.envSpringProfiles" . }}
 
@@ -134,10 +132,6 @@ spec:
         terminationMessagePolicy: File
         tty: true
         volumeMounts:
-          # - name: bindings
-          #   mountPath: "/bindings/ca-certificates/type"
-          #   subPath: type
-          #   readOnly: true
           - name: saml-mount
             mountPath: "/keystore/enc.crt"
             subPath: enc.crt
@@ -152,9 +146,6 @@ spec:
             readOnly: true
 
       volumes:
-        # - name: bindings
-        #   configMap:
-        #     name: token-checker-server-bindings-type
         - name: saml-mount
           secret:
             secretName: {{ required ".Values.samlRegistrationSecretName must be set" .Values.samlRegistrationSecretName }}
-- 
GitLab