forked from kubernetes-csi/external-provisioner
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UPSTREAM: <carry>: Add OpenShift files
And remove .github
- Loading branch information
Showing
12 changed files
with
38 additions
and
163 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
build_root_image: | ||
name: release | ||
namespace: openshift | ||
tag: rhel-9-release-golang-1.22-openshift-4.18 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# References: | ||
# https://docs.snyk.io/scan-applications/snyk-code/using-snyk-code-from-the-cli/excluding-directories-and-files-from-the-snyk-code-cli-test | ||
# https://docs.snyk.io/snyk-cli/commands/ignore | ||
exclude: | ||
global: | ||
- vendor/** | ||
- release-tools/** |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM registry.svc.ci.openshift.org/openshift/release:golang-1.15 AS builder | ||
WORKDIR /go/src/github.com/kubernetes-csi/external-provisioner | ||
COPY . . | ||
RUN make build | ||
|
||
FROM registry.svc.ci.openshift.org/openshift/origin-v4.7:base | ||
COPY --from=builder /go/src/github.com/kubernetes-csi/external-provisioner/bin/csi-provisioner /usr/bin/ | ||
ENTRYPOINT ["/usr/bin/csi-provisioner"] |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 AS builder | ||
WORKDIR /go/src/github.com/kubernetes-csi/external-provisioner | ||
COPY . . | ||
RUN make build | ||
|
||
FROM registry.ci.openshift.org/ocp/4.18:base-rhel9 | ||
COPY --from=builder /go/src/github.com/kubernetes-csi/external-provisioner/bin/csi-provisioner /usr/bin/ | ||
ENTRYPOINT ["/usr/bin/csi-provisioner"] |
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,11 +1,5 @@ | ||
# See the OWNERS docs at https://go.k8s.io/owners | ||
|
||
approvers: | ||
- kubernetes-csi-approvers | ||
- pohly | ||
|
||
reviewers: | ||
- kubernetes-csi-reviewers | ||
|
||
# emeritus_reviewers: | ||
# - davidz627 | ||
- openshift-storage-maintainers | ||
component: "Storage / Kubernetes External Components" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
aliases: | ||
openshift-storage-maintainers: | ||
- jsafrane | ||
- tsmetana | ||
- gnufied | ||
- bertinatto | ||
- dobsonj | ||
- RomanBednar | ||
- mpatlasov |