charts icon indicating copy to clipboard operation
charts copied to clipboard

Pod state is CrashLoopBack with error code 139

Open danielyaba opened this issue 1 year ago • 0 comments

Hi,

I'm trying to deploy the backstage chart on my local K3D cLuster with the following values:

  backstage:
    extraEnvVarsSecrets:
      - backstage-secrets

    extraEnvVars:
      - name: POSTGRES_HOST
        value: backstage-rw
      - name: POSTGRES_PORT
        value: "5432"

    appConfig:
      app:
        title: My Backstage App
        baseUrl: http://localhost:7007
        
      organization: 
        name: daniel-yaba

      backend:
        baseUrl: http://localhost:7007
        listen:
          host: localhost
          port: 7007
        database:
          client: pg
          connection:
            host: ${POSTGRES_HOST}
            port: ${POSTGRES_PORT}
            user: ${POSTGRES_USER}
            password: ${POSTGRES_PASSWORD}

      integrations:
        github:
          - host: github.com
            token: ${GITHUB_TOKEN}
      
      auth:
        providers:
          guest: {}

      scaffolder:

      techdocs:
        builder: 'local'
      generator:
        runIn: 'local'
      publisher:
        type: 'local'

      catalog:
        locations: []

The Backstage pod is stuck on CrashLoopBack with no option to watch logs cause the container is failing right away Exit status code: 139

danielyaba avatar Jul 14 '24 11:07 danielyaba