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

adds k8s-staging-csi-secrets-store image pushing prow config #17335

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
34 changes: 34 additions & 0 deletions config/jobs/image-pushing/k8s-staging-csi-secrets-store.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
postsubmits:
# This is the github repo we'll build from. This block needs to be repeated
# for each repo.
kubernetes-sigs/secrets-store-csi-driver:
# The name should be changed to match the repo name above
- name: secrets-store-csi-driver-push-image
cluster: k8s-infra-prow-build-trusted
annotations:
# This is the name of some testgrid dashboard to report to.
# If this is the first one for your sig, you may need to create one
testgrid-dashboards: sig-auth-secrets-store-csi-driver
decorate: true
# we only need to run if necessary (e.g.: the version was bumped)
run_if_changed: '^docker\/'
Comment on lines +13 to +14
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't match any file in your repo

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a PR open for moving the files to different dir - kubernetes-sigs/secrets-store-csi-driver#189

# this causes the job to only run on the master branch. Remove it if your
# job makes sense on every branch (unless it's setting a `latest` tag it
# probably does).
branches:
- ^master$
spec:
serviceAccountName: gcb-builder
containers:
- image: gcr.io/k8s-testimages/image-builder:v20200422-c760048
command:
- /run.sh
args:
# this is the project GCB will run in, which is the same as the GCR
# images are pushed to.
- --project=k8s-staging-csi-secrets-store
# This is the same as above, but with -gcb appended.
- --scratch-bucket=gs://k8s-staging-csi-secrets-store-gcb
- --env-passthrough=PULL_BASE_REF
- --build-dir=.
- docker
cblecker marked this conversation as resolved.
Show resolved Hide resolved