Hi, I am trying to install Kong using helm on the EKS cluster. I am using Postgres RDS as DB.
Below is the content of values.yaml file
env:
database: "postgres"
pg_host: aws-kong.123456789.a-aws-region.rds.amazonaws.com
pg_port: 5432
pg_user: dummyadmin
pg_password: dummypassword
pg_database: kongdb
nginx_worker_processes: "1"
proxy_access_log: /dev/stdout
admin_access_log: /dev/stdout
admin_gui_access_log: /dev/stdout
portal_api_access_log: /dev/stdout
proxy_error_log: /dev/stderr
admin_error_log: /dev/stderr
admin_gui_error_log: /dev/stderr
portal_api_error_log: /dev/stderr
prefix: /kong_prefix/
admin:
annotations: {}
# service.beta.kubernetes.io/aws-load-balancer-proxy-protocol: "*"
http:
enabled: true
servicePort: 8001
containerPort: 8001
parameters: []
tls:
enabled: true
servicePort: 8444
containerPort: 8444
Using below helm command to install Kong
helm upgrade -i kong -n kong -f values.yaml kong/kong --set ingressController.installCRDs=false;
Once the above helm command is executed, the pods are not coming to running state, below is status, it is stuck to initialize.
NAME READY STATUS RESTARTS AGE
kong-kong-6447659bbf-9jl9d 0/2 Init:0/1 0 7m59s
kong-kong-init-migrations-87r74 0/1 Init:0/1 0 7m59s