diff --git a/OWNERS b/OWNERS new file mode 100644 index 000000000..6c3523932 --- /dev/null +++ b/OWNERS @@ -0,0 +1,7 @@ +# See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md +# This file just uses aliases defined in OWNERS_ALIASES. + +approvers: + - installer-approvers +reviewers: + - cincinnati-reviewers diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES new file mode 100644 index 000000000..7b53ff961 --- /dev/null +++ b/OWNERS_ALIASES @@ -0,0 +1,10 @@ +# See the OWNERS_ALIASES docs: https://git.k8s.io/community/contributors/guide/owners.md#OWNERS_ALIASES + +aliases: + cincinnati-approvers: + - aaronlevy + - crawford + - smarterclayton + - steveeJ + cincinnati-reviewers: + - lucab diff --git a/dist/openshift-release/Dockerfile.builder b/dist/openshift-release/Dockerfile.builder new file mode 100644 index 000000000..1cae703d8 --- /dev/null +++ b/dist/openshift-release/Dockerfile.builder @@ -0,0 +1,15 @@ +FROM centos:7 as builder + +RUN yum -y groupinstall 'Development Tools' +RUN yum -y install openssl-devel + +ADD https://static.rust-lang.org/dist/rust-1.31.0-x86_64-unknown-linux-gnu.tar.gz rust.tar.gz +RUN tar -xf rust.tar.gz --strip 1 +RUN ./install.sh + +ENV HOME="/root" + +RUN \ + mkdir -p $HOME/.cargo/git/ && \ + find $HOME/. -type d -exec chmod 777 {} \; && \ + find $HOME/. -type f -exec chmod ugo+rw {} \;