Skip to content

Commit

Permalink
chore(deps): update dependency homebrew/openshift-cli to v4.16.0 (#833)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency homebrew/openshift-cli to v4.16.0

* tweaking oc client version

* Update Dockerfile

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gareth Healy <[email protected]>
  • Loading branch information
renovate[bot] and garethahealy authored Jul 10, 2024
1 parent d08b3ea commit cf3512e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions jenkins-agents/jenkins-agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
FROM registry.access.redhat.com/ubi9/ubi:9.4-1123.1719560047@sha256:081c96d1b1c7cd1855722d01f1ca53360510443737b1eb33284c6c4c330e537c AS builder

# renovate: datasource=repology depName=homebrew/openshift-cli
ARG OC_VERSION=4.15.12
RUN curl -L "https://mirror.openshift.com/pub/openshift-v4/clients/ocp/${OC_VERSION}/openshift-client-linux.tar.gz" -o /tmp/openshift-client-linux.tar.gz && \
ARG OC_VERSION=4.16.0
RUN curl -L "https://mirror.openshift.com/pub/openshift-v4/clients/ocp/${OC_VERSION}/openshift-client-linux-amd64-rhel8.tar.gz" -o /tmp/openshift-client-linux.tar.gz && \
tar --no-same-owner -xzf /tmp/openshift-client-linux.tar.gz && \
mv oc kubectl /usr/local/bin && \
oc version --client && \
Expand Down Expand Up @@ -39,4 +39,4 @@ COPY --from=builder /usr/local/bin/kubectl /usr/local/bin/kubectl
USER 1001

RUN oc version --client && \
kubectl version --client
kubectl version --client
2 changes: 1 addition & 1 deletion tool-box/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM registry.access.redhat.com/ubi9/ubi:9.4-1123.1719560047@sha256:081c96d1b1c7
SHELL ["/bin/bash", "-c"]

# renovate: datasource=repology depName=homebrew/openshift-cli
ARG OC_VERSION=4.15.12
ARG OC_VERSION=4.16.0
# renovate: datasource=github-releases depName=openshift/rosa
ARG ROSA_VERSION=v1.2.41
# renovate: datasource=github-releases depName=redhat-developer/odo
Expand Down
4 changes: 2 additions & 2 deletions utilities/ubi8-bats/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ FROM registry.access.redhat.com/ubi8/ubi:8.10-1020@sha256:44d75007b39e0e1bbf1bcf
SHELL ["/bin/bash", "-c"]

# renovate: datasource=repology depName=homebrew/openshift-cli
ARG OC_VERSION=4.15.12
ARG OC_VERSION=4.16.0
# renovate: datasource=github-releases depName=stedolan/jq
ARG JQ_VERSION=1.6
# renovate: datasource=github-releases depName=helm/helm
ARG HELM_VERSION=v3.15.2
# renovate: datasource=github-releases depName=mikefarah/yq
ARG YQ_VERSION=v4.44.2

RUN curl -L "https://mirror.openshift.com/pub/openshift-v4/clients/ocp/${OC_VERSION}/openshift-client-linux.tar.gz" -o /tmp/openshift-client-linux.tar.gz && \
RUN curl -L "https://mirror.openshift.com/pub/openshift-v4/clients/ocp/${OC_VERSION}/openshift-client-linux-amd64-rhel8.tar.gz" -o /tmp/openshift-client-linux.tar.gz && \
tar --no-same-owner -xzf /tmp/openshift-client-linux.tar.gz && \
mv oc kubectl /usr/local/bin && \
oc version --client && \
Expand Down

0 comments on commit cf3512e

Please sign in to comment.