Using the Bitnami WordPress helm chart, how can I connect Filezilla via FTP?

4/19/2021

I'm trying to connect to a Bitnami WordPress Helm release via FileZilla but I don't know how I would go about it.

I'm not sure where to get the ftp credentials, etc.

Is it even possible?

-- Nomnom
bitnami
ftp
kubernetes
kubernetes-helm
sftp

1 Answer

4/21/2021

The Bitnami WordPress container images does not have ftp/ssh enabled, so it is not possible to connect via FileZilla. However, as it is a kubernetes deployment, you can use kubectl exec -it name_of_the_wordpress_pod bash and get into the running pod and perform the actions you need. If you want to copy files, then use kubectl cp.

-- Rafael Rios Saavedra
Source: StackOverflow