forked from kubernetes-csi/node-driver-registrar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes-csi#8 from jsafrane/rebase-v1.1.0
Rebase to v1.1.0
- Loading branch information
Showing
39 changed files
with
1,901 additions
and
3,467 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,5 @@ | ||
#! /bin/bash | ||
|
||
. release-tools/prow.sh | ||
|
||
main |
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,18 @@ | ||
# Changelog since v1.0.2 | ||
|
||
## Deprecations | ||
* Command line flag `-connection-timeout` is deprecated and has no effect. | ||
|
||
## Notable Features | ||
|
||
* The driver registrar now tries to connect to CSI driver indefinitely. ([#29](https://github.com/kubernetes-csi/node-driver-registrar/pull/29)) | ||
|
||
## Other notable changes | ||
|
||
* Use distroless as base image ([#34](https://github.com/kubernetes-csi/node-driver-registrar/pull/34)) | ||
* Use GetDriverName from csi-lib-utils ([#33](https://github.com/kubernetes-csi/node-driver-registrar/pull/33)) | ||
* Migrate to k8s.io/klog from glog. ([#24](https://github.com/kubernetes-csi/node-driver-registrar/pull/24)) | ||
* Update compatibility matrix to only reflect branch head ([#25](https://github.com/kubernetes-csi/node-driver-registrar/pull/25)) | ||
* Update documentation and argument descriptions ([#13](https://github.com/kubernetes-csi/node-driver-registrar/pull/13)) | ||
* Cleanup vendor ([#11](https://github.com/kubernetes-csi/node-driver-registrar/pull/11)) | ||
* Add csi prefix to image name ([#5](https://github.com/kubernetes-csi/node-driver-registrar/pull/5)) |
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
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,10 @@ | ||
FROM registry.svc.ci.openshift.org/openshift/release:golang-1.11 AS builder | ||
WORKDIR /go/src/github.com/kubernetes-csi/node-driver-registrar | ||
COPY . . | ||
RUN go build ./cmd/csi-node-driver-registrar | ||
|
||
FROM registry.svc.ci.openshift.org/openshift/origin-v4.0:base | ||
COPY --from=builder /go/src/github.com/kubernetes-csi/node-driver-registrar/csi-node-driver-registrar /usr/bin/ | ||
RUN useradd csi-node-driver-registrar | ||
USER csi-node-driver-registrar | ||
ENTRYPOINT ["/usr/bin/csi-node-driver-registrar"] |
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,10 @@ | ||
FROM registry.svc.ci.openshift.org/ocp/builder:golang-1.11 AS builder | ||
WORKDIR /go/src/github.com/kubernetes-csi/node-driver-registrar | ||
COPY . . | ||
RUN go build ./cmd/csi-node-driver-registrar | ||
|
||
FROM registry.svc.ci.openshift.org/ocp/4.0:base | ||
COPY --from=builder /go/src/github.com/kubernetes-csi/node-driver-registrar/csi-node-driver-registrar /usr/bin/ | ||
RUN useradd csi-node-driver-registrar | ||
USER csi-node-driver-registrar | ||
ENTRYPOINT ["/usr/bin/csi-node-driver-registrar"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,5 +1,5 @@ | ||
approvers: | ||
- openshift-maintainers | ||
- openshift-storage-maintainers | ||
- jsafrane | ||
- lpabon | ||
- msau42 | ||
|
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,5 +1,5 @@ | ||
aliases: | ||
openshift-maintainers: | ||
openshift-storage-maintainers: | ||
- jsafrane | ||
- tsmetana | ||
- gnufied | ||
|
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
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 @@ | ||
#! /bin/bash -e | ||
# | ||
# This is for testing csi-release-tools itself in Prow. All other | ||
# repos use prow.sh for that, but as csi-release-tools isn't a normal | ||
# repo with some Go code in it, it has a custom Prow test script. | ||
|
||
./verify-shellcheck.sh "$(pwd)" |
Oops, something went wrong.