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

chore(config/jobs): add test peribolos-syncer presubmit #1444

Merged
merged 2 commits into from
Apr 11, 2024
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
presubmits:
falcosecurity/test-infra:
- name: peribolos-syncer-pre-submit-test
branches:
- ^master$
decorate: true
skip_report: false
run_if_changed: 'OWNERS$'
spec:
containers:
- image: ghcr.io/falcosecurity/peribolos-syncer:0.2.0
args:
- sync
- github
- --org=falcosecurity
- --team=evolution-maintainers
- --peribolos-config-path=config/org.yaml
- --peribolos-config-repository=test-infra
- --peribolos-config-git-ref=master
- --owners-repository=evolution
- --owners-git-ref=main
- --approvers-only=true
- --git-author-name=poiana
- --git-author-email="[email protected]"
- --gpg-public-key=/tmp/gpg-pub/poiana.pub
- --gpg-private-key=/tmp/gpg/poiana.asc
- --github-username=poiana
- --github-endpoint=http://ghproxy.default.svc.cluster.local
- --github-endpoint=https://api.github.com
- --github-hourly-tokens=1200
- --github-token-path=/etc/github-token/oauth
volumeMounts:
- name: github
mountPath: /etc/github-token
readOnly: true
- name: gpg-signing-key
mountPath: /tmp/gpg
readOnly: true
- name: gpg-signing-key-pub
mountPath: /tmp/gpg-pub
readOnly: true
volumes:
- name: github
secret:
secretName: oauth-token
- name: gpg-signing-key
secret:
secretName: poiana-gpg-signing-key
defaultMode: 0400
- name: gpg-signing-key-pub
secret:
secretName: poiana-gpg-signing-key-pub
defaultMode: 0400
nodeSelector:
Archtype: "x86"
Loading