Lyndon-Li
c87e8acbf4
remove unecessary changelogs for 1.18.0
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-03-09 17:47:12 +08:00
Xun Jiang/Bruce Jiang
6adcf06b5b
Merge pull request #9572 from blackpiglet/xj014661/v1.18/CVE-2026-24051
...
Run the E2E test on kind / get-go-version (push) Failing after 1m0s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 2s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Failing after 15s
Main CI / Build (push) Has been skipped
Xj014661/v1.18/CVE 2026 24051
v1.18.0-rc.2
v1.18.0
2026-03-02 17:42:25 +08:00
Xun Jiang
ffa65605a6
Bump go.opentelemetry.io/otel/sdk to 1.40.0 to fix CVE-2026-24051.
...
Bump Linux base image to paketobuildpacks/run-jammy-tiny:0.2.104
Signed-off-by: Xun Jiang <xun.jiang@broadcom.com >
2026-03-02 17:09:23 +08:00
Xun Jiang/Bruce Jiang
bd8dfe9ee2
Merge branch 'vmware-tanzu:release-1.18' into release-1.18
2026-03-02 17:04:43 +08:00
lyndon-li
54783fbe28
Merge pull request #9546 from Lyndon-Li/release-1.18
...
Run the E2E test on kind / get-go-version (push) Failing after 1h5m30s
Run the E2E test on kind / setup-test-matrix (push) Successful in 4s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Failing after 21s
Main CI / Build (push) Has been skipped
Update base image for 1.18.0
v1.18.0-rc.1
2026-02-13 17:11:09 +08:00
Lyndon-Li
cb5f56265a
update base image for 1.18.0
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-02-13 16:43:12 +08:00
Tiger Kaovilai
0c7b89a44e
Fix VolumePolicy PVC phase condition filter for unbound PVCs
...
Use typed error approach: Make GetPVForPVC return ErrPVNotFoundForPVC
when PV is not expected to be found (unbound PVC), then use errors.Is
to check for this error type. When a matching policy exists (e.g.,
pvcPhase: [Pending, Lost] with action: skip), apply the action without
error. When no policy matches, return the original error to preserve
default behavior.
Changes:
- Add ErrPVNotFoundForPVC sentinel error to pvc_pv.go
- Update ShouldPerformSnapshot to handle unbound PVCs with policies
- Update ShouldPerformFSBackup to handle unbound PVCs with policies
- Update item_backupper.go to handle Lost PVCs in tracking functions
- Remove checkPVCOnlySkip helper (no longer needed)
- Update tests to reflect new behavior
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com >
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-12 16:18:56 +08:00
Xun Jiang/Bruce Jiang
aa89713559
Merge pull request #9537 from kaovilai/1.18-9508
...
Run the E2E test on kind / get-go-version (push) Failing after 1m33s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Failing after 29s
Main CI / Build (push) Has been skipped
release-1.18: Fix VolumePolicy PVC phase condition filter for unbound PVCs
2026-02-12 11:41:25 +08:00
Xun Jiang/Bruce Jiang
5db4c65a92
Merge branch 'release-1.18' into 1.18-9508
2026-02-12 11:32:06 +08:00
Xun Jiang/Bruce Jiang
87db850f66
Merge pull request #9539 from Joeavaikath/1.18-9502
...
release-1.18: Support all glob wildcard characters in namespace validation (#9502 )
2026-02-12 10:50:55 +08:00
Xun Jiang/Bruce Jiang
c7631fc4a4
Merge branch 'release-1.18' into 1.18-9502
2026-02-12 10:41:26 +08:00
Wenkai Yin(尹文开)
9a37478cc2
Merge pull request #9538 from vmware-tanzu/topic/xj014661/update_migration_test_cases
...
Update the migration and upgrade test cases.
2026-02-12 10:19:43 +08:00
Tiger Kaovilai
5b54ccd2e0
Fix VolumePolicy PVC phase condition filter for unbound PVCs
...
Use typed error approach: Make GetPVForPVC return ErrPVNotFoundForPVC
when PV is not expected to be found (unbound PVC), then use errors.Is
to check for this error type. When a matching policy exists (e.g.,
pvcPhase: [Pending, Lost] with action: skip), apply the action without
error. When no policy matches, return the original error to preserve
default behavior.
Changes:
- Add ErrPVNotFoundForPVC sentinel error to pvc_pv.go
- Update ShouldPerformSnapshot to handle unbound PVCs with policies
- Update ShouldPerformFSBackup to handle unbound PVCs with policies
- Update item_backupper.go to handle Lost PVCs in tracking functions
- Remove checkPVCOnlySkip helper (no longer needed)
- Update tests to reflect new behavior
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com >
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-11 15:29:14 -05:00
Joseph Antony Vaikath
43b926a58b
Support all glob wildcard characters in namespace validation ( #9502 )
...
* Support all glob wildcard characters in namespace validation
Expand namespace validation to allow all valid glob pattern characters
(*, ?, {}, [], ,) by replacing them with valid characters during RFC 1123
validation. The actual glob pattern validation is handled separately by
the wildcard package.
Also add validation to reject unsupported characters (|, (), !) that are
not valid in glob patterns, and update terminology from "regex" to "glob"
for clarity since this implementation uses glob patterns, not regex.
Changes:
- Replace all glob wildcard characters in validateNamespaceName
- Add test coverage for valid glob patterns in includes/excludes
- Add test coverage for unsupported characters
- Reject exclamation mark (!) in wildcard patterns
- Clarify comments and error messages about glob vs regex
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
Signed-off-by: Joseph <jvaikath@redhat.com >
* Changelog
Signed-off-by: Joseph <jvaikath@redhat.com >
* Add documentation: glob patterns are now accepted
Signed-off-by: Joseph <jvaikath@redhat.com >
* Error message fix
Signed-off-by: Joseph <jvaikath@redhat.com >
* Remove negation glob char test
Signed-off-by: Joseph <jvaikath@redhat.com >
* Add bracket pattern validation for namespace glob patterns
Extends wildcard validation to support square bracket patterns [] used in glob character classes. Validates bracket syntax including empty brackets, unclosed brackets, and unmatched brackets. Extracts ValidateNamespaceName as a public function to enable reuse in namespace validation logic.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
Signed-off-by: Joseph <jvaikath@redhat.com >
* Reduce scope to *, ?, [ and ]
Signed-off-by: Joseph <jvaikath@redhat.com >
* Fix tests
Signed-off-by: Joseph <jvaikath@redhat.com >
* Add namespace glob patterns documentation page
Adds dedicated documentation explaining supported glob patterns
for namespace include/exclude filtering to help users understand
the wildcard syntax.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
Signed-off-by: Joseph <jvaikath@redhat.com >
* Fix build-image Dockerfile envtest download
Replace inaccessible go.kubebuilder.io URL with setup-envtest and update envtest version to 1.33.0 to match Kubernetes v0.33.3 dependencies.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
Signed-off-by: Joseph <jvaikath@redhat.com >
* kubebuilder binaries mv
Signed-off-by: Joseph <jvaikath@redhat.com >
* Reject brace patterns and update documentation
Add {, }, and , to unsupported characters list to explicitly reject
brace expansion patterns. Remove { from wildcard detection since these
patterns are not supported in the 1.18 release.
Update all documentation to show supported patterns inline (*, ?, [abc])
with clickable links to the detailed namespace-glob-patterns page.
Simplify YAML comments by removing non-clickable URLs.
Update tests to expect errors when brace patterns are used.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
Signed-off-by: Joseph <jvaikath@redhat.com >
* Document brace expansion as unsupported
Add {} and , to the unsupported patterns section to clarify that
brace expansion patterns like {a,b,c} are not supported.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
Signed-off-by: Joseph <jvaikath@redhat.com >
* Update tests to expect brace pattern rejection
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
Signed-off-by: Joseph <jvaikath@redhat.com >
---------
Signed-off-by: Joseph <jvaikath@redhat.com >
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com >
2026-02-11 15:14:06 -05:00
Xun Jiang
9bfc78e769
Update the migration and upgrade test cases.
...
Run the E2E test on kind / get-go-version (push) Failing after 1m34s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Modify Dockerfile to fix GitHub CI action error.
Signed-off-by: Xun Jiang <xun.jiang@broadcom.com >
2026-02-11 14:56:55 +08:00
Xun Jiang/Bruce Jiang
c9e26256fa
Bump Golang version to v1.25.7 ( #9536 )
...
Run the E2E test on kind / get-go-version (push) Failing after 1m26s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Failing after 16s
Main CI / Build (push) Has been skipped
Fix test case issue and add UT.
Signed-off-by: Xun Jiang <xun.jiang@broadcom.com >
2026-02-10 15:50:23 -05:00
Wenkai Yin(尹文开)
6e315c32e2
Merge pull request #9530 from Lyndon-Li/release-1.18
...
Run the E2E test on kind / get-go-version (push) Failing after 1m55s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Failing after 12s
Main CI / Build (push) Has been skipped
[1.18] Move implemented design for 1.18
2026-02-09 11:18:40 +08:00
Lyndon-Li
91cbc40956
move implemented design for 1.18
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-02-06 18:56:05 +08:00
lyndon-li
556d5826a8
Merge pull request #9523 from Lyndon-Li/1.18-release-notes
...
Run the E2E test on kind / get-go-version (push) Failing after 1m20s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 15s
Main CI / Build (push) Failing after 38s
1.18 release note and changelog
2026-02-06 13:47:20 +08:00
Lyndon-Li
62939cec18
1.18 release note and changelog
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-02-06 13:18:59 +08:00
lyndon-li
7d6a10d3ea
Merge pull request #9524 from Lyndon-Li/1.18-doc
...
Add 1.18 doc
2026-02-06 13:16:17 +08:00
Xun Jiang/Bruce Jiang
1c0cf6c51d
Merge pull request #9525 from reasonerjt/add-broadcom-to-adopters
...
Run the E2E test on kind / get-go-version (push) Failing after 1m38s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 4s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 29s
Main CI / Build (push) Failing after 37s
Close stale issues and PRs / stale (push) Successful in 15s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m42s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m40s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m29s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m23s
Add Broadcom to adopters list
2026-02-05 18:33:27 +08:00
Daniel Jiang
58f0b29091
Add Broadcom to adopters list
...
Signed-off-by: Daniel Jiang <daniel.jiang@broadcom.com >
2026-02-05 17:24:49 +08:00
Lyndon-Li
5cb4cdba61
add 1.18 doc
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-02-05 15:23:39 +08:00
Xun Jiang/Bruce Jiang
325eb50480
Merge pull request #9522 from Lyndon-Li/1.18-readme
...
Update readme for 1.18
2026-02-05 15:15:40 +08:00
Lyndon-Li
993b80a350
update readme for 1.18
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-02-05 14:22:37 +08:00
Wenkai Yin(尹文开)
a909bd1f85
Merge pull request #9518 from blackpiglet/1.18_fix_cve
...
Run the E2E test on kind / get-go-version (push) Failing after 1m24s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 5s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 15s
Main CI / Build (push) Failing after 34s
Close stale issues and PRs / stale (push) Successful in 17s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m53s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m24s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m20s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m21s
Bump golang.org/x/crypto to v0.45.0 to fix CVEs in restic
2026-02-04 17:10:08 +08:00
Xun Jiang/Bruce Jiang
62a47b9fc5
Merge pull request #9521 from reasonerjt/cleanup-maintainers-md
...
Clean up MAINTAINERS.md
2026-02-04 16:10:42 +08:00
Daniel Jiang
31e9dcbb87
Clean up MAINTAINERS.md
...
Update the affiliation of maintainers from Broadcom.
Removes the company-specific roles.
Signed-off-by: Daniel Jiang <daniel.jiang@broadcom.com >
2026-02-04 15:34:14 +08:00
Xun Jiang
f824c3ca3b
Bump golang.org/x/crypto to v0.45.0 to fix CVEs.
...
* CVE-2025-47914
* CVE-2025-58181
Signed-off-by: Xun Jiang <xun.jiang@broadcom.com >
2026-02-03 17:23:01 +08:00
Xun Jiang/Bruce Jiang
386599638f
Merge pull request #9510 from Lyndon-Li/ignore-cache-volume-config-without-backup-repo-config
...
Run the E2E test on kind / get-go-version (push) Failing after 1m13s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 4s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 14s
Main CI / Build (push) Failing after 34s
Close stale issues and PRs / stale (push) Successful in 18s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m59s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m21s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m21s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m36s
Log when cache volume configured but backup repo is not
2026-02-02 10:50:20 +08:00
Lyndon-Li
9796da389d
ignore cache volume config when backup repo config is not provided
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-01-30 18:35:36 +08:00
Scott Seago
dfb1d45831
Remove backup from running list when backup fails validation ( #9498 )
...
Run the E2E test on kind / get-go-version (push) Failing after 1m4s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 12s
Main CI / Build (push) Failing after 32s
Close stale issues and PRs / stale (push) Successful in 15s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m34s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m16s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m30s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m16s
Signed-off-by: Scott Seago <sseago@redhat.com >
2026-01-27 16:25:30 -05:00
Xun Jiang/Bruce Jiang
72beb35edc
Maintenance Job only uses the first element of the LoadAffinity array from the ConfigMap. ( #9494 )
...
Run the E2E test on kind / get-go-version (push) Failing after 1m7s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 17s
Main CI / Build (push) Failing after 35s
Close stale issues and PRs / stale (push) Successful in 14s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m46s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m8s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m25s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m13s
Signed-off-by: Xun Jiang <xun.jiang@broadcom.com >
2026-01-23 14:27:50 -05:00
Wenkai Yin(尹文开)
7442d20f9d
Merge pull request #9481 from Lyndon-Li/issue-fix-9478
...
Run the E2E test on kind / get-go-version (push) Failing after 1m3s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 15s
Main CI / Build (push) Failing after 35s
Close stale issues and PRs / stale (push) Successful in 13s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m46s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m34s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m22s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m18s
Issue 9478: Diagnose expose on peek error
2026-01-15 16:53:57 +08:00
lyndon-li
4dfb47dd21
Merge pull request #9487 from Lyndon-Li/issue-fix-for-cache-volume
...
Fix issue for cache volume
2026-01-15 11:43:36 +08:00
Lyndon-Li
e72fea8ecd
fix issue for cache volume
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-01-14 17:45:01 +08:00
lyndon-li
f388a5ce51
update doc statement for Windows support ( #9486 )
...
Run the E2E test on kind / get-go-version (push) Failing after 1m7s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 4s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 13s
Main CI / Build (push) Failing after 1m1s
Close stale issues and PRs / stale (push) Successful in 13s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m31s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m20s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m17s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m5s
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-01-14 00:25:58 -05:00
Lyndon-Li
e703e06eeb
diagnose expose on peek error
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2026-01-13 16:33:14 +08:00
Wenkai Yin(尹文开)
1feaafc03e
Merge pull request #9474 from blackpiglet/add_role_rolebinding_in_restore_sequence
...
Run the E2E test on kind / get-go-version (push) Failing after 1m58s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 5s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 15s
Main CI / Build (push) Failing after 42m42s
Close stale issues and PRs / stale (push) Successful in 14s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m38s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m12s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m22s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m30s
Add Role, RoleBinding, ClusterRole, and ClusterRoleBinding in restore sequence
2026-01-08 11:58:06 +08:00
Xun Jiang/Bruce Jiang
e446ce54f6
Merge pull request #9473 from vmware-tanzu/fix_e2e_version_check_issue
...
Run the E2E test on kind / get-go-version (push) Failing after 1m29s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 14s
Main CI / Build (push) Failing after 44s
Close stale issues and PRs / stale (push) Successful in 16s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m44s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m14s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m15s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m20s
Fix the version regexp to make sure releaseRe and tegRe can support string like v1.16
2026-01-07 22:41:40 +08:00
Xun Jiang
b7289b51c7
Add Role, RoleBinding, ClusterRole, and ClusterRoleBinding in restore sequence.
...
Ensure the RBAC resources are restored before pods.
The change help to avoid pod starting error when pod depends on the RBAC resources,
e.g., prometheus operator check whether it has enough permission before launching
controller, if prometheus operator pod starts before RBAC resources created, it
will not launch controllers, and it will not retry.
f7f07bcdfb/cmd/operator/main.go (L392-L400)
Signed-off-by: Xun Jiang <xun.jiang@broadcom.com >
2026-01-07 12:40:23 +08:00
lyndon-li
6eae73f0bf
Merge pull request #9466 from Lyndon-Li/collect-kopia-content-log
...
Run the E2E test on kind / get-go-version (push) Failing after 1m9s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 13s
Main CI / Build (push) Failing after 33s
Close stale issues and PRs / stale (push) Successful in 14s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m49s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m24s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m56s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m28s
Collect kopia content log
2026-01-06 15:51:47 +08:00
Xun Jiang
07a3cf759d
Fix the version regexp to make sure releaseRe and tegRe can support string like v1.16.
...
Signed-off-by: Xun Jiang <xun.jiang@broadcom.com >
2026-01-06 11:51:59 +08:00
lyndon-li
8f8367be65
Merge pull request #9456 from lubronzhan/topic/lubron/fix_logger
...
Run the E2E test on kind / get-go-version (push) Failing after 2m6s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 4s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 13s
Main CI / Build (push) Failing after 35s
Close stale issues and PRs / stale (push) Successful in 15s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m38s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m21s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m16s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m11s
Fix: Update the logging to print correct affinity field
2026-01-05 13:50:55 +08:00
Lubron Zhan
0d80995e62
Update the logging to print correct affinity field
...
Signed-off-by: Lubron Zhan <lubronzhan@gmail.com >
2026-01-01 11:37:21 -08:00
Lyndon-Li
1425ebb369
collect kopia content log
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2025-12-31 15:42:14 +08:00
Lubron Zhan
04364ef2ca
Update the logging to print correct affinity field
...
Signed-off-by: Lubron Zhan <lubronzhan@gmail.com >
2025-12-30 11:00:49 -08:00
lyndon-li
3b5118b45e
Merge pull request #9463 from Lyndon-Li/kopia-bump-up-0.22.3
...
Run the E2E test on kind / get-go-version (push) Failing after 1m10s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 3s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 13s
Main CI / Build (push) Failing after 41s
Close stale issues and PRs / stale (push) Successful in 19s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m45s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m19s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m22s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m21s
Bump kopia to 0.22.3
2025-12-30 18:18:33 +08:00
Lyndon-Li
c556603ce2
bump kopia to 0.22.3
...
Signed-off-by: Lyndon-Li <lyonghui@vmware.com >
2025-12-30 16:44:52 +08:00