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
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,35 @@ resources:
memory: 200Mi
test_binary_build_commands: make deps
tests:
- as: apiserver-network-proxy
cron: 0 12 * * Mon,Thu
steps:
test:
- as: apiserver-network-proxy
commands: |
rebasebot --source https://github.com/kubernetes-sigs/apiserver-network-proxy:master \
--dest openshift/apiserver-network-proxy:main \
--rebase openshift/apiserver-network-proxy:rebase-bot-main \
--update-go-modules \
--github-app-key /secrets/rebasebot/hypershift-rebase-bot-key \
--github-cloner-key /secrets/rebasebot/hypershift-rebase-bot-key \
--github-app-id 3706026 \
--github-cloner-id 3706026 \
--git-username hypershift-rebase-bot \
--git-email hypershift-rebase-bot@redhat.com \
--bot-emails hypershift-rebase-bot@redhat.com openshift-bot@redhat.com openshift-ci-robot@redhat.com \
--tag-policy=strict
credentials:
- mount_path: /secrets/rebasebot
name: hypershift-rebasebot-credentials
namespace: test-credentials
from: rebasebot
resources:
limits:
memory: 6Gi
requests:
cpu: 400m
memory: 1Gi
- as: cloud-provider-aws
cron: 0 12 * * Mon,Thu
steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,78 @@
periodics:
- agent: kubernetes
cluster: build08
cron: 0 12 * * Mon,Thu
decorate: true
decoration_config:
sparse_checkout_files:
- Containerfile
extra_refs:
- base_ref: main
org: openshift-eng
repo: rebasebot
sparse_checkout_files:
- Containerfile
labels:
ci.openshift.io/generator: prowgen
pj-rehearse.openshift.io/can-be-rehearsed: "true"
name: periodic-ci-openshift-eng-rebasebot-main-apiserver-network-proxy
spec:
containers:
- args:
- --gcs-upload-secret=/secrets/gcs/service-account.json
- --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson
- --lease-server-credentials-file=/etc/boskos/credentials
- --report-credentials-file=/etc/report/credentials
- --target=apiserver-network-proxy
command:
- ci-operator
env:
- name: HTTP_SERVER_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest
imagePullPolicy: Always
name: ""
ports:
- containerPort: 8080
name: http
resources:
requests:
cpu: 10m
volumeMounts:
- mountPath: /etc/boskos
name: boskos
readOnly: true
- mountPath: /secrets/gcs
name: gcs-credentials
readOnly: true
- mountPath: /secrets/manifest-tool
name: manifest-tool-local-pusher
readOnly: true
- mountPath: /etc/pull-secret
name: pull-secret
readOnly: true
- mountPath: /etc/report
name: result-aggregator
readOnly: true
serviceAccountName: ci-operator
volumes:
- name: boskos
secret:
items:
- key: credentials
path: credentials
secretName: boskos-credentials
- name: manifest-tool-local-pusher
secret:
secretName: manifest-tool-local-pusher
- name: pull-secret
secret:
secretName: registry-pull-credentials
- name: result-aggregator
secret:
secretName: result-aggregator
- agent: kubernetes
cluster: build08
cron: 0 12 * * Wed
Expand Down