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

kubernetes-csi: csi-release-tools jobs must be optional #22015

Merged
merged 1 commit into from
Apr 30, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ presubmits:
cpu: 2000m
- name: pull-kubernetes-csi-release-tools-csi-test
always_run: true
optional: false # cannot be required because updates in csi-release-tools may include breaking changes
optional: true # cannot be required because updates in csi-release-tools may include breaking changes
decorate: true
skip_report: false
extra_refs:
Expand Down Expand Up @@ -82,7 +82,7 @@ presubmits:
cpu: 2000m
- name: pull-kubernetes-csi-release-tools-external-provisioner
always_run: true
optional: false # cannot be required because updates in csi-release-tools may include breaking changes
optional: true # cannot be required because updates in csi-release-tools may include breaking changes
decorate: true
skip_report: false
extra_refs:
Expand Down Expand Up @@ -130,7 +130,7 @@ presubmits:
cpu: 2000m
- name: pull-kubernetes-csi-release-tools-external-snapshotter
always_run: true
optional: false # cannot be required because updates in csi-release-tools may include breaking changes
optional: true # cannot be required because updates in csi-release-tools may include breaking changes
decorate: true
skip_report: false
extra_refs:
Expand Down
2 changes: 1 addition & 1 deletion config/jobs/kubernetes-csi/gen-jobs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ for repo in $csi_release_tools_repos; do
cat >>"$base/csi-release-tools/csi-release-tools-config.yaml" <<EOF
- name: $(job_name "pull" "release-tools" "$repo" "" "")
always_run: true
optional: false # cannot be required because updates in csi-release-tools may include breaking changes
optional: true # cannot be required because updates in csi-release-tools may include breaking changes
decorate: true
skip_report: false
extra_refs:
Expand Down