-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Use gardener cla-assistant image for periodic reconciliation of…
… CLA Assistant (#9371) /kind feature /area ci Use gardener project cla-assistant plugin for periodic updates of CLA Assistant status
- Loading branch information
Showing
8 changed files
with
90 additions
and
260 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,74 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
namespace: default | ||
name: cla-assistant | ||
labels: | ||
app: cla-assistant | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: cla-assistant | ||
template: | ||
metadata: | ||
labels: | ||
app: cla-assistant | ||
spec: | ||
containers: | ||
- name: cla-assistant | ||
image: eu.gcr.io/gardener-project/ci-infra/cla-assistant:v20231121-2908159 | ||
args: | ||
- --dry-run=false | ||
- --github-endpoint=http://ghproxy | ||
- --github-endpoint=https://api.github.com | ||
- --github-token-path=/etc/github/oauth | ||
- --update-period=15m | ||
- --log-level=info | ||
- --hmac-secret-file=/etc/webhook/hmac | ||
ports: | ||
- name: http | ||
containerPort: 8080 | ||
volumeMounts: | ||
- name: hmac | ||
mountPath: /etc/webhook | ||
readOnly: true | ||
- name: plugins | ||
mountPath: /etc/plugins | ||
readOnly: true | ||
- name: oauth | ||
mountPath: /etc/github | ||
readOnly: true | ||
livenessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: 8081 | ||
initialDelaySeconds: 5 | ||
periodSeconds: 3 | ||
readinessProbe: | ||
httpGet: | ||
path: /healthz/ready | ||
port: 8081 | ||
initialDelaySeconds: 5 | ||
periodSeconds: 3 | ||
volumes: | ||
- name: hmac | ||
secret: | ||
secretName: hmac-token | ||
- name: oauth | ||
secret: | ||
secretName: oauth-token | ||
- name: plugins | ||
configMap: | ||
name: plugins | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: cla-assistant | ||
namespace: default | ||
spec: | ||
selector: | ||
app: cla-assistant | ||
ports: | ||
- port: 80 | ||
targetPort: 8080 |
45 changes: 0 additions & 45 deletions
45
prow/cluster/components/cla-assistant_external-plugin.yaml
This file was deleted.
Oops, something went wrong.
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
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
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