Skip to content

Commit e855a65

Browse files
committed
UPSTREAM: <carry>: add OWNERS, Dockerfile, .ci-operator.yaml
1 parent 5898fda commit e855a65

File tree

4 files changed

+26
-28
lines changed

4 files changed

+26
-28
lines changed

.ci-operator.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build_root_image:
2+
name: release
3+
namespace: openshift
4+
tag: golang-1.16

Dockerfile.openshift

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.16-openshift-4.10 AS builder
2+
WORKDIR /go/src/github.com/openshift/ibm-vpc-block-csi-driver
3+
COPY . .
4+
RUN make build
5+
6+
FROM registry.ci.openshift.org/ocp/4.10:base
7+
COPY --from=builder /go/bin/ibm-vpc-block-csi-driver /bin/ibm-vpc-block-csi-driver
8+
RUN yum install -y util-linux nfs-utils e2fsprogs xfsprogs ca-certificates && yum clean all && rm -rf /var/cache/yum
9+
10+
LABEL description="IBM VPC Block CSI Driver"
11+
12+
ENTRYPOINT ["/bin/ibm-vpc-block-csi-driver"]

OWNERS

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
2-
# See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md
3-
41
approvers:
5-
- provider-ibmcloud-leads
6-
- ibmcloud-paas-storage-leads
7-
- ibm-vpc-csi-driver-admins
8-
- ibm-vpc-csi-driver-maintainers
9-
10-
reviewers:
11-
- provider-ibmcloud-leads
12-
- ibmcloud-paas-storage-leads
13-
- ibm-vpc-csi-driver-admins
14-
- ibmcloud-paas-storage-reviewers
2+
- openshift-storage-maintainers
3+
component: "Storage / Kubernetes External Components"

OWNERS_ALIASES

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
1-
# See the OWNERS docs: https://git.k8s.io/community/docs/devel/owners.md
2-
31
aliases:
4-
provider-ibmcloud-leads:
5-
- bradtopol
6-
- spzala
7-
ibmcloud-paas-storage-leads:
8-
- arahamad
9-
ibmcloud-paas-storage-reviewers:
10-
- arahamad
11-
- ambiknai
12-
ibm-vpc-csi-driver-admins:
13-
- arahamad
14-
ibm-vpc-csi-driver-maintainers:
15-
- arahamad
16-
- ambiknai
2+
openshift-storage-maintainers:
3+
- bertinatto
4+
- gnufied
5+
- dobsonj
6+
- jsafrane
7+
- tsmetana
8+
- RomanBednar
9+
- mpatlasov

0 commit comments

Comments
 (0)