Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump kubectl to 1.30.1 #453

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:latest
ARG VERSION_HELM=3.11.0
ARG VERSION_SOPS=3.8.1
ARG VERSION_VALS=0.37.1
ARG VERSION_KUBECTL=0.21.0
ARG VERSION_KUBECTL=1.30.1

SHELL ["/bin/sh", "-exc"]

Expand All @@ -21,4 +21,3 @@ COPY scripts/ /home/user/.local/share/helm/plugins/helm-plugins/scripts/
COPY plugin.yaml /home/user/.local/share/helm/plugins/helm-plugins/

USER user

10 changes: 5 additions & 5 deletions docs/ArgoCD Integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ spec:
# Example Method 3: (Assumptions: Pre-seeded gpg agent is running or kube service account has permission to decrypt using kms key, secrets.yaml is in the root folder)
- secrets://secrets.yaml

# fileParameters (--set-file) are supported, too.
# fileParameters (--set-file) are supported, too.
fileParameters:
- name: config
path: secrets://secrets.yaml
Expand Down Expand Up @@ -150,7 +150,7 @@ FROM argoproj/argocd:$ARGOCD_VERSION
ARG SOPS_VERSION="3.8.1"
ARG VALS_VERSION="0.37.1"
ARG HELM_SECRETS_VERSION="4.6.0"
ARG KUBECTL_VERSION="1.26.1"
ARG KUBECTL_VERSION="1.30.1"
# vals or sops
ENV HELM_SECRETS_BACKEND="vals" \
HELM_SECRETS_HELM_PATH=/usr/local/bin/helm \
Expand Down Expand Up @@ -259,7 +259,7 @@ repoServer:
- name: HELM_SECRETS_VERSION
value: "4.6.0"
- name: KUBECTL_VERSION
value: "1.26.1"
value: "1.30.1"
- name: VALS_VERSION
value: "0.37.1"
- name: SOPS_VERSION
Expand All @@ -268,15 +268,15 @@ repoServer:
- |
mkdir -p /custom-tools/helm-plugins
wget -qO- https://github.com/jkroepke/helm-secrets/releases/download/v${HELM_SECRETS_VERSION}/helm-secrets.tar.gz | tar -C /custom-tools/helm-plugins -xzf-;

wget -qO /custom-tools/curl https://github.com/moparisthebest/static-curl/releases/latest/download/curl-amd64
wget -qO /custom-tools/sops https://github.com/getsops/sops/releases/download/v${SOPS_VERSION}/sops-v${SOPS_VERSION}.linux.amd64
wget -qO /custom-tools/kubectl https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl

wget -qO- https://github.com/helmfile/vals/releases/download/v${VALS_VERSION}/vals_${VALS_VERSION}_linux_amd64.tar.gz | tar -xzf- -C /custom-tools/ vals;

cp /custom-tools/helm-plugins/helm-secrets/scripts/wrapper/helm.sh /custom-tools/helm

chmod +x /custom-tools/*
volumeMounts:
- mountPath: /custom-tools
Expand Down
Loading