CircleCI-Public / helm-orb

A CircleCI Orb to simplify deployments to Kubernetes using Helm.
MIT License
11 stars 25 forks source link

Can't upgrade local chart #30

Closed slavaaaaaaaaaa closed 3 years ago

slavaaaaaaaaaa commented 3 years ago

Orb version

1.0.1

What happened

I have an upgrade step defined:

- helm/upgrade-helm-chart:
    chart: ./helm
    release-name: frontend
    helm-version: v3.4.1

The chart is local, checked into the repository:

$ ls -la helm/
total 12
...

In CircleCI, this errors out:

helm upgrade --install frontend ./helm "$@"
Error: path "./helm" not found

Exited with code exit status 1
CircleCI received exit code 1

Expected behavior

Chart should upgrade without error.

slavaaaaaaaaaa commented 3 years ago

Looks like I was missing a checkout step, apologies!