Skip to content

docs-test: improve logging#1433

Merged
istio-testing merged 1 commit intoistio-ecosystem:mainfrom
dgn:docs-test-improvements
Dec 10, 2025
Merged

docs-test: improve logging#1433
istio-testing merged 1 commit intoistio-ecosystem:mainfrom
dgn:docs-test-improvements

Conversation

@dgn
Copy link
Copy Markdown
Collaborator

@dgn dgn commented Dec 10, 2025

logs of individual tests are now written to their own files in the prow artifacts directory. also, start, ending and individual steps in a test are printed differently so that it's easier to navigate the logs.

@dgn dgn requested a review from a team as a code owner December 10, 2025 11:10
@dgn dgn force-pushed the docs-test-improvements branch from a2d711b to 1c407ae Compare December 10, 2025 11:11
@codecov
Copy link
Copy Markdown

codecov bot commented Dec 10, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 80.38%. Comparing base (43234a9) to head (c5b25b7).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1433      +/-   ##
==========================================
- Coverage   80.77%   80.38%   -0.40%     
==========================================
  Files          44       44              
  Lines        2299     2299              
==========================================
- Hits         1857     1848       -9     
- Misses        324      330       +6     
- Partials      118      121       +3     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

logs of individual tests are now written to their own files in the prow
artifacts directory. also, start, ending and individual steps in a test
are printed differently so that it's easier to navigate the logs.

Signed-off-by: Daniel Grimm <dgrimm@redhat.com>
@dgn dgn force-pushed the docs-test-improvements branch from 1c407ae to c5b25b7 Compare December 10, 2025 11:43
@dgn
Copy link
Copy Markdown
Collaborator Author

dgn commented Dec 10, 2025

Example output from docs-test job:

##### Test dual-stack: start


##### Test dual-stack: Step 1: Create the Istio resource with dual-stack configuration.

Error from server (NotFound): namespaces "istio-system" not found
namespace/istio-system created
istio.sailoperator.io/default created
istio.sailoperator.io/default condition met

##### Test dual-stack: Step 2: Create the following namespaces, each hosting the tcp-echo service with the specified configuration.

Error from server (NotFound): namespaces "dual-stack" not found
namespace/dual-stack created
Error from server (NotFound): namespaces "ipv4" not found
namespace/ipv4 created
Error from server (NotFound): namespaces "ipv6" not found
namespace/ipv6 created
Error from server (NotFound): namespaces "sleep" not found
namespace/sleep created

##### Test dual-stack: Step 3: Label the namespaces for sidecar injection.

namespace/dual-stack labeled
namespace/ipv4 labeled
namespace/ipv6 labeled
namespace/sleep labeled

##### Test dual-stack: Step 4: Deploy the pods and services in their respective namespaces.

service/tcp-echo created
deployment.apps/tcp-echo created
service/tcp-echo created
deployment.apps/tcp-echo created
service/tcp-echo created
deployment.apps/tcp-echo created
serviceaccount/sleep created
service/sleep created
deployment.apps/sleep created
pod/sleep-7cccf64445-4cccv condition met
pod/tcp-echo-b44db6ccc-dn8zw condition met
pod/tcp-echo-b44db6ccc-vtm2p condition met
pod/tcp-echo-b44db6ccc-s7mxm condition met

##### Test dual-stack: Step 5: Ensure that the tcp-echo service in the dual-stack namespace is configured with ipFamilyPolicy of RequireDualStack.

RequireDualStack
ipFamilyPolicy is set to RequireDualStack as expected

##### Test dual-stack: Step 6: Verify that sleep pod is able to reach the dual-stack pods.

hello dualstack
Sleep can reach tcp-echo.dual-stack pod as expected

##### Test dual-stack: Step 7: Similarly verify that sleep pod is able to reach both ipv4 pods as well as ipv6 pods.

hello ipv4
Sleep can reach tcp-echo.ipv4 pod as expected

##### Test dual-stack: Step 8

hello ipv6
Sleep can reach tcp-echo.ipv6 pod as expected

##### Test dual-stack completed: PASS

@fjglira
Copy link
Copy Markdown
Contributor

fjglira commented Dec 10, 2025

Example output from docs-test job:

##### Test dual-stack: start


##### Test dual-stack: Step 1: Create the Istio resource with dual-stack configuration.

Error from server (NotFound): namespaces "istio-system" not found
namespace/istio-system created
istio.sailoperator.io/default created
istio.sailoperator.io/default condition met

##### Test dual-stack: Step 2: Create the following namespaces, each hosting the tcp-echo service with the specified configuration.

Error from server (NotFound): namespaces "dual-stack" not found
namespace/dual-stack created
Error from server (NotFound): namespaces "ipv4" not found
namespace/ipv4 created
Error from server (NotFound): namespaces "ipv6" not found
namespace/ipv6 created
Error from server (NotFound): namespaces "sleep" not found
namespace/sleep created

##### Test dual-stack: Step 3: Label the namespaces for sidecar injection.

namespace/dual-stack labeled
namespace/ipv4 labeled
namespace/ipv6 labeled
namespace/sleep labeled

##### Test dual-stack: Step 4: Deploy the pods and services in their respective namespaces.

service/tcp-echo created
deployment.apps/tcp-echo created
service/tcp-echo created
deployment.apps/tcp-echo created
service/tcp-echo created
deployment.apps/tcp-echo created
serviceaccount/sleep created
service/sleep created
deployment.apps/sleep created
pod/sleep-7cccf64445-4cccv condition met
pod/tcp-echo-b44db6ccc-dn8zw condition met
pod/tcp-echo-b44db6ccc-vtm2p condition met
pod/tcp-echo-b44db6ccc-s7mxm condition met

##### Test dual-stack: Step 5: Ensure that the tcp-echo service in the dual-stack namespace is configured with ipFamilyPolicy of RequireDualStack.

RequireDualStack
ipFamilyPolicy is set to RequireDualStack as expected

##### Test dual-stack: Step 6: Verify that sleep pod is able to reach the dual-stack pods.

hello dualstack
Sleep can reach tcp-echo.dual-stack pod as expected

##### Test dual-stack: Step 7: Similarly verify that sleep pod is able to reach both ipv4 pods as well as ipv6 pods.

hello ipv4
Sleep can reach tcp-echo.ipv4 pod as expected

##### Test dual-stack: Step 8

hello ipv6
Sleep can reach tcp-echo.ipv6 pod as expected

##### Test dual-stack completed: PASS

This is amazing, way better than looking into the actual logs

Copy link
Copy Markdown
Contributor

@fjglira fjglira left a comment

Choose a reason for hiding this comment

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

LGTM, I really like this change, improve a lot the readability of the test result and make easier to debug errors

@istio-testing istio-testing merged commit c96aa9a into istio-ecosystem:main Dec 10, 2025
16 of 17 checks passed
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (22 commits)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (22 commits)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (22 commits)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (23 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (23 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (23 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (23 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (24 commits)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (24 commits)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (24 commits)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (24 commits)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 19, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 22, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 22, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 22, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 22, 2025
* upstream/main: (25 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1473)
  fix: allow automator commits without message (istio-ecosystem#1470)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1466)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants