Localstack deploy on EKS Cluster - s3 NoSuchBucket: The Specified bucket does not exist

Hello,
I am trying to deploy localstack on eks cluster, i am having issues access the endpoint point using ingress (nginx-aws-nlb)
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: test-localstack
namespace: “default”
labels:
helm.sh/chart: localstack-0.6.10
app.kubernetes.io/name: localstack
annotations:

spec:
rules:
- host: “chart-example.local”
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: test-localstack
port:
number: 4566

i get error even listiting buckets via ingress, it works fine when i do from aws-cli pod.
when i list aws s3 ls, i keep getting NoSuchBucket: The specified bucket does not exits.

Any help is much appreciated
Thanks
nas