Skip to content

Commit

Permalink
Match Argo CD v2.3 tool versions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbrunet committed Mar 8, 2022
1 parent a5942d8 commit cb25ba7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@ 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.9.0] - 2022-03-07
### Changed
- Use ghcr.io as container registry
- Upgrade Argo CD to v2.3.0
- Upgrade Helm to v3.8.0
- Upgrade Jsonnet to v0.18.0
- Upgrade Kustomize to v4.4.1
- Upgrade Promtool to v2.33.4

### Fixed
- Build and push image with Github Actions
Expand Down Expand Up @@ -76,7 +83,8 @@ 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.8.1...HEAD
[Unreleased]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.9.0...HEAD
[v0.9.0]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.8.1...v0.9.0
[v0.8.1]: https://github.com/PaytmLabs/docker-kubernetes-ci/compare/v0.8.0...v0.8.1
[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
Expand Down
13 changes: 6 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM golang:1.14-alpine AS go-builder

# https://github.com/google/go-jsonnet/pull/488
ARG JSONNET_VERSION=0.17.1-0.20210701111051-51daeb3229e4
ARG JSONNET_VERSION=0.18.0

ENV GO111MODULE='on'

Expand All @@ -14,14 +13,14 @@ RUN apk add --no-cache git \

FROM alpine:3

ARG ARGOCD_VERSION=2.2.1
ARG ARGOCD_VERSION=2.3.0
ARG HELM2_VERSION=2.17.0
ARG HELM_VERSION=3.7.1
ARG HELM_VERSION=3.8.0
ARG JB_VERSION=0.4.0
ARG JSONNET_VERSION=0.17.0
ARG JSONNET_VERSION=0.18.0
ARG KUBEVAL_VERSION=0.16.1
ARG KUSTOMIZE_VERSION=4.2.0
ARG PROMETHEUS_VERSION=2.28.0
ARG KUSTOMIZE_VERSION=4.4.1
ARG PROMETHEUS_VERSION=2.33.4

LABEL \
org.opencontainers.image.source="https://github.com/PaytmLabs/docker-kubernetes-ci" \
Expand Down
12 changes: 6 additions & 6 deletions test.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail

readonly ARGOCD_VERSION=2.2.1
readonly ARGOCD_VERSION=2.3.0
readonly HELM2_VERSION=2.17.0
readonly HELM_VERSION=3.7.1
readonly HELM_VERSION=3.8.0
readonly JB_VERSION=0.4.0
readonly JSONNET_VERSION=0.17.0
readonly KUSTOMIZE_VERSION=4.2.0
readonly JSONNET_VERSION=0.18.0
readonly KUSTOMIZE_VERSION=4.4.1
readonly KUBEVAL_VERSION=0.16.1
readonly PROMETHEUS_VERSION=2.28.0
readonly PROMETHEUS_VERSION=2.33.4

printf ">>> Checking bash is installed...\n"
if ! bash --help >/dev/null; then
Expand Down Expand Up @@ -47,7 +47,7 @@ printf ">>> Checking jb version is %s...\n" "${JB_VERSION}"
[[ "$(jb --version 2>&1)" == "v${JB_VERSION}" ]]

printf ">>> Checking jsonnet version is %s...\n" "${JSONNET_VERSION}"
[[ "$(jsonnet --version)" == "Jsonnet commandline interpreter v${JSONNET_VERSION}" ]]
[[ "$(jsonnet --version)" == "Jsonnet commandline interpreter (Go implementation) v${JSONNET_VERSION}" ]]

printf ">>> Checking jsonnetfmt version is %s...\n" "${JSONNET_VERSION}"
[[ "$(jsonnetfmt --version)" == "Jsonnet reformatter v${JSONNET_VERSION}" ]]
Expand Down

0 comments on commit cb25ba7

Please sign in to comment.