Temporal not starting in Kubernetes cluster

Dear community,

I am trying to deploy Temporal using ArgoCD into Kubernetes cluster but I am encountering an error.
Currently the issue is when a Frontend pod (and 3 more) is starting.
I would be very glad for any help to search for an issue!
Strange that env=Docker, I would expect some Kubernetes,
also according to the Deployment K8s file there is no docker.yaml at all… so the issue is quite confusing.
Error:

Defaulted container "temporal-frontend" out of: temporal-frontend, check-elasticsearch-index (init)
2024/07/01 09:25:14 Loading config; env=docker,zone=,configDir=config
2024/07/01 09:25:14 Loading config files=[config/docker.yaml]
Unable to load configuration: config file corrupted: yaml: line 30: found unknown escape character.

Here is a values.yaml

temporal:
  server:
    config:
      persistence:
        default:
          driver: "sql"
          sql:
            driver: "postgres12"
            host: "10.102.101.2"
            port: 5432
            database: "temporal"
            user: "temporal_app"
            existingSecret: "temporal-default-store"
            maxConns: 20
            maxConnLifetime: "1h"
        visibility:
          driver: "sql"
          sql:
            driver: "postgres12"
            host: "10.102.101.2"
            port: 5432
            database: "temporal_visibility"
            user: "temporal_visibility_app"
            existingSecret: "temporal-visibility-store"
            maxConns: 20
            maxConnLifetime: "1h"
    frontend:
      additionalEnv:
        - name: TEMPORAL_ADDRESS
          value: "temporal.super-genius.org"
    history:
      additionalEnv:
        - name: TEMPORAL_ADDRESS
          value: "temporal.super-genius.org"
    matching:
      additionalEnv:
        - name: TEMPORAL_ADDRESS
          value: "temporal.super-genius.org"
    worker:
      additionalEnv:
        - name: TEMPORAL_ADDRESS
          value: "temporal.super-genius.org"
  cassandra:
    enabled: false
  prometheus:
    enabled: false
  grafana:
    enabled: false
  postgresql:
    enabled: true
  elasticsearch:
    enabled: true
    replicas: 2
    minimumMasterNodes: 1
    host: "elasticsearch-master"
    external: true
    resources:
      requests:
        cpu: "500m"
        memory: "2Gi"
      limits:
        cpu: "500m"
        memory: "4Gi"
  schema:
    createDatabase:
      enabled: false
    setup:
      enabled: true
    update:
      enabled: false