Skip to content

Commit

Permalink
chore: update tool versions
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdavim committed May 19, 2024
1 parent d73b654 commit 8c1b962
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ version: 2
jobs:
build:
docker:
- image: docker:20.10.6-git
- image: docker:25.0.5-git
steps:
- checkout
- setup_remote_docker:
version: 20.10.6
version: default
- run:
name: build docker image
command: |
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- run:
name: build docker images and push them to dockerhub
command: |
helm_versions=( "v3.12.2" "v3.11.3" "v3.10.3" )
helm_versions=( "v3.15.0" "v3.14.4" "v3.13.3" )
TAG=$(git describe --abbrev=0 --tags)
docker login -u $DOCKER_USER -p $DOCKER_PASS
Expand Down
22 changes: 11 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG GO_VERSION="1.21.4"
ARG ALPINE_VERSION="3.18"
ARG GLOBAL_KUBE_VERSION="v1.24.10"
ARG GLOBAL_HELM_VERSION="v3.11.0"
ARG GLOBAL_HELM_DIFF_VERSION="v3.6.0"
ARG GLOBAL_HELM_GCS_VERSION="0.3.21"
ARG GLOBAL_HELM_S3_VERSION="v0.10.0"
ARG GLOBAL_HELM_SECRETS_VERSION="v3.13.0"
ARG GLOBAL_SOPS_VERSION="v3.7.3"
ARG GO_VERSION="1.22.3"
ARG ALPINE_VERSION="3.19"
ARG GLOBAL_KUBE_VERSION="v1.29.2"
ARG GLOBAL_HELM_VERSION="v3.15.0"
ARG GLOBAL_HELM_DIFF_VERSION="v3.9.6"
ARG GLOBAL_HELM_GCS_VERSION="0.4.2"
ARG GLOBAL_HELM_S3_VERSION="v0.16.0"
ARG GLOBAL_HELM_SECRETS_VERSION="v4.6.0"
ARG GLOBAL_SOPS_VERSION="v3.8.1"

### Helm Installer ###
FROM alpine:${ALPINE_VERSION} as helm-installer
Expand All @@ -28,8 +28,8 @@ ENV HELM_DIFF_THREE_WAY_MERGE=true

RUN apk add --update --no-cache ca-certificates git openssh-client openssl ruby curl wget tar gzip make bash

ADD https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux /usr/local/bin/sops
RUN chmod +x /usr/local/bin/sops
RUN curl -L https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64 -o /usr/local/bin/sops \
&& chmod +x /usr/local/bin/sops

RUN curl --retry 5 -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl
RUN chmod +x /usr/local/bin/kubectl
Expand Down

0 comments on commit 8c1b962

Please sign in to comment.