https://pulumi.com logo
r

rhythmic-hair-33677

12/06/2019, 8:35 PM
Is it possible to manage external helm repositories? Or is it expected that the chart be installed and updated outside the pulumi program? For instance, I have this shell script:
Copy code
# Add the Jetstack Helm repository
helm repo add jetstack <https://charts.jetstack.io>

# Update your local Helm chart repository cache
helm repo update

# Install the cert-manager Helm chart
helm install \
  --name cert-manager \
  --namespace cert-manager \
  --version v0.11.0 \
  jetstack/cert-manager
g

gorgeous-egg-16927

12/06/2019, 8:44 PM
You can manage the charts themselves using Pulumi, but the repo add/update is local to your machine for now. There are a number of examples on the pulumi/examples GitHub repo
2 Views