# Temporal not starting in Kubernetes cluster

**URL:** https://community.temporal.io/t/temporal-not-starting-in-kubernetes-cluster/12719
**Category:** Server Deployment
**Tags:** frontend
**Created:** [July 2, 2024, 7:26pm UTC](https://community.temporal.io/t/temporal-not-starting-in-kubernetes-cluster/12719 "2024-07-02T19:26:40Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Washeeeq](https://avatars.discourse-cdn.com/v4/letter/w/0ea827/32.png) [@Washeeeq](https://community.temporal.io/u/Washeeeq)
#### Post date: [July 2, 2024, 7:26pm UTC](https://community.temporal.io/t/temporal-not-starting-in-kubernetes-cluster/12719/1 "2024-07-02T19:26:40Z")

</div>

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:

```auto
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

```auto
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

```
