v0.4.16
Changes
- [fix] Fix gitea repo bootstrap failure #495
- [chore] updated image to
1.20.3
#477 - [chore] updated golangci-lint from
v1.50.1
tov1.53.1
#479 - [chore] Bump github.com/spf13/viper from
1.10.1
to1.16.0
#475 - [chore] Bump go.mongodb.org/mongo-driver from
1.1.2
to1.5.1
#433 - [chore] Bump github.com/xanzy/go-gitlab from
0.71.0
to0.86.0
#487 - [chore] Bump k8s.io/* from
0.24.2
to0.24.15
#489 - [chore] Bump github.com/argoproj/argo-cd/v2 from
2.5.9
to2.8.3
#488 - [chore] Bump github.com/go-git/go-billy/v5
5.3.1
to5.4.1
#488 - [chore] Bump github.com/go-git/go-git/v5
5.4.2
to5.7.0
#488 - [chore] Bump github.com/ktrysmt/go-bitbucket
0.9.55
to0.9.60
#488 - [chore] Bump github.com/sirupsen/logrus
1.8.1
to1.9.3
#488 - [chore] Bump github.com/spf13/cobra
1.5.0
to1.7.0
#488 - [chore] Bump sigs.k8s.io/kustomize/api
0.11.4
to0.11.5
#488 - [chore] Bump sigs.k8s.io/kustomize/kyaml
0.13.6
to0.13.7
#488 - [chore] Bump github.com/go-git/go-billy/v5 from
5.4.1
to5.5.0
#497 - [chore] Bump pygments from
2.7.4
to2.15.0
in /docs #493 - [docs] add missing requirement in getting started docs #459
- [docs] fix a typo #460
- [docs] Quoting variable expansions #391
Contributors:
- Wim Fournier (@hsmade)
- Noam Gal (@noam-codefresh)
- gamerslouis (@gamerslouis)
- TomyLobo (@TomyLobo)
Installation:
To use the argocd-autopilot
CLI you need to download the latest binary from the git release page.
Using brew:
# install
brew install argocd-autopilot
# check the installation
argocd-autopilot version
Using scoop:
# update
scoop update
# install
scoop install argocd-autopilot
# check the installation
argocd-autopilot version
Using chocolatey:
# install
choco install argocd-autopilot
# check the installation
argocd-autopilot version
Linux and WSL (using curl):
# download and extract the binary
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.15/argocd-autopilot-linux-amd64.tar.gz | tar zx
# move the binary to your $PATH
mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot
# check the installation
argocd-autopilot version
Mac (using curl):
# download and extract the binary
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.15/argocd-autopilot-darwin-amd64.tar.gz | tar zx
# move the binary to your $PATH
mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot
# check the installation
argocd-autopilot version
Docker:
When using the Docker image, you have to provide the .kube
and .gitconfig
directories as mounts to the running container:
docker run \
-v ~/.kube:/home/autopilot/.kube \
-v ~/.gitconfig:/home/autopilot/.gitconfig \
-it quay.io/argoprojlabs/argocd-autopilot:v0.4.15 <cmd> <flags>