Skip to content
Open
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
39 changes: 39 additions & 0 deletions config/jobs/image-pushing/k8s-staging-karpenter-cluster-api.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
postsubmits:
# This is the github repo we'll build from. This block needs to be repeated
# for each repo.
kubernetes-sigs/karpenter-provider-cluster-api:
# The name should be changed to match the repo name above
- name: post-karpenter-provider-cluster-api-push-images
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-cluster-lifecycle-image-pushes, sig-k8s-infra-gcb
decorate: true
# 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).
# if you remove it you must instead use the following:
#skip_branches:
# # do not run on dependabot branches, these exist prior to merge
# # only merged code should trigger these jobs
# - '^dependabot'
branches:
Copy link
Member

Choose a reason for hiding this comment

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

you probably also want to include version tags, while the field says "branches", it's misnamed (... too late to easily fix), it really matches github push events, which includes also tags

Copy link
Member Author

Choose a reason for hiding this comment

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

Fixed, added a line for semver tags :-) thanks.

- ^main$
- ^release-
# Build semver tags, too
- ^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
spec:
serviceAccountName: gcb-builder
containers:
- image: gcr.io/k8s-staging-test-infra/image-builder:v20250914-3092127382
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-karpenter-cluster-api
# This is the same as above, but with -gcb appended.
- --scratch-bucket=gs://k8s-staging-karpenter-cluster-api-gcb
- --env-passthrough=PULL_BASE_REF
- .