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
2 changes: 1 addition & 1 deletion k8s-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# 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 @@ -22,7 +22,7 @@
&& chown root:root /usr/local/bin/sops

# renovate: datasource=github-releases depName=mikefarah/yq
ARG YQ_VERSION=4.44.2
ARG YQ_VERSION=4.45.4
ARG YQ_BINARY=yq_linux_amd64

RUN wget --progress=dot:giga https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_BINARY} -O /usr/bin/yq &&\
Expand Down Expand Up @@ -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