Skip to content
Merged
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
6 changes: 3 additions & 3 deletions k8s-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
# docker run --rm -it test /bin/bash
###
FROM cloudkats/k8s-test-tools:v1.29.3 as tools
FROM cloudkats/helm:3.14.3 as helm
FROM alpine:3.20 as downloader
FROM cloudkats/helm:3.15.1 as helm
FROM alpine:3.22 as downloader

# hadolint ignore=DL3018,DL3019
RUN apk update && apk add --no-cache ca-certificates \
git openssl wget bash
RUN update-ca-certificates 2>/dev/null || true

Check failure on line 14 in k8s-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / build-on-merge-request

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

# renovate: datasource=github-releases depName=mozilla/sops
ARG SOPS_VERSION=3.10.0
Expand All @@ -28,7 +28,7 @@
RUN wget --progress=dot:giga https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_BINARY} -O /usr/bin/yq &&\
chmod +x /usr/bin/yq

FROM alpine:3.20
FROM alpine:3.22

LABEL org.opencontainers.image.authors="cloudkats@gmail.com" \
org.opencontainers.image.vendor="https://github.com/cloudkats" \
Expand All @@ -52,9 +52,9 @@
&& apk add -Uuv --no-cache --update python3 py3-pip \
&& pip3 install --no-cache-dir --upgrade pip

RUN helm plugin install https://github.com/futuresimple/helm-secrets

Check failure on line 55 in k8s-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / build-on-merge-request

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

RUN ln -sfn /opt/bats/bin/bats /usr/sbin/bats \

Check failure on line 57 in k8s-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / build-on-merge-request

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.
&& ln -sfn /usr/local/bin/kubectl /usr/sbin/kubectl \
&& ln -sfn /usr/local/bin/helm /usr/sbin/helm \
&& ln -sfn /usr/local/bin/sops /usr/sbin/sops \
Expand Down
Loading