forked from kubernetes-csi/external-attacher
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating csi-attacher images to be consistent with ART
Reconciling with https://github.com/openshift/ocp-build-data/tree/3dea8426481b269476342fc0a631273f32ce691e/images/csi-attacher.yml
- Loading branch information
AOS Automation Release Team
committed
Sep 16, 2021
1 parent
0a1737c
commit 59ef9e3
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: golang-1.16 | ||
tag: rhel-8-release-golang-1.16-openshift-4.10 |
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,8 +1,8 @@ | ||
FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.16-openshift-4.9 AS builder | ||
FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.16-openshift-4.10 AS builder | ||
WORKDIR /go/src/github.com/kubernetes-csi/external-attacher | ||
COPY . . | ||
RUN make build | ||
|
||
FROM registry.ci.openshift.org/ocp/4.9:base | ||
FROM registry.ci.openshift.org/ocp/4.10:base | ||
COPY --from=builder /go/src/github.com/kubernetes-csi/external-attacher/bin/csi-attacher /usr/bin/ | ||
ENTRYPOINT ["/usr/bin/csi-attacher"] |