Skip to content

Commit

Permalink
Match Argo CD v2.2 tool versions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbrunet committed Dec 18, 2021
1 parent 6cb062b commit 0d6dd0b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [v0.8.0] - 2021-12-17
### Changed
- Upgrade Helm to v3.7.1
- Upgrade Argo CD to v2.2.1

## [v0.7.0] - 2021-08-26
### Changed
- Replace `argocd-util` by `argocd`
Expand Down Expand Up @@ -61,8 +66,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial commit

[Unreleased]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.7.0...HEAD
[v0.7.0]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.5.0...v0.7.0
[Unreleased]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.8.0...HEAD
[v0.8.0]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.7.0...v0.8.0
[v0.7.0]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.6.0...v0.7.0
[v0.6.0]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.5.0...v0.6.0
[v0.5.0]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.4.0...v0.5.0
[v0.4.0]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.3.2...v0.4.0
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN apk add --no-cache git \

FROM alpine:3

ARG ARGOCD_VERSION=2.1.1
ARG ARGOCD_VERSION=2.2.1
ARG HELM2_VERSION=2.17.0
ARG HELM_VERSION=3.6.0
ARG HELM_VERSION=3.7.1
ARG JB_VERSION=0.4.0
ARG JSONNET_VERSION=0.17.0
ARG KUBEVAL_VERSION=0.16.1
Expand Down
10 changes: 8 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
#!/usr/bin/env bash
set -euo pipefail

readonly ARGOCD_VERSION=2.1.1
readonly ARGOCD_VERSION=2.2.1
readonly HELM2_VERSION=2.17.0
readonly HELM_VERSION=3.6.0
readonly HELM_VERSION=3.7.1
readonly JB_VERSION=0.4.0
readonly JSONNET_VERSION=0.17.0
readonly KUSTOMIZE_VERSION=4.2.0
readonly KUBEVAL_VERSION=0.16.1
readonly PROMETHEUS_VERSION=2.28.0

printf ">>> Checking bash is installed...\n"
if ! bash --help >/dev/null; then
echo ">>> bash not installed properly."
exit 1
fi

printf ">>> Checking git is installed...\n"
if ! git --help >/dev/null; then
echo ">>> git not installed properly."
Expand Down

0 comments on commit 0d6dd0b

Please sign in to comment.