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

add serving 1.15 release job #585

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
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
82 changes: 82 additions & 0 deletions prow/jobs/generated/knative/serving-release-1.15.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,88 @@
# #######################################################################

periodics:
- annotations:
testgrid-dashboards: knative-release-1.15
testgrid-tab-name: serving-release
cluster: prow-build
cron: 15 9 * * 2
decorate: true
decoration_config:
timeout: 3h0m0s
extra_refs:
- base_ref: release-1.15
org: knative
path_alias: knative.dev/serving
repo: serving
max_concurrency: 1
name: release_serving_release-1.15_periodic
spec:
containers:
- command:
- runner.sh
- ./hack/release.sh
- --dot-release
- --release-gcs
- knative-releases/serving
- --release-gcr
- gcr.io/knative-releases
- --github-token
- /etc/hub-token/token
- --branch
- release-1.15
env:
- name: DOCKER_IN_DOCKER_ENABLED
value: "true"
- name: SIGN_IMAGES
value: "true"
- name: ATTEST_IMAGES
value: "true"
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20250116-ca9750e30
name: ""
resources:
limits:
memory: 16Gi
requests:
memory: 12Gi
securityContext:
privileged: true
volumeMounts:
- mountPath: /docker-graph
name: docker-graph
- mountPath: /lib/modules
name: modules
- mountPath: /sys/fs/cgroup
name: cgroup
- mountPath: /etc/hub-token
name: hub-token
readOnly: true
nodeSelector:
kubernetes.io/arch: amd64
type: testing
serviceAccountName: release
volumes:
- emptyDir: {}
name: docker-graph
- hostPath:
path: /lib/modules
type: Directory
name: modules
- hostPath:
path: /sys/fs/cgroup
type: Directory
name: cgroup
- name: hub-token
secret:
items:
- key: hub_token
path: token
secretName: github-credentials
- name: release-account
secret:
items:
- key: release.json
path: service-account.json
secretName: prow-google-credentials
- annotations:
testgrid-dashboards: knative-release-1.15
testgrid-tab-name: serving-continuous
Expand Down
21 changes: 21 additions & 0 deletions prow/jobs_config/knative/serving-release-1.15.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ branches:
- release-1.15
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20250116-ca9750e30
jobs:
- command:
- runner.sh
- ./hack/release.sh
- --dot-release
- --release-gcs
- knative-releases/serving
- --release-gcr
- gcr.io/knative-releases
- --github-token
- /etc/hub-token/token
- --branch
- release-1.15
excluded_requirements:
- gcp
max_concurrency: 1
name: release
requirements:
- release
timeout: 3h0m0s
types:
- periodic
- command:
- runner.sh
- ./test/presubmit-tests.sh
Expand Down
Loading