├── Dockerfile ├── README.md ├── etc ├── sftp.d │ └── gcs-mounts.sh └── sftp │ └── users.conf ├── secrets └── gcloud-key.json └── sftp.yaml /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeghen/kubernetes-gcs-sftp/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeghen/kubernetes-gcs-sftp/HEAD/README.md -------------------------------------------------------------------------------- /etc/sftp.d/gcs-mounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeghen/kubernetes-gcs-sftp/HEAD/etc/sftp.d/gcs-mounts.sh -------------------------------------------------------------------------------- /etc/sftp/users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeghen/kubernetes-gcs-sftp/HEAD/etc/sftp/users.conf -------------------------------------------------------------------------------- /secrets/gcloud-key.json: -------------------------------------------------------------------------------- 1 | # Key goes here 2 | -------------------------------------------------------------------------------- /sftp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeghen/kubernetes-gcs-sftp/HEAD/sftp.yaml --------------------------------------------------------------------------------