Skip to content
Merged
Show file tree
Hide file tree
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
28 changes: 6 additions & 22 deletions ci-operator/jobs/infra-periodics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -863,16 +863,8 @@ periodics:
containers:
- args:
- --config=core-services/prow/02_config/_release-bumper.yaml
- --github-app-id=$(GITHUB_APP_ID)
- --github-app-private-key-path=/etc/github/cert
command:
- /ko-app/generic-autobumper
env:
- name: GITHUB_APP_ID
valueFrom:
secretKeyRef:
key: appid
name: openshift-prow-github-app
image: us-docker.pkg.dev/k8s-infra-prow/images/generic-autobumper:v20260518-1704362c7
imagePullPolicy: IfNotPresent
name: autobump
Expand All @@ -881,12 +873,12 @@ periodics:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: github-app-credentials
name: token
readOnly: true
volumes:
- name: github-app-credentials
- name: token
secret:
secretName: openshift-prow-github-app
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: app.ci
cron: 0 22 * * 3
Expand All @@ -906,16 +898,8 @@ periodics:
containers:
- args:
- --config=../release/core-services/prow/02_config/_ci-tools-bumper.yaml
- --github-app-id=$(GITHUB_APP_ID)
- --github-app-private-key-path=/etc/github/cert
command:
- /ko-app/generic-autobumper
env:
- name: GITHUB_APP_ID
valueFrom:
secretKeyRef:
key: appid
name: openshift-prow-github-app
image: us-docker.pkg.dev/k8s-infra-prow/images/generic-autobumper:v20260518-1704362c7
imagePullPolicy: IfNotPresent
name: autobump
Expand All @@ -924,12 +908,12 @@ periodics:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: github-app-credentials
name: token
readOnly: true
volumes:
- name: github-app-credentials
- name: token
secret:
secretName: openshift-prow-github-app
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: app.ci
cron: 0 */4 * * 1-5
Expand Down
6 changes: 4 additions & 2 deletions core-services/prow/02_config/_ci-tools-bumper.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
gitName: "openshift-ci[bot]"
gitEmail: "75433959+openshift-ci[bot]@users.noreply.github.com"
gitHubToken: "/etc/github/oauth"
gitName: "openshift-bot"
gitEmail: "openshift-bot@redhat.com"
gitHubOrg: "openshift"
gitHubLogin: "openshift-bot"
gitHubRepo: "ci-tools"
remoteName: "ci-tools"
assign_to: openshift/test-platform
Expand Down
6 changes: 4 additions & 2 deletions core-services/prow/02_config/_release-bumper.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
gitName: "openshift-ci[bot]"
gitEmail: "75433959+openshift-ci[bot]@users.noreply.github.com"
gitHubToken: "/etc/github/oauth"
gitName: "openshift-bot"
gitEmail: "openshift-bot@redhat.com"
gitHubOrg: "openshift"
gitHubLogin: "openshift-bot"
gitHubRepo: "release"
remoteName: "release"
assign_to: openshift/test-platform
Expand Down