Skip to content

Commit a045ddc

Browse files
mpatlasovrhrmo
authored andcommitted
UPSTREAM: <carry>: Add OpenShift files
And remove .github
1 parent a172ff4 commit a045ddc

12 files changed

+38
-163
lines changed

.ci-operator.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build_root_image:
2+
name: release
3+
namespace: openshift
4+
tag: rhel-9-release-golang-1.22-openshift-4.18

.github/ISSUE_TEMPLATE/bug_report.md

-25
This file was deleted.

.github/ISSUE_TEMPLATE/enhancement.md

-18
This file was deleted.

.github/ISSUE_TEMPLATE/support.md

-16
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

-40
This file was deleted.

.github/dependabot.yaml

-40
This file was deleted.

.github/workflows/codespell.yml

-15
This file was deleted.

.snyk

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# References:
2+
# https://docs.snyk.io/scan-applications/snyk-code/using-snyk-code-from-the-cli/excluding-directories-and-files-from-the-snyk-code-cli-test
3+
# https://docs.snyk.io/snyk-cli/commands/ignore
4+
exclude:
5+
global:
6+
- vendor/**
7+
- release-tools/**

Dockerfile.openshift

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM registry.svc.ci.openshift.org/openshift/release:golang-1.15 AS builder
2+
WORKDIR /go/src/github.com/kubernetes-csi/external-provisioner
3+
COPY . .
4+
RUN make build
5+
6+
FROM registry.svc.ci.openshift.org/openshift/origin-v4.7:base
7+
COPY --from=builder /go/src/github.com/kubernetes-csi/external-provisioner/bin/csi-provisioner /usr/bin/
8+
ENTRYPOINT ["/usr/bin/csi-provisioner"]

Dockerfile.openshift.rhel7

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 AS builder
2+
WORKDIR /go/src/github.com/kubernetes-csi/external-provisioner
3+
COPY . .
4+
RUN make build
5+
6+
FROM registry.ci.openshift.org/ocp/4.18:base-rhel9
7+
COPY --from=builder /go/src/github.com/kubernetes-csi/external-provisioner/bin/csi-provisioner /usr/bin/
8+
ENTRYPOINT ["/usr/bin/csi-provisioner"]

OWNERS

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# See the OWNERS docs at https://go.k8s.io/owners
22

33
approvers:
4-
- kubernetes-csi-approvers
5-
- pohly
6-
7-
reviewers:
8-
- kubernetes-csi-reviewers
9-
10-
# emeritus_reviewers:
11-
# - davidz627
4+
- openshift-storage-maintainers
5+
component: "Storage / Kubernetes External Components"

OWNERS_ALIASES

-1
This file was deleted.

OWNERS_ALIASES

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
aliases:
2+
openshift-storage-maintainers:
3+
- jsafrane
4+
- tsmetana
5+
- gnufied
6+
- bertinatto
7+
- dobsonj
8+
- RomanBednar
9+
- mpatlasov

0 commit comments

Comments
 (0)