Skip to content

Commit

Permalink
k8s-tools: fix SHA-1 manually
Browse files Browse the repository at this point in the history
  • Loading branch information
o-orand committed May 7, 2024
1 parent 23c6137 commit e903f82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bosh-cli-v2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN wget -nv https://github.com/cloudfoundry/credhub-cli/releases/download/${CRE

# renovate: datasource=github-releases depName=mikefarah/yq
ENV YQ_VERSION 4.43.1
ENV YQ_SUM 0d6aaf1cf44a8d18fbc7ed0ef14f735a8df8d2e314c4cc0f0242d35c0a440c95
ENV YQ_SUM cfbbb9ba72c9402ef4ab9d8f843439693dfb380927921740e51706d90869c7e1
ENV YQ_FILENAME yq_linux_amd64
ENV YQ_REPO github.com/mikefarah/yq
RUN wget -nv https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_FILENAME} \
Expand Down
8 changes: 4 additions & 4 deletions k8s-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /usr/local/bin

# renovate: datasource=github-releases depName=k14s/ytt
ENV YTT_VERSION "0.49.0"
ENV YTT_SUM 2b4ca5365c343bb1e903e8e845d9750b5d2776b3a99483912f27da6e95c480c0
ENV YTT_SUM 357ec754446b1eda29dd529e088f617e85809726c686598ab03cfc1c79f43b56
ENV YTT_FILENAME ytt-linux-amd64
ADD https://github.com/k14s/ytt/releases/download/v${YTT_VERSION}/${YTT_FILENAME} .
RUN echo "Computed sha256sum: $(sha256sum ${YTT_FILENAME})" \
Expand Down Expand Up @@ -42,7 +42,7 @@ RUN echo "Computed sha256sum: $(sha256sum ${KUSTOMIZE_FILENAME})" \

# renovate: datasource=github-releases depName=k14s/kapp
ENV KAPP_VERSION 0.62.0
ENV KAPP_SUM 6986369c06e89bcec366b2cc18f81634fcd95e2b52c6c6f7ee46b497ade25f7d
ENV KAPP_SUM 6eb24733364213967c434ca77a7b3516f80c962e1da1ba57ce4c495556cf1585
ENV KAPP_FILENAME kapp-linux-amd64
ADD https://github.com/k14s/kapp/releases/download/v${KAPP_VERSION}/kapp-linux-amd64 .
RUN echo "Computed sha256sum: $(sha256sum ${KAPP_FILENAME})" \
Expand Down Expand Up @@ -70,7 +70,7 @@ RUN echo "Computed sha256sum: $(sha256sum ${HELM_FILENAME})" \

# renovate: datasource=github-releases depName=kudobuilder/kuttl
ENV KUTTL_VERSION 0.16.0
ENV KUTTL_PLUGIN_SUM f6edcf22e238fc71b5aa389ade37a9efce596017c90f6994141c45215ba0f862
ENV KUTTL_PLUGIN_SUM 2ff268ccacee48154f4e521d313c625b6105c916ae6a6c7a9041b20bb2b4b6b5
ENV KUTTL_PLUGIN_FILENAME kubectl-kuttl_${KUTTL_VERSION}_linux_x86_64
ADD https://github.com/kudobuilder/kuttl/releases/download/v${KUTTL_VERSION}/${KUTTL_PLUGIN_FILENAME} .
RUN echo "Computed ${KUTTL_PLUGIN_FILENAME} sha256sum: $(sha256sum ${KUTTL_PLUGIN_FILENAME})" \
Expand All @@ -80,7 +80,7 @@ RUN echo "Computed ${KUTTL_PLUGIN_FILENAME} sha256sum: $(sha256sum ${KUTTL_PLUGI

# renovate: datasource=github-releases depName=mikefarah/yq
ENV YQ_VERSION 4.43.1
ENV YQ_SUM 0d6aaf1cf44a8d18fbc7ed0ef14f735a8df8d2e314c4cc0f0242d35c0a440c95
ENV YQ_SUM cfbbb9ba72c9402ef4ab9d8f843439693dfb380927921740e51706d90869c7e1
ENV YQ_FILENAME yq_linux_amd64
ADD https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_FILENAME} .
RUN echo "Computed ${YQ_FILENAME} sha256sum: $(sha256sum ${YQ_FILENAME})" \
Expand Down

0 comments on commit e903f82

Please sign in to comment.