Skip to content

Commit 6f25b7e

Browse files
authored
feat: upgrade to prow v20200610 6c96a0a6ed (#92)
* feat: bump prow image version * feat: bring specs up to date
1 parent 6f8c7f3 commit 6f25b7e

9 files changed

+25
-16
lines changed

prow/templates/branchprotector-cronjob.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ spec:
2222
args:
2323
- --config-path=/etc/config/config.yaml
2424
- --job-config-path=/etc/job-config
25+
- --github-endpoint=http://ghproxy
26+
- --github-endpoint=https://api.github.com
2527
- --github-token-path=/etc/github/oauth
2628
- --confirm=true
2729
- --github-endpoint=http://ghproxy

prow/templates/crier-deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ spec:
3434
- --job-config-path=/etc/job-config
3535
- --github-endpoint=http://ghproxy
3636
- --github-endpoint=https://api.github.com
37+
- --github-token-path=/etc/github/oauth
3738
volumeMounts:
3839
- name: config
3940
mountPath: /etc/config

prow/templates/deck-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ spec:
3939
- --job-config-path=/etc/job-config
4040
- --spyglass=true
4141
- --rerun-creates-job
42-
- --github-token-path=/etc/github/oauth
4342
- --github-endpoint=http://ghproxy
4443
- --github-endpoint=https://api.github.com
44+
- --github-token-path=/etc/github/oauth
4545
- --github-oauth-config-file=/etc/githuboauth/secret
4646
- --cookie-secret=/etc/cookie/secret
4747
- --plugin-config=/etc/plugins/plugins.yaml

prow/templates/hook-deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ spec:
3535
- --slack-token-file=/etc/slack/token
3636
{{ end }}
3737
- --dry-run=false
38-
- --config-path=/etc/config/config.yaml
3938
- --github-endpoint=http://ghproxy
4039
- --github-endpoint=https://api.github.com
40+
- --github-token-path=/etc/github/oauth
41+
- --config-path=/etc/config/config.yaml
4142
- --job-config-path=/etc/job-config
4243
ports:
4344
- name: http

prow/templates/needsrebase-deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ spec:
2727
- --dry-run=false
2828
- --github-endpoint=http://ghproxy
2929
- --github-endpoint=https://api.github.com
30+
- --github-token-path=/etc/github/oauth
3031
ports:
3132
- name: http
3233
containerPort: 8888

prow/templates/plank-deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ spec:
3131
- --skip-report=true
3232
- --github-endpoint=http://ghproxy
3333
- --github-endpoint=https://api.github.com
34+
- --github-token-path=/etc/github/oauth
3435
- --job-config-path=/etc/job-config
3536
ports:
3637
- name: metrics

prow/templates/statusreconsiler-deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ spec:
2828
- --continue-on-error=true
2929
- --plugin-config=/etc/plugins/plugins.yaml
3030
- --config-path=/etc/config/config.yaml
31+
- --github-endpoint=http://ghproxy
32+
- --github-endpoint=https://api.github.com
3133
- --github-token-path=/etc/github/oauth
3234
- --job-config-path=/etc/job-config
3335
volumeMounts:

prow/templates/tide-deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ spec:
2929
- --config-path=/etc/config/config.yaml
3030
- --github-endpoint=http://ghproxy
3131
- --github-endpoint=https://api.github.com
32+
- --github-token-path=/etc/github/oauth
3233
- --gcs-credentials-file=/etc/service-account/service-account.json
3334
- --history-uri=gs://{{ .Values.prowbucketname }}/tide-history.json
3435
- --status-path=gs://{{ .Values.prowbucketname }}/tide-status-checkpoint.yaml

prow/values.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ github:
1414
username: ouzibot
1515

1616
hook:
17-
image: gcr.io/k8s-prow/hook:v20200427-baaf248ed
17+
image: gcr.io/k8s-prow/hook:v20200610-6c96a0a6ed
1818
replicas: 1
1919
ingress:
2020
host: prow.test-infra.ouzi.io
@@ -29,15 +29,15 @@ hook:
2929
effect: NoSchedule
3030

3131
plank:
32-
image: gcr.io/k8s-prow/plank:v20200427-baaf248ed
32+
image: gcr.io/k8s-prow/plank:v20200610-6c96a0a6ed
3333
tolerations:
3434
- key: cloud.google.com/gke-preemptible
3535
operator: Equal
3636
value: "true"
3737
effect: NoSchedule
3838

3939
sinker:
40-
image: gcr.io/k8s-prow/sinker:v20200427-baaf248ed
40+
image: gcr.io/k8s-prow/sinker:v20200610-6c96a0a6ed
4141
replicas: 1
4242
tolerations:
4343
- key: cloud.google.com/gke-preemptible
@@ -46,7 +46,7 @@ sinker:
4646
effect: NoSchedule
4747

4848
deck:
49-
image: gcr.io/k8s-prow/deck:v20200427-baaf248ed
49+
image: gcr.io/k8s-prow/deck:v20200610-6c96a0a6ed
5050
replicas: 1
5151
ingress:
5252
host: prow.test-infra.ouzi.io
@@ -63,23 +63,23 @@ deck:
6363
effect: NoSchedule
6464

6565
horologium:
66-
image: gcr.io/k8s-prow/horologium:v20200427-baaf248ed
66+
image: gcr.io/k8s-prow/horologium:v20200610-6c96a0a6ed
6767
tolerations:
6868
- key: cloud.google.com/gke-preemptible
6969
operator: Equal
7070
value: "true"
7171
effect: NoSchedule
7272

7373
tide:
74-
image: gcr.io/k8s-prow/tide:v20200427-baaf248ed
74+
image: gcr.io/k8s-prow/tide:v20200610-6c96a0a6ed
7575
tolerations:
7676
- key: cloud.google.com/gke-preemptible
7777
operator: Equal
7878
value: "true"
7979
effect: NoSchedule
8080

8181
statusreconciler:
82-
image: gcr.io/k8s-prow/status-reconciler:v20200427-baaf248ed
82+
image: gcr.io/k8s-prow/status-reconciler:v20200610-6c96a0a6ed
8383
replicas: 1
8484
tolerations:
8585
- key: cloud.google.com/gke-preemptible
@@ -88,15 +88,15 @@ statusreconciler:
8888
effect: NoSchedule
8989

9090
needsrebase:
91-
image: gcr.io/k8s-prow/needs-rebase:v20200427-baaf248ed
91+
image: gcr.io/k8s-prow/needs-rebase:v20200610-6c96a0a6ed
9292
tolerations:
9393
- key: cloud.google.com/gke-preemptible
9494
operator: Equal
9595
value: "true"
9696
effect: NoSchedule
9797

9898
branchprotector:
99-
image: gcr.io/k8s-prow/branchprotector:v20200427-baaf248ed
99+
image: gcr.io/k8s-prow/branchprotector:v20200610-6c96a0a6ed
100100
schedule: 12 * * * * # Every hour at 12 minutes past the hour
101101
tolerations:
102102
- key: cloud.google.com/gke-preemptible
@@ -105,7 +105,7 @@ branchprotector:
105105
effect: NoSchedule
106106

107107
crier:
108-
image: gcr.io/k8s-prow/crier:v20200427-baaf248ed
108+
image: gcr.io/k8s-prow/crier:v20200610-6c96a0a6ed
109109
replicas: 1
110110
tolerations:
111111
- key: cloud.google.com/gke-preemptible
@@ -114,7 +114,7 @@ crier:
114114
effect: NoSchedule
115115

116116
labelsync:
117-
image: gcr.io/k8s-prow/label_sync:v20200427-baaf248ed
117+
image: gcr.io/k8s-prow/label_sync:v20200610-6c96a0a6ed
118118
schedule: 0 5 * * * # Every day at 5AM
119119
tolerations:
120120
- key: cloud.google.com/gke-preemptible
@@ -125,8 +125,8 @@ labelsync:
125125
# requires tekton to work -
126126
# we will install it part of the chart in a later revision
127127
pipeline:
128-
# image: gcr.io/k8s-prow/pipeline:v20200427-baaf248ed
129-
image: gcr.io/k8s-prow/pipeline:v20200427-baaf248ed
128+
# image: gcr.io/k8s-prow/pipeline:v20200610-6c96a0a6ed
129+
image: gcr.io/k8s-prow/pipeline:v20200610-6c96a0a6ed
130130
tolerations:
131131
- key: cloud.google.com/gke-preemptible
132132
operator: Equal
@@ -151,7 +151,7 @@ pushgateway:
151151
effect: NoSchedule
152152

153153
ghproxy:
154-
image: gcr.io/k8s-prow/ghproxy:v20200427-baaf248ed
154+
image: gcr.io/k8s-prow/ghproxy:v20200610-6c96a0a6ed
155155
replicas: 1
156156
cache:
157157
sizeGB: 19

0 commit comments

Comments
 (0)