Skip to content

Fix yq expression syntax in configuration-converter#1519

Merged
istio-testing merged 1 commit intoistio-ecosystem:mainfrom
MaxBab:fix_configuration-converter_validate_spec_components_func
Jan 20, 2026
Merged

Fix yq expression syntax in configuration-converter#1519
istio-testing merged 1 commit intoistio-ecosystem:mainfrom
MaxBab:fix_configuration-converter_validate_spec_components_func

Conversation

@MaxBab
Copy link
Copy Markdown
Collaborator

@MaxBab MaxBab commented Jan 19, 2026

What type of PR is this?

  • Enhancement / New Feature
  • Bug Fix
  • Refactor
  • Optimization
  • Test
  • Documentation Update

What this PR does / why we need it:

The validate_spec_components function in configuration-converter.sh was failing with "Error: bad expression, please check expression syntax" on extracting "components" keys.

The original command attempted to delete non-"enabled" keys using: del(.spec.components.[] | keys[] | select(. != "enabled"))

This failed because:

  • .spec.components.[] incorrectly tries to iterate over object values
  • keys[] syntax doesn't work in this pipeline context in yq v4
  • select(. != "enabled") references values instead of key names
  • No proper context management for applying deletions back to document

Replaced with proper yq v4 syntax using the with() function.

Which issue(s) this PR fixes:

Fixes #

Related Issue/PR #

Additional information:

@MaxBab MaxBab requested a review from a team as a code owner January 19, 2026 19:07
The validate_spec_components function in configuration-converter.sh was
failing with "Error: bad expression, please check expression syntax"
on extracting "components" keys.

The original command attempted to delete non-"enabled" keys using:
del(.spec.components.[] | keys[] | select(. != "enabled"))

This failed because:
- `.spec.components.[]` incorrectly tries to iterate over object values
- `keys[]` syntax doesn't work in this pipeline context in yq v4
- `select(. != "enabled")` references values instead of key names
- No proper context management for applying deletions back to document

Replaced with proper yq v4 syntax using the `with()` function.

Signed-off-by: Maxim Babushkin <mbabushk@redhat.com>
@codecov
Copy link
Copy Markdown

codecov bot commented Jan 19, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 81.03%. Comparing base (c1aaf0e) to head (c743475).
⚠️ Report is 2 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1519      +/-   ##
==========================================
+ Coverage   80.94%   81.03%   +0.08%     
==========================================
  Files          44       44              
  Lines        2299     2299              
==========================================
+ Hits         1861     1863       +2     
+ Misses        322      321       -1     
+ Partials      116      115       -1     

☔ 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.

@MaxBab MaxBab force-pushed the fix_configuration-converter_validate_spec_components_func branch from e4a530f to c743475 Compare January 19, 2026 19:12
@MaxBab MaxBab changed the title Fix yq expression syntax in validate_spec_components function Fix yq expression syntax in configuration-converter Jan 19, 2026
@MaxBab
Copy link
Copy Markdown
Collaborator Author

MaxBab commented Jan 20, 2026

/test tools-hack-check

@istio-testing istio-testing merged commit 60cc479 into istio-ecosystem:main Jan 20, 2026
18 checks passed
@MaxBab MaxBab deleted the fix_configuration-converter_validate_spec_components_func branch January 20, 2026 11:05
@MaxBab
Copy link
Copy Markdown
Collaborator Author

MaxBab commented Jan 20, 2026

/cherry-pick release-1.28

@istio-testing
Copy link
Copy Markdown
Collaborator

@MaxBab: only istio-ecosystem org members may request cherry picks. If you are already part of the org, make sure to change your membership to public. Otherwise you can still do the cherry-pick manually.

Details

In response to this:

/cherry-pick release-1.28

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 20, 2026
* upstream/main:
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
@fjglira
Copy link
Copy Markdown
Contributor

fjglira commented Jan 20, 2026

/cherry-pick release-1.28

@fjglira
Copy link
Copy Markdown
Contributor

fjglira commented Jan 20, 2026

/cherry-pick release-1.27

@fjglira
Copy link
Copy Markdown
Contributor

fjglira commented Jan 20, 2026

/cherry-pick release-1.26

@istio-testing
Copy link
Copy Markdown
Collaborator

@fjglira: new pull request created: #1524

Details

In response to this:

/cherry-pick release-1.28

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@istio-testing
Copy link
Copy Markdown
Collaborator

@fjglira: new pull request created: #1525

Details

In response to this:

/cherry-pick release-1.27

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@istio-testing
Copy link
Copy Markdown
Collaborator

@fjglira: new pull request created: #1526

Details

In response to this:

/cherry-pick release-1.26

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 20, 2026
* upstream/main:
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 20, 2026
* upstream/main:
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 20, 2026
* upstream/main:
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 21, 2026
* upstream/main:
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 21, 2026
* upstream/main:
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 21, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 21, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 21, 2026
* upstream/main:
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 26, 2026
* upstream/main:
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 26, 2026
* upstream/main:
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 27, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 28, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  Fix profile column status (istio-ecosystem#1553)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 29, 2026
* upstream/main:
  Fix profile column status (istio-ecosystem#1553)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 30, 2026
* upstream/main:
  Fix profile column status (istio-ecosystem#1553)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 30, 2026
* upstream/main:
  Fix profile column status (istio-ecosystem#1553)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 30, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1557)
  Fix profile column status (istio-ecosystem#1553)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Jan 30, 2026
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1557)
  Fix profile column status (istio-ecosystem#1553)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1551)
  docs: Add comprehensive Istio Ambient Mode update and waypoint proxy procedures (istio-ecosystem#1279)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1549)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1546)
  fixing the step numbers in our docs (istio-ecosystem#1545)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1543)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1534)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1530)
  update eol istio versions (istio-ecosystem#1529)
  Enable external registry support for OCP e2e tests in CI (istio-ecosystem#1514)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1527)
  Fix yq expression syntax in configuration-converter (istio-ecosystem#1519)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1520)
  docs: Add Multi-Primary Multi-Network Ambient mode instructions (istio-ecosystem#1505)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1516)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1515)
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