do you have any error messages/stack traces you ca...
# ask-the-community
y
do you have any error messages/stack traces you can paste?
can you just run a pod, ssh into it, and test out your psql connection?
just remove flyte from the equation for a second.
you can try with our debug image
Copy code
apiVersion: v1
kind: Pod
metadata:
  name: portalpod
  namespace: flyte
spec:
  containers:
  - args:
    - sleep
    - infinity
    image: <http://ghcr.io/flyteorg/flyteportal:v0.42.0|ghcr.io/flyteorg/flyteportal:v0.42.0>
    imagePullPolicy: Always
    name: portalcontainer
    resources:
      limits:
        cpu: 500m
        memory: 500Mi
      requests:
        cpu: 500m
        memory: 500Mi
    env:
    - name: HOST
      valueFrom:
        fieldRef:
          fieldPath: status.hostIP
  restartPolicy: Never
  serviceAccount: default
just kick off that pod, ssh into it and test with psql
y
Thanks for the reply ...yes this error just got solved . now I have got new error that loadbalancer pods are not getting started...
eksctl is not creating it
with error
y
what was the issue with the database access?
let’s continue the lb discussion in the other thread
155 Views