Helm chart for installing PyPi?

2/20/2019

Been searching for days for a Helm chart to install a PyPi server (version irrelavant at this point) to a Kubernetes cluster. Finding practically nothing.

Any and all help would be appreciated. How does one use a helm chart to install a PyPi server to a Kubernetes cluster?

-- Greymarch
kubernetes
kubernetes-helm
pypi
python

2 Answers

6/4/2019

I also wanted to find a ready-made and test Helm chart for pypiserver.

Alas, couldn't find and so created it myself:
https://gitlab.com/softmill/package-management/pypiserver

It's really minimal at this stage, but it does the job.
Your mileage may vary.
May contain nuts.
PRs are welcome.

-- Ivan
Source: StackOverflow

2/20/2019

I didn't succeed in finding a Helm chart for Pypi either, but would it be an option to create a simple K8s deployment on your own using an existing docker image? You could have a look at this image and try to deploy it similar to this example

-- LostAvatar
Source: StackOverflow