forked from tektoncd/pipeline
-
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 tektoncd#1 from mvinkler/mvinkler-master
Initial commit for OpenShift CI
- Loading branch information
Showing
4 changed files
with
46 additions
and
7 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 |
---|---|---|
@@ -1,10 +1,8 @@ | ||
# The OWNERS file is used by prow to automatically merge approved PRs. | ||
|
||
approvers: | ||
- aaron-prindle | ||
- bobcatfish | ||
- dlorenc | ||
- ImJasonH | ||
- tejal29 | ||
- pivotal-nader-ziada | ||
- shashwathi | ||
- build-pipeline-approvers | ||
|
||
reviewers: | ||
- build-pipeline-reviewers | ||
|
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,23 @@ | ||
aliases: | ||
build-pipeline-approvers: | ||
- alanfx | ||
- mgencur | ||
- mvinkler | ||
- bbrowning | ||
- jcrossley3 | ||
- bobmcwhirter | ||
- markusthoemmes | ||
- vdemeester | ||
- evanchooly | ||
- arilivigni | ||
build-pipeline-reviewers: | ||
- alanfx | ||
- mgencur | ||
- mvinkler | ||
- bbrowning | ||
- jcrossley3 | ||
- bobmcwhirter | ||
- markusthoemmes | ||
- vdemeester | ||
- evanchooly | ||
- arilivigni |
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,11 @@ | ||
# Dockerfile to bootstrap build and test in openshift-ci | ||
|
||
FROM openshift/origin-release:golang-1.10 | ||
|
||
# Add kubernetes repository | ||
ADD openshift/ci-operator/build-image/kubernetes.repo /etc/yum.repos.d/ | ||
|
||
RUN yum install -y kubectl ansible | ||
|
||
# Allow runtime users to add entries to /etc/passwd | ||
RUN chmod g+rw /etc/passwd |
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 @@ | ||
[kubernetes] | ||
name=Kubernetes | ||
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64 | ||
enabled=1 | ||
gpgcheck=1 | ||
repo_gpgcheck=1 | ||
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg |