Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add job periodic-prow-auto-config-brancher #5088

Merged
merged 4 commits into from
Sep 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 54 additions & 3 deletions ci-operator/jobs/infra-periodics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,12 @@ periodics:
- command:
- /usr/bin/autobumper
args:
- --github-token=/etc/github/oauth
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
#- --github-graphql-endpoint=https://api.github.com/graphql
- --dry-run=false
- --git-name=openshift-bot
- --git-email=openshift-bot@redhat.com
- --target-dir=.
Expand All @@ -308,6 +313,47 @@ periodics:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
labels:
ci.openshift.io/role: infra
extra_refs:
- base_ref: master
org: openshift
repo: release
cron: ""
decorate: true
interval: 12h
name: periodic-prow-auto-config-brancher
spec:
containers:
- command:
- /usr/bin/autoconfigbrancher
args:
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
#- --github-graphql-endpoint=https://api.github.com/graphql
- --dry-run=false
- --git-name=openshift-bot
- --git-email=openshift-bot@redhat.com
- --target-dir=.
- --current-release=4.3
- --future-release=4.4
image: registry.svc.ci.openshift.org/ci/auto-config-brancher:latest
imagePullPolicy: Always
name: "auto-config-brancher"
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
labels:
ci.openshift.io/role: infra
Expand All @@ -317,13 +363,18 @@ periodics:
repo: release
cron: "30 10 * * 1" # Run at 10:30 UTC each Monday
decorate: true
name: periodic-prow-image-autoowners
name: periodic-prow-auto-owners
spec:
containers:
- command:
- /usr/bin/autoowners
args:
- --github-token=/etc/github/oauth
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
#- --github-graphql-endpoint=https://api.github.com/graphql
- --dry-run=false
- --git-name=openshift-bot
- --git-email=openshift-bot@redhat.com
- --target-dir=.
Expand Down