Skip to content

Commit

Permalink
fixing yq in toolbox (#743)
Browse files Browse the repository at this point in the history
* 🦟 ADD - yq library to the toolbox 🦟

* 🦉 ADD - yq library to the toolbox 🦉

* 🐚 FIX - runable version copy binary over nonsense 🐚

* Revert "dsiabled quay for toolbox"

This reverts commit 6b00db9.

* fixed incorrect path watch

* updated image name to match quay

---------

Co-authored-by: Gareth Healy <[email protected]>
  • Loading branch information
springdo and garethahealy authored Mar 28, 2024
1 parent 3f14a5c commit d110c3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tool-box/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN curl -L "https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/j
chmod +x /usr/local/bin/jq && \
jq --version

RUN curl -sLo /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_amd64 && \
RUN curl -L "https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_amd64" -o /usr/local/bin/yq && \
chmod +x /usr/local/bin/yq && \
yq --version

Expand Down Expand Up @@ -68,6 +68,7 @@ COPY --from=builder /usr/local/bin/kubectl /usr/local/bin/kubectl
COPY --from=builder /usr/local/bin/rosa /usr/local/bin/rosa
COPY --from=builder /usr/local/bin/odo /usr/local/bin/odo
COPY --from=builder /usr/local/bin/jq /usr/local/bin/jq
COPY --from=builder /usr/local/bin/yq /usr/local/bin/yq
COPY --from=builder /usr/local/bin/helm /usr/local/bin/helm
COPY --from=builder /usr/local/bin/tkn /usr/local/bin/tkn

Expand Down
2 changes: 1 addition & 1 deletion tool-box/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"v1.1.0"}
{"version":"v1.1.1"}

0 comments on commit d110c3d

Please sign in to comment.