forked from kubernetes/autoscaler
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UPSTREAM: <carry>: Updating atomic-openshift-cluster-autoscaler-conta…
…iner image to be consistent with ART for 4.18 Reconciling with https://github.com/openshift/ocp-build-data/tree/1c7e6e27058c4590e342ecabe8bc96feeb68e7e5/images/atomic-openshift-cluster-autoscaler.yml
- Loading branch information
AOS Automation Release Team
authored and
cloud-team-rebase-bot
committed
Oct 14, 2024
1 parent
839db11
commit e659487
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
build_root_image: | ||
name: release | ||
namespace: openshift | ||
tag: rhel-9-release-golang-1.22-openshift-4.17 | ||
tag: rhel-9-release-golang-1.22-openshift-4.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17 AS builder | ||
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 AS builder | ||
WORKDIR /go/src/k8s.io/autoscaler | ||
COPY . . | ||
WORKDIR /go/src/k8s.io/autoscaler/cluster-autoscaler | ||
RUN go build --tags clusterapi -o ./cluster-autoscaler . | ||
|
||
FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-openshift-4.17 | ||
FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-openshift-4.18 | ||
COPY --from=builder /go/src/k8s.io/autoscaler/cluster-autoscaler/cluster-autoscaler /usr/bin/ | ||
CMD /usr/bin/cluster-autoscaler | ||
LABEL summary="Cluster Autoscaler for OpenShift and Kubernetes" |