https://flyte.org logo
#ask-the-community
Title
# ask-the-community
y

Yee

10/13/2022, 5:22 PM
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

Yash Panchwatkar

10/13/2022, 5:27 PM
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

Yee

10/13/2022, 5:30 PM
what was the issue with the database access?
let’s continue the lb discussion in the other thread