diff --git a/README.md b/README.md
index 2c91c52865..f13e0df58d 100644
--- a/README.md
+++ b/README.md
@@ -13,25 +13,27 @@ The Sail Operator manages the lifecycle of your [Istio](https://istio.io) contro
We have a weekly call every Thursday at 4PM CET / 10AM EST to discuss current progress and future plans. To add it to your Google Calendar, you can [subscribe to the Sail Operator calendar](https://calendar.google.com/calendar/u/0?cid=MDRhNzBkZjUwNmI5ZjFlMTAyYmUzZDhiZTFlNDA3ZjRlMjcwZjAzNmY4NDFkZTA1MmYzYzczYjk3OTU4ZGI2MUBncm91cC5jYWxlbmRhci5nb29nbGUuY29t).
## User Documentation
+
This document aims to provide an overview of the project and some information for contributors. For information on how to use the operator, take a look at the [User Documentation](docs/README.adoc).
## Table of Contents
- [How it works](#how-it-works)
- [Getting Started](#getting-started)
- - [Deploying the operator from source](#deploying-the-operator-from-source)
- - [Deploying the operator by using Helm charts](#deploying-the-operator-by-using-helm-charts)
- - [Deploying the Istio Control Plane](#deploying-the-istio-control-plane)
- - [Undeploying the operator](#undeploying-the-operator)
+ - [Deploying the operator from source](#deploying-the-operator-from-source)
+ - [Deploying the operator by using Helm charts](#deploying-the-operator-by-using-helm-charts)
+ - [Deploying the Istio Control Plane](#deploying-the-istio-control-plane)
+ - [Undeploying the operator](#undeploying-the-operator)
- [Development](#development)
- - [Repository Setup](#repository-setup)
- - [Test It Out](#test-it-out)
- - [Modifying the API definitions](#modifying-the-api-definitions)
- - [Writing Tests](#writing-tests)
- - [Integration Tests](#integration-tests)
- - [End-to-End Tests](#end-to-end-tests)
- - [Vendor-specific changes](#vendor-specific-changes)
- - [Developing on macOS](#developing-on-macos)
+ - [Repository Setup](#repository-setup)
+ - [Test It Out](#test-it-out)
+ - [Modifying the API definitions](#modifying-the-api-definitions)
+ - [Writing Tests](#writing-tests)
+ - [Integration Tests](#integration-tests)
+ - [End-to-End Tests](#end-to-end-tests)
+ - [Vendor-specific changes](#vendor-specific-changes)
+ - [Developing on macOS](#developing-on-macos)
+ - [Synchronization with Istio](#synchronization-with-istio)
- [Release process](#release-process)
- [Versioning and Support Policy](#versioning-and-support-policy)
- [Community Support and Contributing](#community-support-and-contributing)
@@ -85,7 +87,7 @@ spec:
meshConfig:
trustDomain: example.com
trustDomainAliases:
- - example.net
+ - example.net
```
## Getting Started
@@ -210,6 +212,7 @@ kubectl get ztunnel default
For other deployment options, refer to the [docs](docs) directory.
### Undeploying the operator
+
Undeploy the operator from the cluster:
```sh
@@ -305,6 +308,10 @@ As you might know, the Sail Operator project serves as the community upstream fo
There are some considerations that you need to take into account while trying to develop, debug and work on macOS and specially if you are using Podman instead on Docker. Please take a look into this [documentation](/docs/macos/develop-on-macos.adoc) for macOS specifics.
+### Synchronization with Istio
+
+This repo uses a few different workflows to stay in sync with [Istio](github.com/istio/istio). See [SYNC](./SYNC.md) for more detail.
+
#### versions.yaml
The name of the versions.yaml file can be overwritten using the VERSIONS_YAML_FILE environment variable. This way, downstream vendors can point to a custom list of supported versions. Note that this file should be located in the `pkg/istioversion` directory, with the default value being `versions.yaml`.
@@ -335,9 +342,11 @@ When running multiple Istio components (control plane, IstioCNI, ZTunnel), each
> The first stable 1.0 release did not follow this versioning strategy but subsequent releases will.
## Community Support and Contributing
+
Please refer to the [CONTRIBUTING-SAIL-PROJECT.md](CONTRIBUTING.md) file for more information on how to contribute to the Sail Operator project. This file contains all the information you need to get started with contributing to the project.
## AI Agents for Development
+
If you're using AI coding assistants like Claude, GitHub Copilot, or Cursor, check out our [AI Agents Guide](docs/ai/ai-agents-guide.adoc) for information on how to configure these tools to understand Sail Operator patterns and best practices.
## Sail Enhancement Proposal
@@ -347,6 +356,7 @@ SEP documents are used to propose and discuss non-trivial features or epics and
SEP documents are stored in the [enhancements](enhancements) directory of the Sail Operator repository in Markdown format. If you want to create a SEP, be sure to check out the [SEP template](enhancements/SEP0-template.md).
## Issue management
+
Please refer to the [ISSUE-MANAGEMENT.md](ISSUE-MANAGEMENT.md) file for more information on how to report bugs and feature requests to the Sail Operator team.
If you found a bug in Istio, please refer to the [Istio GitHub repository](BUGS-AND-FEATURE-REQUESTS.md)
diff --git a/SYNC.md b/SYNC.md
new file mode 100644
index 0000000000..a8b3339488
--- /dev/null
+++ b/SYNC.md
@@ -0,0 +1,121 @@
+# Sync Jobs
+
+This document describes the automated workflows that keep the Sail Operator in sync with upstream Istio and its dependencies.
+
+## Overview
+
+The Sail Operator uses several scheduled GitHub Actions workflows to track upstream Istio releases, update Go dependencies, manage end-of-life versions, and publish operator images. All automated PRs are created by the [Istio Automator](https://github.com/istio/test-infra/tree/master/tools/automator) tool running inside the `registry.istio.io/testing/build-tools` container.
+
+```mermaid
+flowchart TB
+ subgraph upstream["Upstream Sources"]
+ istio_repo["istio/istio
(releases + source)"]
+ eol_api["endoflife.date API"]
+ tools_repos["Tool repos
(operator-sdk, Helm,
controller-runtime, etc.)"]
+ gw_api["kubernetes-sigs/
gateway-api"]
+ end
+
+ subgraph gha["GitHub Actions (istio-ecosystem/sail-operator)"]
+ update_deps["Update Dependencies
(daily)"]
+ update_eol["Update EOL Versions
(daily)"]
+ nightly["Nightly Build
(daily)"]
+ vtb["Versions-Triggered Build
(on versions.yaml change)"]
+ clean["Clean Nightlies
(daily)"]
+ end
+
+ subgraph artifacts["Published Artifacts"]
+ quay["quay.io
operator images"]
+ operatorhub["OpenShift
OperatorHub"]
+ end
+
+ istio_repo --> update_deps
+ tools_repos --> update_deps
+ gw_api --> update_deps
+ eol_api --> update_eol
+
+ update_deps -->|"updates versions.yaml"| vtb
+ vtb --> quay
+ nightly --> quay
+ nightly --> operatorhub
+ clean --> operatorhub
+```
+
+## Workflows
+
+### 1. Update Dependencies
+
+The primary sync job. It runs against `main` and each active release branch (`release-1.28`, `release-1.29`, `release-1.30`), creating separate PRs for each. PRs are labeled `auto-merge` and are merged automatically by `istio-testing` once CI passes. If a PR fails due to a merge conflict or test failure, manual intervention is required to resolve the issue before it can merge.
+
+**Workflow:** [update-deps.yaml](.github/workflows/update-deps.yaml)
+
+**Schedule:** Daily
+
+**Example PR:** [#1899](https://github.com/istio-ecosystem/sail-operator/pull/1899)
+
+**What it updates:**
+
+| Category | Details |
+| --- | --- |
+| **Istio Go modules** | `istio.io/istio` and `istio.io/client-go` pulled from the upstream branch (`master` for main, release branch for release branches). Skipped on release branches (`TOOLS_ONLY=true`). |
+| **Istio versions** | Runs `make update-istio` (via `hack/update-istio.sh`) to detect new stable Istio releases and pre-release builds, adding them to `pkg/istioversion/versions.yaml`. Skipped on release branches. |
+| **Istio sample manifests** | Downloads latest `helloworld`, `httpbin`, `sleep`, and `tcp-echo` samples from the upstream Istio repo into `tests/e2e/samples/`. These samples are used in e2e testing and by downloading them to the repo ahead of time we avoid having Github as a failure point for the tests. |
+| **Tool versions** | Updates operator-sdk, Helm, controller-tools, controller-runtime, opm, OLM, gitleaks, runme, misspell, and KIND node image to their latest releases. On release branches, updates are pinned to the current minor version (patch-only). |
+| **Gateway API CRDs** | Downloads the latest `experimental-install.yaml` from `kubernetes-sigs/gateway-api`. The Gateway API CRDs are used in e2e testing and by downloading them to the repo ahead of time we avoid having Github as a failure point for the tests. |
+| **Istio build-tools image** | Updates the container image tag used by the `update-deps` and `update-eol-versions` workflows themselves. |
+| **Documentation** | Runs `hack/update-istio-in-docs.sh` to update Istio version variables in `.adoc` files under `docs/`. |
+| **Common files** | Runs `make update-common` to sync shared build scripts and tooling from `istio/common-files`. |
+
+After all updates, the script runs `make gen` to regenerate CRDs, manifests, and generated code.
+
+**Branch behavior:**
+
+- **Main**: Full update including Istio modules, new Istio versions, tools, and samples.
+- **Release branches**: Tools-only updates with versions pinned to the current minor (`PIN_MINOR=true`, `TOOLS_ONLY=true`). No new Istio versions are added and Istio Go modules are not updated.
+
+### 2. Update Istio Versions
+
+Called by the update-deps workflow (not a standalone workflow), this script performs two types of Istio version tracking:
+
+- **Stable releases:** Queries the GitHub releases API for `istio/istio`, compares against versions in `versions.yaml`, and adds new patch releases when found. Updates the `vX.Y-latest` alias to point to the newest patch.
+- **Pre-release (dev) builds:** Checks the upstream branch for new commits, waits for build artifacts to appear on GCS (`istio-build/dev/`), and updates the dev version entry with the new commit hash, version string, and chart URLs. Updates the `master` alias accordingly.
+
+### 3. Update EOL Versions
+
+Marks Istio versions as end-of-life when they are no longer supported upstream. Unlike update-deps, these PRs are **not** auto-merged and require manual review.
+
+**Workflow:** [update-eol-versions.yaml](.github/workflows/update-eol-versions.yaml)
+
+**Schedule:** Daily
+
+**Example PR:** [#1821](https://github.com/istio-ecosystem/sail-operator/pull/1821)
+
+### 4. Versions-Triggered Build
+
+This workflow fires whenever the versions file changes on `main` (typically from a merged update-deps PR). It builds and pushes a new operator image to `quay.io` using `make docker-buildx`, ensuring a fresh image is available immediately after version updates land.
+
+**Workflow:** [versions-triggered-build.yaml](.github/workflows/versions-triggered-build.yaml)
+
+**Trigger:** Push to `main` that modifies `pkg/istioversion/versions.yaml`
+
+### 5. Nightly Image Build
+
+Builds and publishes a nightly operator image to
+
+1. [quay.io](https://quay.io/repository/sail-dev/sail-operator)
+2. [OpenShift OperatorHub](https://github.com/redhat-openshift-ecosystem/community-operators-prod/tree/main/operators/sailoperator)
+
+**Workflow:** [nightly-images.yaml](.github/workflows/nightly-images.yaml)
+
+**Schedule:** Daily
+
+**Example PR:** [community-operators-prod#9564](https://github.com/redhat-openshift-ecosystem/community-operators-prod/pull/9564)
+
+### 6. Clean Nightly Images
+
+Removes nightly OLM bundle releases older than 2 weeks from the [community-operators-prod](https://github.com/redhat-openshift-ecosystem/community-operators-prod/tree/main/operators/sailoperator) repo to avoid unbounded growth of nightly entries.
+
+**Workflow:** [clean-nightly-images.yaml](.github/workflows/clean-nightly-images.yaml)
+
+**Schedule:** Daily
+
+**Example PR:** [community-operators-prod#9401](https://github.com/redhat-openshift-ecosystem/community-operators-prod/pull/9401)
diff --git a/api/v1/istio_types.go b/api/v1/istio_types.go
index f314d4a8ce..4bb2960953 100644
--- a/api/v1/istio_types.go
+++ b/api/v1/istio_types.go
@@ -35,9 +35,9 @@ const (
type IstioSpec struct {
// +sail:version
// Defines the version of Istio to install.
- // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
- // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d"}
- // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;v1.23-latest;v1.23.6;v1.23.5;v1.23.4;v1.23.3;v1.23.2;v1.22-latest;v1.22.8;v1.22.7;v1.22.6;v1.22.5;v1.21.6;master;v1.31.0-alpha.8dbc3a3d
+ // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
+ // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe"}
+ // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;v1.23-latest;v1.23.6;v1.23.5;v1.23.4;v1.23.3;v1.23.2;v1.22-latest;v1.22.8;v1.22.7;v1.22.6;v1.22.5;v1.21.6;master;v1.31.0-alpha.d90b05fe
// +kubebuilder:default=v1.30.0-alpha.2
Version string `json:"version"`
diff --git a/api/v1/istiocni_types.go b/api/v1/istiocni_types.go
index 3c6c9f577d..0f485f2b97 100644
--- a/api/v1/istiocni_types.go
+++ b/api/v1/istiocni_types.go
@@ -26,9 +26,9 @@ const (
type IstioCNISpec struct {
// +sail:version
// Defines the version of Istio to install.
- // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
- // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d"}
- // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;v1.23-latest;v1.23.6;v1.23.5;v1.23.4;v1.23.3;v1.23.2;v1.22-latest;v1.22.8;v1.22.7;v1.22.6;v1.22.5;v1.21.6;master;v1.31.0-alpha.8dbc3a3d
+ // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
+ // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe"}
+ // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;v1.23-latest;v1.23.6;v1.23.5;v1.23.4;v1.23.3;v1.23.2;v1.22-latest;v1.22.8;v1.22.7;v1.22.6;v1.22.5;v1.21.6;master;v1.31.0-alpha.d90b05fe
// +kubebuilder:default=v1.30.0-alpha.2
Version string `json:"version"`
diff --git a/api/v1/istiorevision_types.go b/api/v1/istiorevision_types.go
index e4620f8b7e..764d378bf4 100644
--- a/api/v1/istiorevision_types.go
+++ b/api/v1/istiorevision_types.go
@@ -28,9 +28,9 @@ const (
type IstioRevisionSpec struct {
// +sail:version
// Defines the version of Istio to install.
- // Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.8dbc3a3d.
- // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d"}
- // +kubebuilder:validation:Enum=v1.30.0-alpha.2;v1.29.2;v1.29.1;v1.29.0;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;v1.23.6;v1.23.5;v1.23.4;v1.23.3;v1.23.2;v1.22.8;v1.22.7;v1.22.6;v1.22.5;v1.21.6;v1.31.0-alpha.8dbc3a3d
+ // Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.d90b05fe.
+ // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe"}
+ // +kubebuilder:validation:Enum=v1.30.0-alpha.2;v1.29.2;v1.29.1;v1.29.0;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;v1.23.6;v1.23.5;v1.23.4;v1.23.3;v1.23.2;v1.22.8;v1.22.7;v1.22.6;v1.22.5;v1.21.6;v1.31.0-alpha.d90b05fe
Version string `json:"version"`
// Namespace to which the Istio components should be installed.
diff --git a/api/v1/ztunnel_types.go b/api/v1/ztunnel_types.go
index 5ebe4abba5..7d64e3dd1a 100644
--- a/api/v1/ztunnel_types.go
+++ b/api/v1/ztunnel_types.go
@@ -26,9 +26,9 @@ const (
type ZTunnelSpec struct {
// +sail:version
// Defines the version of Istio to install.
- // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
- // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d"}
- // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;master;v1.31.0-alpha.8dbc3a3d
+ // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
+ // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe"}
+ // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;master;v1.31.0-alpha.d90b05fe
// +kubebuilder:default=v1.30.0-alpha.2
Version string `json:"version"`
diff --git a/api/v1alpha1/ztunnel_types.go b/api/v1alpha1/ztunnel_types.go
index 9dfd8a12c1..073a3e6378 100644
--- a/api/v1alpha1/ztunnel_types.go
+++ b/api/v1alpha1/ztunnel_types.go
@@ -27,9 +27,9 @@ const (
type ZTunnelSpec struct {
// +sail:version
// Defines the version of Istio to install.
- // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
- // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d"}
- // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;master;v1.31.0-alpha.8dbc3a3d
+ // Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
+ // +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.30-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.30.0-alpha.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.29.0", "urn:alm:descriptor:com.tectonic.ui:select:v1.28-latest", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.4", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.28.0", "urn:alm:descriptor:com.tectonic.ui:select:master", "urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe"}
+ // +kubebuilder:validation:Enum=v1.30-latest;v1.30.0-alpha.2;v1.29-latest;v1.29.2;v1.29.1;v1.29.0;v1.28-latest;v1.28.6;v1.28.5;v1.28.4;v1.28.3;v1.28.2;v1.28.1;v1.28.0;v1.27-latest;v1.27.9;v1.27.8;v1.27.7;v1.27.6;v1.27.5;v1.27.4;v1.27.3;v1.27.2;v1.27.1;v1.27.0;v1.26-latest;v1.26.8;v1.26.7;v1.26.6;v1.26.5;v1.26.4;v1.26.3;v1.26.2;v1.26.1;v1.26.0;v1.25-latest;v1.25.5;v1.25.4;v1.25.3;v1.25.2;v1.25.1;v1.24-latest;v1.24.6;v1.24.5;v1.24.4;v1.24.3;v1.24.2;v1.24.1;v1.24.0;master;v1.31.0-alpha.d90b05fe
// +kubebuilder:default=v1.30.0-alpha.2
Version string `json:"version"`
diff --git a/bundle/manifests/sailoperator.io_istiocnis.yaml b/bundle/manifests/sailoperator.io_istiocnis.yaml
index 04cea0f8cf..9c0ad69b74 100644
--- a/bundle/manifests/sailoperator.io_istiocnis.yaml
+++ b/bundle/manifests/sailoperator.io_istiocnis.yaml
@@ -1472,7 +1472,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -1536,7 +1536,7 @@ spec:
- v1.22.5
- v1.21.6
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/bundle/manifests/sailoperator.io_istiorevisions.yaml b/bundle/manifests/sailoperator.io_istiorevisions.yaml
index 7b24128fd5..fb89d613c2 100644
--- a/bundle/manifests/sailoperator.io_istiorevisions.yaml
+++ b/bundle/manifests/sailoperator.io_istiorevisions.yaml
@@ -10243,7 +10243,7 @@ spec:
version:
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.d90b05fe.
enum:
- v1.30.0-alpha.2
- v1.29.2
@@ -10297,7 +10297,7 @@ spec:
- v1.22.6
- v1.22.5
- v1.21.6
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/bundle/manifests/sailoperator.io_istios.yaml b/bundle/manifests/sailoperator.io_istios.yaml
index ab3571c51b..bba8f81dff 100644
--- a/bundle/manifests/sailoperator.io_istios.yaml
+++ b/bundle/manifests/sailoperator.io_istios.yaml
@@ -10317,7 +10317,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -10381,7 +10381,7 @@ spec:
- v1.22.5
- v1.21.6
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/bundle/manifests/sailoperator.io_ztunnels.yaml b/bundle/manifests/sailoperator.io_ztunnels.yaml
index 5d6b8bfeee..4d436ddbd2 100644
--- a/bundle/manifests/sailoperator.io_ztunnels.yaml
+++ b/bundle/manifests/sailoperator.io_ztunnels.yaml
@@ -3536,7 +3536,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -3588,7 +3588,7 @@ spec:
- v1.24.1
- v1.24.0
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
@@ -7169,7 +7169,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -7221,7 +7221,7 @@ spec:
- v1.24.1
- v1.24.0
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/bundle/manifests/servicemeshoperator3.clusterserviceversion.yaml b/bundle/manifests/servicemeshoperator3.clusterserviceversion.yaml
index c12e259634..5e57ead9aa 100644
--- a/bundle/manifests/servicemeshoperator3.clusterserviceversion.yaml
+++ b/bundle/manifests/servicemeshoperator3.clusterserviceversion.yaml
@@ -45,7 +45,7 @@ metadata:
capabilities: Seamless Upgrades
categories: OpenShift Optional, Integration & Delivery, Networking, Security
containerImage: quay.io/sail-dev/sail-operator:3.0-latest
- createdAt: "2026-05-06T06:08:02Z"
+ createdAt: "2026-05-07T06:09:02Z"
description: The OpenShift Service Mesh Operator enables you to install, configure, and manage an instance of Red Hat OpenShift Service Mesh. OpenShift Service Mesh is based on the open source Istio project.
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "true"
@@ -183,7 +183,7 @@ spec:
specDescriptors:
- description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
displayName: Istio Version
path: version
x-descriptors:
@@ -203,7 +203,7 @@ spec:
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.1
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.0
- urn:alm:descriptor:com.tectonic.ui:select:master
- - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d
+ - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe
- description: Namespace to which the Istio CNI component should be installed. Note that this field is immutable.
displayName: Namespace
path: namespace
@@ -241,7 +241,7 @@ spec:
specDescriptors:
- description: |-
Defines the version of Istio to install.
- Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.d90b05fe.
displayName: Istio Version
path: version
x-descriptors:
@@ -257,7 +257,7 @@ spec:
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.2
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.1
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.0
- - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d
+ - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe
- description: Namespace to which the Istio components should be installed.
displayName: Namespace
path: namespace
@@ -292,7 +292,7 @@ spec:
- urn:alm:descriptor:com.tectonic.ui:select:RevisionBased
- description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
displayName: Istio Version
path: version
x-descriptors:
@@ -312,7 +312,7 @@ spec:
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.1
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.0
- urn:alm:descriptor:com.tectonic.ui:select:master
- - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d
+ - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe
- description: |-
Defines how many seconds the operator should wait before removing a non-active revision after all
the workloads have stopped using it. You may want to set this value on the order of minutes.
@@ -368,7 +368,7 @@ spec:
specDescriptors:
- description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
displayName: Istio Version
path: version
x-descriptors:
@@ -388,7 +388,7 @@ spec:
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.1
- urn:alm:descriptor:com.tectonic.ui:select:v1.28.0
- urn:alm:descriptor:com.tectonic.ui:select:master
- - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.8dbc3a3d
+ - urn:alm:descriptor:com.tectonic.ui:select:v1.31.0-alpha.d90b05fe
- description: Namespace to which the Istio ztunnel component should be installed.
displayName: Namespace
path: namespace
diff --git a/chart/crds/sailoperator.io_istiocnis.yaml b/chart/crds/sailoperator.io_istiocnis.yaml
index d7927d6c85..cfc4f61c4f 100644
--- a/chart/crds/sailoperator.io_istiocnis.yaml
+++ b/chart/crds/sailoperator.io_istiocnis.yaml
@@ -1472,7 +1472,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -1536,7 +1536,7 @@ spec:
- v1.22.5
- v1.21.6
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/chart/crds/sailoperator.io_istiorevisions.yaml b/chart/crds/sailoperator.io_istiorevisions.yaml
index 49d3e37f35..550ae0d443 100644
--- a/chart/crds/sailoperator.io_istiorevisions.yaml
+++ b/chart/crds/sailoperator.io_istiorevisions.yaml
@@ -10243,7 +10243,7 @@ spec:
version:
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.d90b05fe.
enum:
- v1.30.0-alpha.2
- v1.29.2
@@ -10297,7 +10297,7 @@ spec:
- v1.22.6
- v1.22.5
- v1.21.6
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/chart/crds/sailoperator.io_istios.yaml b/chart/crds/sailoperator.io_istios.yaml
index 6e07c9ae63..484b3f2c75 100644
--- a/chart/crds/sailoperator.io_istios.yaml
+++ b/chart/crds/sailoperator.io_istios.yaml
@@ -10317,7 +10317,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -10381,7 +10381,7 @@ spec:
- v1.22.5
- v1.21.6
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/chart/crds/sailoperator.io_ztunnels.yaml b/chart/crds/sailoperator.io_ztunnels.yaml
index 05da36a3d6..dcea3f4a21 100644
--- a/chart/crds/sailoperator.io_ztunnels.yaml
+++ b/chart/crds/sailoperator.io_ztunnels.yaml
@@ -3536,7 +3536,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -3588,7 +3588,7 @@ spec:
- v1.24.1
- v1.24.0
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
@@ -7169,7 +7169,7 @@ spec:
default: v1.30.0-alpha.2
description: |-
Defines the version of Istio to install.
- Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d.
+ Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe.
enum:
- v1.30-latest
- v1.30.0-alpha.2
@@ -7221,7 +7221,7 @@ spec:
- v1.24.1
- v1.24.0
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
type: string
required:
- namespace
diff --git a/chart/values.yaml b/chart/values.yaml
index a036dfaacf..1ab8253cdb 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -32,7 +32,7 @@ csv:
- v1.28.1
- v1.28.0
- master
- - v1.31.0-alpha.8dbc3a3d
+ - v1.31.0-alpha.d90b05fe
[See this page](https://github.com/istio-ecosystem/sail-operator/blob/main/bundle/README.md) for instructions on how to use it.
support: Community based
diff --git a/docs/api-reference/sailoperator.io.md b/docs/api-reference/sailoperator.io.md
index 92a80867e0..79047ac9e3 100644
--- a/docs/api-reference/sailoperator.io.md
+++ b/docs/api-reference/sailoperator.io.md
@@ -652,7 +652,7 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
-| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 v1.23-latest v1.23.6 v1.23.5 v1.23.4 v1.23.3 v1.23.2 v1.22-latest v1.22.8 v1.22.7 v1.22.6 v1.22.5 v1.21.6 master v1.31.0-alpha.8dbc3a3d] |
+| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 v1.23-latest v1.23.6 v1.23.5 v1.23.4 v1.23.3 v1.23.2 v1.22-latest v1.22.8 v1.22.7 v1.22.6 v1.22.5 v1.21.6 master v1.31.0-alpha.d90b05fe] |
| `profile` _string_ | The built-in installation configuration profile to use. The 'default' profile is always applied. On OpenShift, the 'openshift' profile is also applied on top of 'default'. Must be one of: ambient, default, demo, empty, openshift, openshift-ambient, preview, remote, stable. | | Enum: [ambient default demo empty external openshift openshift-ambient preview remote stable] |
| `namespace` _string_ | Namespace to which the Istio CNI component should be installed. Note that this field is immutable. | istio-cni | |
| `values` _[CNIValues](#cnivalues)_ | Defines the values to be passed to the Helm charts when installing Istio CNI. | | |
@@ -762,7 +762,7 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
-| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.8dbc3a3d. | | Enum: [v1.30.0-alpha.2 v1.29.2 v1.29.1 v1.29.0 v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 v1.23.6 v1.23.5 v1.23.4 v1.23.3 v1.23.2 v1.22.8 v1.22.7 v1.22.6 v1.22.5 v1.21.6 v1.31.0-alpha.8dbc3a3d] |
+| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30.0-alpha.2, v1.29.2, v1.29.1, v1.29.0, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, v1.31.0-alpha.d90b05fe. | | Enum: [v1.30.0-alpha.2 v1.29.2 v1.29.1 v1.29.0 v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 v1.23.6 v1.23.5 v1.23.4 v1.23.3 v1.23.2 v1.22.8 v1.22.7 v1.22.6 v1.22.5 v1.21.6 v1.31.0-alpha.d90b05fe] |
| `namespace` _string_ | Namespace to which the Istio components should be installed. | | |
| `values` _[Values](#values)_ | Defines the values to be passed to the Helm charts when installing Istio. | | |
@@ -880,7 +880,7 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
-| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 v1.23-latest v1.23.6 v1.23.5 v1.23.4 v1.23.3 v1.23.2 v1.22-latest v1.22.8 v1.22.7 v1.22.6 v1.22.5 v1.21.6 master v1.31.0-alpha.8dbc3a3d] |
+| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 v1.23-latest v1.23.6 v1.23.5 v1.23.4 v1.23.3 v1.23.2 v1.22-latest v1.22.8 v1.22.7 v1.22.6 v1.22.5 v1.21.6 master v1.31.0-alpha.d90b05fe] |
| `updateStrategy` _[IstioUpdateStrategy](#istioupdatestrategy)_ | Defines the update strategy to use when the version in the Istio CR is updated. | \{ type:InPlace \} | |
| `profile` _string_ | The built-in installation configuration profile to use. The 'default' profile is always applied. On OpenShift, the 'openshift' profile is also applied on top of 'default'. Must be one of: ambient, default, demo, empty, openshift, openshift-ambient, preview, remote, stable. | | Enum: [ambient default demo empty external openshift openshift-ambient preview remote stable] |
| `namespace` _string_ | Namespace to which the Istio components should be installed. Note that this field is immutable. | istio-system | |
@@ -3324,7 +3324,7 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
-| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 master v1.31.0-alpha.8dbc3a3d] |
+| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 master v1.31.0-alpha.d90b05fe] |
| `namespace` _string_ | Namespace to which the Istio ztunnel component should be installed. | ztunnel | |
| `values` _[ZTunnelValues](#ztunnelvalues)_ | Defines the values to be passed to the Helm charts when installing Istio ztunnel. | | |
| `targetRef` _[TargetReference](#targetreference)_ | The Istio control plane that this ZTunnel instance is associated with. Valid references are Istio and IstioRevision resources, Istio resources are always resolved to their current active revision. Values relevant for ZTunnel will be copied from the referenced IstioRevision resource, these are `spec.values.global`, `spec.values.meshConfig`, `spec.values.revision`. Any user configuration in the ZTunnel spec will always take precedence over the settings copied from the Istio resource, however. | | |
@@ -3454,7 +3454,7 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
-| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.8dbc3a3d. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 master v1.31.0-alpha.8dbc3a3d] |
+| `version` _string_ | Defines the version of Istio to install. Must be one of: v1.30-latest, v1.30.0-alpha.2, v1.29-latest, v1.29.2, v1.29.1, v1.29.0, v1.28-latest, v1.28.6, v1.28.5, v1.28.4, v1.28.3, v1.28.2, v1.28.1, v1.28.0, master, v1.31.0-alpha.d90b05fe. | v1.30.0-alpha.2 | Enum: [v1.30-latest v1.30.0-alpha.2 v1.29-latest v1.29.2 v1.29.1 v1.29.0 v1.28-latest v1.28.6 v1.28.5 v1.28.4 v1.28.3 v1.28.2 v1.28.1 v1.28.0 v1.27-latest v1.27.9 v1.27.8 v1.27.7 v1.27.6 v1.27.5 v1.27.4 v1.27.3 v1.27.2 v1.27.1 v1.27.0 v1.26-latest v1.26.8 v1.26.7 v1.26.6 v1.26.5 v1.26.4 v1.26.3 v1.26.2 v1.26.1 v1.26.0 v1.25-latest v1.25.5 v1.25.4 v1.25.3 v1.25.2 v1.25.1 v1.24-latest v1.24.6 v1.24.5 v1.24.4 v1.24.3 v1.24.2 v1.24.1 v1.24.0 master v1.31.0-alpha.d90b05fe] |
| `profile` _string_ | The built-in installation configuration profile to use. The 'default' profile is 'ambient' and it is always applied. Must be one of: ambient, default, demo, empty, external, preview, remote, stable. | ambient | Enum: [ambient default demo empty external openshift-ambient openshift preview remote stable] |
| `namespace` _string_ | Namespace to which the Istio ztunnel component should be installed. | ztunnel | |
| `values` _[ZTunnelValues](#ztunnelvalues)_ | Defines the values to be passed to the Helm charts when installing Istio ztunnel. | | |
diff --git a/go.mod b/go.mod
index c8bea6b602..d1f55f036a 100644
--- a/go.mod
+++ b/go.mod
@@ -28,7 +28,7 @@ require (
gopkg.in/yaml.v3 v3.0.1
helm.sh/helm/v4 v4.1.4
istio.io/client-go v1.30.0-alpha.1.0.20260502131957-7307deff563c
- istio.io/istio v0.0.0-20260505125259-8dbc3a3daae5
+ istio.io/istio v0.0.0-20260506004247-d90b05fe8e88
k8s.io/api v0.35.4
k8s.io/apiextensions-apiserver v0.35.4
k8s.io/apimachinery v0.35.4
diff --git a/go.sum b/go.sum
index 583743fece..2a45a0de5d 100644
--- a/go.sum
+++ b/go.sum
@@ -475,8 +475,8 @@ istio.io/api v1.30.0-alpha.1.0.20260502131558-7b73f01a2cfb h1:/G3/CQ9rzoeKU5oDTw
istio.io/api v1.30.0-alpha.1.0.20260502131558-7b73f01a2cfb/go.mod h1:+brQWcBHoROuyA6fv8rbgg8Kfn0RCGuqoY0duCMuSLA=
istio.io/client-go v1.30.0-alpha.1.0.20260502131957-7307deff563c h1:1qBGrATuwkvzQmB75et5z+p7KPfdRkaDDI0iJYbTEyY=
istio.io/client-go v1.30.0-alpha.1.0.20260502131957-7307deff563c/go.mod h1:qS85izAgN0nvylopgw19FF2vs4tBoTvcEntW71FiODI=
-istio.io/istio v0.0.0-20260505125259-8dbc3a3daae5 h1:mTlAVBxn0pCV4s1+5fR8ePHvFta47IrJbYyO9nY7imA=
-istio.io/istio v0.0.0-20260505125259-8dbc3a3daae5/go.mod h1:cWP79nc+Z0rPai/FcZSXYIBsEWyEYQl8GYulrVs4/is=
+istio.io/istio v0.0.0-20260506004247-d90b05fe8e88 h1:LXJHKU4dTRf2Zf1/3Ji8Q5+/XsQORtWPqsIxAOeeeKM=
+istio.io/istio v0.0.0-20260506004247-d90b05fe8e88/go.mod h1:cWP79nc+Z0rPai/FcZSXYIBsEWyEYQl8GYulrVs4/is=
k8s.io/api v0.35.4 h1:P7nFYKl5vo9AGUp1Z+Pmd3p2tA7bX2wbFWCvDeRv988=
k8s.io/api v0.35.4/go.mod h1:yl4lqySWOgYJJf9RERXKUwE9g2y+CkuwG+xmcOK8wXU=
k8s.io/apiextensions-apiserver v0.35.4 h1:HeP+Upp7ItdvnyGmub0yoix+2z5+ev4M5cE5TCgtOUU=
diff --git a/pkg/istioversion/versions.yaml b/pkg/istioversion/versions.yaml
index f1de78f183..32fdf9d6d2 100644
--- a/pkg/istioversion/versions.yaml
+++ b/pkg/istioversion/versions.yaml
@@ -232,15 +232,15 @@ versions:
- name: v1.21.6
eol: true
- name: master
- ref: v1.31.0-alpha.8dbc3a3d
- - name: v1.31.0-alpha.8dbc3a3d
- version: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+ ref: v1.31.0-alpha.d90b05fe
+ - name: v1.31.0-alpha.d90b05fe
+ version: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
repo: https://github.com/istio/istio
branch: master
- commit: 8dbc3a3daae51f4c566840a40d602330932009be
+ commit: d90b05fe8e8879cc8d5985aa179a2877f23e56d7
charts:
- - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be/helm/base-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz
- - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be/helm/cni-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz
- - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be/helm/gateway-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz
- - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be/helm/istiod-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz
- - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be/helm/ztunnel-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz
+ - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7/helm/base-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz
+ - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7/helm/cni-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz
+ - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7/helm/gateway-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz
+ - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7/helm/istiod-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz
+ - https://storage.googleapis.com/istio-build/dev/1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7/helm/ztunnel-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/base-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag b/resources/v1.31.0-alpha.8dbc3a3d/base-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
deleted file mode 100644
index 59fbb9ccb6..0000000000
--- a/resources/v1.31.0-alpha.8dbc3a3d/base-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
+++ /dev/null
@@ -1 +0,0 @@
-3b8bc0bac66bbebf88832fb999b2248b
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/cni-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag b/resources/v1.31.0-alpha.8dbc3a3d/cni-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
deleted file mode 100644
index 570420691c..0000000000
--- a/resources/v1.31.0-alpha.8dbc3a3d/cni-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
+++ /dev/null
@@ -1 +0,0 @@
-eb9a6f688bf6d921de307325766f7986
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/commit b/resources/v1.31.0-alpha.8dbc3a3d/commit
deleted file mode 100644
index 72792040fb..0000000000
--- a/resources/v1.31.0-alpha.8dbc3a3d/commit
+++ /dev/null
@@ -1 +0,0 @@
-8dbc3a3daae51f4c566840a40d602330932009be
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/gateway-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag b/resources/v1.31.0-alpha.8dbc3a3d/gateway-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
deleted file mode 100644
index 35bb152a3d..0000000000
--- a/resources/v1.31.0-alpha.8dbc3a3d/gateway-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
+++ /dev/null
@@ -1 +0,0 @@
-bca4e95105fbc0dd1ebaf7077f7542c1
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/istiod-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag b/resources/v1.31.0-alpha.8dbc3a3d/istiod-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
deleted file mode 100644
index 46c2de6a1d..0000000000
--- a/resources/v1.31.0-alpha.8dbc3a3d/istiod-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
+++ /dev/null
@@ -1 +0,0 @@
-9a7a3a9c5f3845237efd5103a64d944e
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/ztunnel-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag b/resources/v1.31.0-alpha.8dbc3a3d/ztunnel-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
deleted file mode 100644
index c69957c885..0000000000
--- a/resources/v1.31.0-alpha.8dbc3a3d/ztunnel-1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be.tgz.etag
+++ /dev/null
@@ -1 +0,0 @@
-ac0316ef09655d51a9a2809f37683319
diff --git a/resources/v1.31.0-alpha.d90b05fe/base-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag b/resources/v1.31.0-alpha.d90b05fe/base-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
new file mode 100644
index 0000000000..9a0b788a62
--- /dev/null
+++ b/resources/v1.31.0-alpha.d90b05fe/base-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
@@ -0,0 +1 @@
+6b8e6f13b685f40c40573bc3a8c0e98b
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/Chart.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/Chart.yaml
similarity index 62%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/Chart.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/Chart.yaml
index b51c882d62..35d9dfc69b 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/Chart.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/base/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+appVersion: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
description: Helm chart for deploying Istio cluster resources and CRDs
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
@@ -7,4 +7,4 @@ keywords:
name: base
sources:
- https://github.com/istio/istio
-version: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+version: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/README.md b/resources/v1.31.0-alpha.d90b05fe/charts/base/README.md
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/README.md
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/README.md
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.25.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.25.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.25.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.25.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.26.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.26.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.26.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.26.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.27.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.27.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.27.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.27.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.28.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.28.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.28.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.28.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.29.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.29.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-compatibility-version-1.29.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-compatibility-version-1.29.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-demo.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-demo.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-demo.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-demo.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-gke.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-gke.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-gke.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-gke.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-k3d.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-k3d.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-k3d.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-k3d.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-k3s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-k3s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-k3s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-k3s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-microk8s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-microk8s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-microk8s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-microk8s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-minikube.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-minikube.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-minikube.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-minikube.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-openshift.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-openshift.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-platform-openshift.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-platform-openshift.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-preview.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-preview.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-preview.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-preview.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-remote.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-remote.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-remote.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-remote.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-stable.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-stable.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/files/profile-stable.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/files/profile-stable.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/NOTES.txt b/resources/v1.31.0-alpha.d90b05fe/charts/base/templates/NOTES.txt
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/NOTES.txt
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/templates/NOTES.txt
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/defaultrevision-validatingadmissionpolicy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/templates/defaultrevision-validatingadmissionpolicy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/defaultrevision-validatingadmissionpolicy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/templates/defaultrevision-validatingadmissionpolicy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/defaultrevision-validatingwebhookconfiguration.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/templates/defaultrevision-validatingwebhookconfiguration.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/defaultrevision-validatingwebhookconfiguration.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/templates/defaultrevision-validatingwebhookconfiguration.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/reader-serviceaccount.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/templates/reader-serviceaccount.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/reader-serviceaccount.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/templates/reader-serviceaccount.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/zzz_profile.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/templates/zzz_profile.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/templates/zzz_profile.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/templates/zzz_profile.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/base/values.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/base/values.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/base/values.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/base/values.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/Chart.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/Chart.yaml
similarity index 61%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/Chart.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/Chart.yaml
index 0f41ba3778..b6f9876800 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/Chart.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/cni/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+appVersion: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
description: Helm chart for istio-cni components
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
@@ -8,4 +8,4 @@ keywords:
name: cni
sources:
- https://github.com/istio/istio
-version: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+version: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/README.md b/resources/v1.31.0-alpha.d90b05fe/charts/cni/README.md
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/README.md
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/README.md
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.25.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.25.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.25.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.25.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.26.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.26.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.26.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.26.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.27.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.27.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.27.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.27.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.28.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.28.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.28.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.28.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.29.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.29.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-compatibility-version-1.29.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-compatibility-version-1.29.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-demo.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-demo.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-demo.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-demo.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-gke.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-gke.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-gke.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-gke.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-k3d.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-k3d.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-k3d.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-k3d.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-k3s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-k3s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-k3s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-k3s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-microk8s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-microk8s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-microk8s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-microk8s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-minikube.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-minikube.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-minikube.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-minikube.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-openshift.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-openshift.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-platform-openshift.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-platform-openshift.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-preview.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-preview.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-preview.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-preview.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-remote.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-remote.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-remote.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-remote.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-stable.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-stable.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/files/profile-stable.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/files/profile-stable.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/NOTES.txt b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/NOTES.txt
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/NOTES.txt
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/NOTES.txt
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/_helpers.tpl b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/_helpers.tpl
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/_helpers.tpl
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/_helpers.tpl
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/clusterrole.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/clusterrole.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/clusterrole.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/clusterrole.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/clusterrolebinding.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/clusterrolebinding.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/clusterrolebinding.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/clusterrolebinding.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/configmap-cni.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/configmap-cni.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/configmap-cni.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/configmap-cni.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/daemonset.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/daemonset.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/daemonset.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/daemonset.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/network-attachment-definition.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/network-attachment-definition.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/network-attachment-definition.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/network-attachment-definition.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/networkpolicy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/networkpolicy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/networkpolicy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/networkpolicy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/resourcequota.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/resourcequota.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/resourcequota.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/resourcequota.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/serviceaccount.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/serviceaccount.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/serviceaccount.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/serviceaccount.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/zzy_descope_legacy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/zzy_descope_legacy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/zzy_descope_legacy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/zzy_descope_legacy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/zzz_profile.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/zzz_profile.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/templates/zzz_profile.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/templates/zzz_profile.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/values.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/cni/values.yaml
similarity index 99%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/cni/values.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/cni/values.yaml
index f25ec6cefa..ef2cafdb4e 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/cni/values.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/cni/values.yaml
@@ -160,7 +160,7 @@ _internal_defaults_do_not_set:
hub: registry.istio.io/testing
# Default tag for Istio images.
- tag: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+ tag: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
# Variant of the image to use.
# Currently supported are: [debug, distroless]
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/Chart.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/Chart.yaml
similarity index 64%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/Chart.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/Chart.yaml
index 9024055c02..31db5b8bf4 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/Chart.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+appVersion: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
description: Helm chart for deploying Istio gateways
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
@@ -9,4 +9,4 @@ name: gateway
sources:
- https://github.com/istio/istio
type: application
-version: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+version: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/README.md b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/README.md
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/README.md
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/README.md
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.25.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.25.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.25.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.25.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.26.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.26.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.26.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.26.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.27.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.27.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.27.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.27.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.28.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.28.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.28.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.28.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.29.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.29.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-compatibility-version-1.29.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-compatibility-version-1.29.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-demo.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-demo.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-demo.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-demo.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-gke.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-gke.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-gke.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-gke.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-k3d.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-k3d.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-k3d.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-k3d.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-k3s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-k3s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-k3s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-k3s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-microk8s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-microk8s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-microk8s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-microk8s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-minikube.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-minikube.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-minikube.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-minikube.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-openshift.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-openshift.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-platform-openshift.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-platform-openshift.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-preview.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-preview.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-preview.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-preview.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-remote.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-remote.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-remote.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-remote.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-stable.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-stable.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/files/profile-stable.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/files/profile-stable.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/NOTES.txt b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/NOTES.txt
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/NOTES.txt
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/NOTES.txt
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/_helpers.tpl b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/_helpers.tpl
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/_helpers.tpl
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/_helpers.tpl
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/deployment.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/deployment.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/deployment.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/deployment.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/hpa.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/hpa.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/hpa.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/hpa.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/networkpolicy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/networkpolicy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/networkpolicy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/networkpolicy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/poddisruptionbudget.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/poddisruptionbudget.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/poddisruptionbudget.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/poddisruptionbudget.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/role.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/role.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/role.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/role.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/service.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/service.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/service.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/service.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/serviceaccount.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/serviceaccount.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/serviceaccount.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/serviceaccount.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/zzz_profile.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/zzz_profile.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/templates/zzz_profile.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/templates/zzz_profile.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/values.schema.json b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/values.schema.json
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/values.schema.json
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/values.schema.json
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/values.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/gateway/values.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/gateway/values.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/gateway/values.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/Chart.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/Chart.yaml
similarity index 63%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/Chart.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/Chart.yaml
index ce08a05e97..da0ecc8085 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/Chart.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+appVersion: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
description: Helm chart for istio control plane
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
@@ -9,4 +9,4 @@ keywords:
name: istiod
sources:
- https://github.com/istio/istio
-version: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+version: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/README.md b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/README.md
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/README.md
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/README.md
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/agentgateway.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/agentgateway.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/agentgateway.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/agentgateway.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/gateway-injection-template.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/gateway-injection-template.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/gateway-injection-template.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/gateway-injection-template.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/grpc-agent.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/grpc-agent.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/grpc-agent.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/grpc-agent.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/grpc-simple.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/grpc-simple.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/grpc-simple.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/grpc-simple.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/injection-template.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/injection-template.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/injection-template.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/injection-template.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/kube-gateway.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/kube-gateway.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/kube-gateway.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/kube-gateway.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.25.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.25.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.25.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.25.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.26.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.26.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.26.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.26.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.27.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.27.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.27.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.27.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.28.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.28.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.28.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.28.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.29.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.29.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-compatibility-version-1.29.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-compatibility-version-1.29.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-demo.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-demo.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-demo.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-demo.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-gke.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-gke.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-gke.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-gke.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-k3d.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-k3d.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-k3d.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-k3d.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-k3s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-k3s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-k3s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-k3s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-microk8s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-microk8s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-microk8s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-microk8s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-minikube.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-minikube.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-minikube.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-minikube.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-openshift.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-openshift.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-platform-openshift.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-platform-openshift.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-preview.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-preview.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-preview.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-preview.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-remote.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-remote.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-remote.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-remote.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-stable.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-stable.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/profile-stable.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/profile-stable.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/waypoint.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/waypoint.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/files/waypoint.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/files/waypoint.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/NOTES.txt b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/NOTES.txt
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/NOTES.txt
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/NOTES.txt
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/_helpers.tpl b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/_helpers.tpl
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/_helpers.tpl
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/_helpers.tpl
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/autoscale.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/autoscale.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/autoscale.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/autoscale.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/clusterrole.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/clusterrole.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/clusterrole.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/clusterrole.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/clusterrolebinding.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/clusterrolebinding.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/clusterrolebinding.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/clusterrolebinding.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/configmap-jwks.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/configmap-jwks.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/configmap-jwks.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/configmap-jwks.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/configmap-values.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/configmap-values.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/configmap-values.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/configmap-values.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/configmap.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/configmap.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/configmap.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/configmap.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/deployment.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/deployment.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/deployment.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/deployment.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/gateway-class-configmap.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/gateway-class-configmap.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/gateway-class-configmap.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/gateway-class-configmap.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/istiod-injector-configmap.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/istiod-injector-configmap.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/istiod-injector-configmap.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/istiod-injector-configmap.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/mutatingwebhook.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/mutatingwebhook.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/mutatingwebhook.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/mutatingwebhook.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/networkpolicy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/networkpolicy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/networkpolicy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/networkpolicy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/poddisruptionbudget.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/poddisruptionbudget.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/poddisruptionbudget.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/poddisruptionbudget.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/reader-clusterrole.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/reader-clusterrole.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/reader-clusterrole.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/reader-clusterrole.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/reader-clusterrolebinding.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/reader-clusterrolebinding.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/reader-clusterrolebinding.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/reader-clusterrolebinding.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/remote-istiod-endpointslices.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/remote-istiod-endpointslices.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/remote-istiod-endpointslices.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/remote-istiod-endpointslices.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/remote-istiod-service.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/remote-istiod-service.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/remote-istiod-service.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/remote-istiod-service.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/revision-tags-mwc.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/revision-tags-mwc.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/revision-tags-mwc.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/revision-tags-mwc.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/revision-tags-svc.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/revision-tags-svc.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/revision-tags-svc.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/revision-tags-svc.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/role.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/role.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/role.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/role.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/rolebinding.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/rolebinding.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/rolebinding.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/rolebinding.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/service.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/service.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/service.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/service.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/serviceaccount.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/serviceaccount.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/serviceaccount.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/serviceaccount.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/validatingadmissionpolicy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/validatingadmissionpolicy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/validatingadmissionpolicy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/validatingadmissionpolicy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/validatingwebhookconfiguration.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/validatingwebhookconfiguration.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/validatingwebhookconfiguration.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/validatingwebhookconfiguration.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/zzy_descope_legacy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/zzy_descope_legacy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/zzy_descope_legacy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/zzy_descope_legacy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/zzz_profile.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/zzz_profile.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/templates/zzz_profile.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/templates/zzz_profile.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/values.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/values.yaml
similarity index 99%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/values.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/istiod/values.yaml
index f1ce157f1d..9d3305c151 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/istiod/values.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/istiod/values.yaml
@@ -255,7 +255,7 @@ _internal_defaults_do_not_set:
# Dev builds from prow are on registry.istio.io/testing.
hub: registry.istio.io/testing
# Default tag for Istio images.
- tag: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+ tag: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
# Variant of the image to use.
# Currently supported are: [debug, distroless]
variant: ""
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/Chart.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/Chart.yaml
similarity index 70%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/Chart.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/Chart.yaml
index 0d6510a6fa..412a91eca8 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/Chart.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+appVersion: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
description: Helm chart for istio revision tags
name: revisiontags
sources:
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.25.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.25.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.25.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.25.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.26.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.26.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.26.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.26.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.27.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.27.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.27.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.27.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.28.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.28.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.28.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.28.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.29.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.29.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-compatibility-version-1.29.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-compatibility-version-1.29.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-demo.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-demo.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-demo.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-demo.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-gke.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-gke.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-gke.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-gke.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-k3d.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-k3d.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-k3d.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-k3d.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-k3s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-k3s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-k3s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-k3s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-microk8s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-microk8s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-microk8s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-microk8s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-minikube.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-minikube.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-minikube.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-minikube.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-openshift.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-openshift.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-platform-openshift.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-platform-openshift.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-preview.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-preview.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-preview.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-preview.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-remote.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-remote.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-remote.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-remote.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-stable.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-stable.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/files/profile-stable.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/files/profile-stable.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/templates/revision-tags-mwc.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/templates/revision-tags-mwc.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/templates/revision-tags-mwc.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/templates/revision-tags-mwc.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/templates/revision-tags-svc.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/templates/revision-tags-svc.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/templates/revision-tags-svc.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/templates/revision-tags-svc.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/templates/zzz_profile.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/templates/zzz_profile.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/templates/zzz_profile.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/templates/zzz_profile.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/values.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/values.yaml
similarity index 99%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/values.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/values.yaml
index f1ce157f1d..9d3305c151 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/revisiontags/values.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/revisiontags/values.yaml
@@ -255,7 +255,7 @@ _internal_defaults_do_not_set:
# Dev builds from prow are on registry.istio.io/testing.
hub: registry.istio.io/testing
# Default tag for Istio images.
- tag: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+ tag: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
# Variant of the image to use.
# Currently supported are: [debug, distroless]
variant: ""
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/Chart.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/Chart.yaml
similarity index 62%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/Chart.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/Chart.yaml
index 0a3c8922af..dcd10e451d 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/Chart.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+appVersion: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
description: Helm chart for istio ztunnel components
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
@@ -8,4 +8,4 @@ keywords:
name: ztunnel
sources:
- https://github.com/istio/istio
-version: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+version: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/README.md b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/README.md
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/README.md
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/README.md
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.25.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.25.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.25.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.25.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.26.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.26.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.26.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.26.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.27.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.27.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.27.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.27.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.28.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.28.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.28.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.28.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.29.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.29.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-compatibility-version-1.29.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-compatibility-version-1.29.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-demo.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-demo.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-demo.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-demo.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-gke.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-gke.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-gke.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-gke.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-k3d.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-k3d.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-k3d.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-k3d.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-k3s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-k3s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-k3s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-k3s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-microk8s.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-microk8s.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-microk8s.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-microk8s.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-minikube.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-minikube.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-minikube.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-minikube.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-openshift.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-openshift.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-platform-openshift.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-platform-openshift.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-preview.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-preview.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-preview.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-preview.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-remote.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-remote.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-remote.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-remote.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-stable.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-stable.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/files/profile-stable.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/files/profile-stable.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/NOTES.txt b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/NOTES.txt
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/NOTES.txt
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/NOTES.txt
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/_helpers.tpl b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/_helpers.tpl
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/_helpers.tpl
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/_helpers.tpl
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/daemonset.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/daemonset.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/daemonset.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/daemonset.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/networkpolicy.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/networkpolicy.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/networkpolicy.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/networkpolicy.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/rbac.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/rbac.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/rbac.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/rbac.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/resourcequota.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/resourcequota.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/resourcequota.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/resourcequota.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/serviceaccount.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/serviceaccount.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/serviceaccount.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/serviceaccount.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/zzz_profile.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/zzz_profile.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/templates/zzz_profile.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/templates/zzz_profile.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/values.yaml b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/values.yaml
similarity index 98%
rename from resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/values.yaml
rename to resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/values.yaml
index 38827a15bb..bbf7fea36c 100644
--- a/resources/v1.31.0-alpha.8dbc3a3d/charts/ztunnel/values.yaml
+++ b/resources/v1.31.0-alpha.d90b05fe/charts/ztunnel/values.yaml
@@ -4,7 +4,7 @@ _internal_defaults_do_not_set:
# Hub to pull from. Image will be `Hub/Image:Tag-Variant`
hub: registry.istio.io/testing
# Tag to pull from. Image will be `Hub/Image:Tag-Variant`
- tag: 1.31.0-alpha.8dbc3a3daae51f4c566840a40d602330932009be
+ tag: 1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7
# Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
variant: ""
diff --git a/resources/v1.31.0-alpha.d90b05fe/cni-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag b/resources/v1.31.0-alpha.d90b05fe/cni-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
new file mode 100644
index 0000000000..a4aab23bb3
--- /dev/null
+++ b/resources/v1.31.0-alpha.d90b05fe/cni-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
@@ -0,0 +1 @@
+f91e8443a295bfa27337adbf1bd5893c
diff --git a/resources/v1.31.0-alpha.d90b05fe/commit b/resources/v1.31.0-alpha.d90b05fe/commit
new file mode 100644
index 0000000000..2423d4142d
--- /dev/null
+++ b/resources/v1.31.0-alpha.d90b05fe/commit
@@ -0,0 +1 @@
+d90b05fe8e8879cc8d5985aa179a2877f23e56d7
diff --git a/resources/v1.31.0-alpha.d90b05fe/gateway-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag b/resources/v1.31.0-alpha.d90b05fe/gateway-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
new file mode 100644
index 0000000000..d366287b48
--- /dev/null
+++ b/resources/v1.31.0-alpha.d90b05fe/gateway-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
@@ -0,0 +1 @@
+f67f10c5f4ee0630eff2f3b71749fd3b
diff --git a/resources/v1.31.0-alpha.d90b05fe/istiod-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag b/resources/v1.31.0-alpha.d90b05fe/istiod-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
new file mode 100644
index 0000000000..1975020eb8
--- /dev/null
+++ b/resources/v1.31.0-alpha.d90b05fe/istiod-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
@@ -0,0 +1 @@
+18603902136300325a5ab74fadcdc122
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/default.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/default.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/default.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/default.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/demo.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/demo.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/demo.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/demo.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/empty.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/empty.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/empty.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/empty.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/openshift-ambient.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/openshift-ambient.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/openshift-ambient.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/openshift-ambient.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/openshift.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/openshift.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/openshift.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/openshift.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/preview.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/preview.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/preview.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/preview.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/remote.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/remote.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/remote.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/remote.yaml
diff --git a/resources/v1.31.0-alpha.8dbc3a3d/profiles/stable.yaml b/resources/v1.31.0-alpha.d90b05fe/profiles/stable.yaml
similarity index 100%
rename from resources/v1.31.0-alpha.8dbc3a3d/profiles/stable.yaml
rename to resources/v1.31.0-alpha.d90b05fe/profiles/stable.yaml
diff --git a/resources/v1.31.0-alpha.d90b05fe/ztunnel-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag b/resources/v1.31.0-alpha.d90b05fe/ztunnel-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
new file mode 100644
index 0000000000..012725934a
--- /dev/null
+++ b/resources/v1.31.0-alpha.d90b05fe/ztunnel-1.31.0-alpha.d90b05fe8e8879cc8d5985aa179a2877f23e56d7.tgz.etag
@@ -0,0 +1 @@
+2637a76a554fee4415a99c51fb26b2b4