diff --git a/helm-charts-2.4.0/.github/kiali.yml b/helm-charts-2.4.0/.github/kiali.yml new file mode 100644 index 0000000..9340404 --- /dev/null +++ b/helm-charts-2.4.0/.github/kiali.yml @@ -0,0 +1,2 @@ +_extends: kiali +merge_method: squash diff --git a/helm-charts-2.4.0/.github/workflows/ci.yml b/helm-charts-2.4.0/.github/workflows/ci.yml new file mode 100644 index 0000000..d230e22 --- /dev/null +++ b/helm-charts-2.4.0/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: Helm charts + +on: + push: + branches: + - master + pull_request: + types: + - opened + - reopened + - synchronize + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build + run: make build-helm-charts + diff --git a/helm-charts-2.4.0/.github/workflows/release.yml b/helm-charts-2.4.0/.github/workflows/release.yml new file mode 100644 index 0000000..d5921fd --- /dev/null +++ b/helm-charts-2.4.0/.github/workflows/release.yml @@ -0,0 +1,285 @@ +name: Release + +on: + schedule: + # Every Monday at 08:00 (UTC) - try to make sure it happens after all Kiali-related images are released + - cron: '00 8 * * MON' + workflow_dispatch: + inputs: + release_type: + description: Release type + required: true + type: choice + options: + - major + - minor + - patch + release_branch: + description: Branch to release + required: true + default: master + type: string + +jobs: + initialize: + name: Initialize + runs-on: ubuntu-20.04 + outputs: + release_type: ${{ steps.release_type.outputs.release_type }} + release_version: ${{ steps.release_version.outputs.release_version }} + next_version: ${{ steps.next_version.outputs.next_version }} + branch_version: ${{ steps.branch_version.outputs.branch_version }} + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.release_branch || github.ref_name }} + fetch-depth: 0 + + - name: Prepare scripts + run: | + cat <<-EOF > bump.py + import sys + release_type = sys.argv[1] + version = sys.argv[2] + parts = version.split('.') + major = int(parts[0][1:]) + minor = int(parts[1]) + patch = int(parts[2]) + if release_type == 'major': + major = major + 1 + minor = 0 + patch = 0 + elif release_type == 'minor': + minor = minor + 1 + patch = 0 + elif release_type == 'patch': + patch = patch + 1 + print('.'.join(['v' + str(major), str(minor), str(patch)])) + EOF + + cat <<-EOF > minor.py + import datetime + + # The base date can be any end of sprint from the past + base = int(datetime.datetime.strptime("24/04/2022", "%d/%m/%Y").timestamp()) + now = int(datetime.datetime.now().timestamp()) + + diff = now - base + + days_elapsed = int(diff / (24*60*60)) + weeks_elapsed = int(days_elapsed / 7) + weeks_mod3 = int(weeks_elapsed % 3) + + print(weeks_mod3) + EOF + + - name: Determine release type + id: release_type + run: | + if [ -z ${{ github.event.inputs.release_type }} ]; + then + DO_RELEASE=$(python minor.py) + if [[ $DO_RELEASE == "1" ]] + then + echo "release_type=minor" >> $GITHUB_OUTPUT + else + echo "release_type=skip" >> $GITHUB_OUTPUT + fi + else + echo "release_type=${{ github.event.inputs.release_type }}" >> $GITHUB_OUTPUT + fi + + - name: Determine release version + if: ${{ steps.release_type.outputs.release_type != 'skip' }} + env: + RELEASE_TYPE: ${{ steps.release_type.outputs.release_type }} + id: release_version + run: | + RAW_VERSION=$(sed -rn 's/^VERSION \?= (.*)/\1/p' Makefile) + + # Remove any pre release identifier (ie: "-SNAPSHOT") + RELEASE_VERSION=${RAW_VERSION%-*} + + if [[ $RELEASE_TYPE == "patch" ]] + then + RELEASE_VERSION=$(python bump.py $RELEASE_TYPE $RELEASE_VERSION) + elif [[ $RELEASE_TYPE == "minor" ]] + then + RELEASE_VERSION=$RELEASE_VERSION + elif [[ $RELEASE_TYPE == "major" ]] + then + RELEASE_VERSION=$RELEASE_VERSION + fi + + echo "release_version=$RELEASE_VERSION" >> $GITHUB_OUTPUT + + - name: Determine next version + if: ${{ steps.release_type.outputs.release_type != 'skip' }} + env: + RELEASE_TYPE: ${{ steps.release_type.outputs.release_type }} + RELEASE_VERSION: ${{ steps.release_version.outputs.release_version }} + id: next_version + run: | + if [[ $RELEASE_TYPE == "patch" ]] + then + NEXT_VERSION=$(python bump.py $RELEASE_TYPE $RELEASE_VERSION) + elif [[ $RELEASE_TYPE == "minor" ]] + then + NEXT_VERSION=$(python bump.py $RELEASE_TYPE $RELEASE_VERSION) + elif [[ $RELEASE_TYPE == "major" ]] + then + NEXT_VERSION=$(python bump.py "minor" $RELEASE_VERSION) + fi + + echo "next_version=$NEXT_VERSION" >> $GITHUB_OUTPUT + + - name: Determine branch version + if: ${{ steps.release_type.outputs.release_type != 'skip' }} + env: + RELEASE_VERSION: ${{ steps.release_version.outputs.release_version }} + id: branch_version + run: | + echo "branch_version=$(echo $RELEASE_VERSION | sed 's/\.[0-9]*\+$//')" >> $GITHUB_OUTPUT + + - name: Log information + run: | + echo "Release version: ${{ steps.release_version.outputs.release_version }}" + + echo "Next version: ${{ steps.next_version.outputs.next_version }}" + + echo "Branch version: ${{ steps.branch_version.outputs.branch_version }}" + + release: + name: Release + if: ${{ needs.initialize.outputs.release_type != 'skip' && ((github.event_name == 'schedule' && github.repository == 'kiali/helm-charts') || github.event_name != 'schedule') }} + runs-on: ubuntu-20.04 + needs: [initialize] + env: + RELEASE_TYPE: ${{ needs.initialize.outputs.release_type }} + RELEASE_VERSION: ${{ needs.initialize.outputs.release_version }} + NEXT_VERSION: ${{ needs.initialize.outputs.next_version }} + BRANCH_VERSION: ${{ needs.initialize.outputs.branch_version }} + RELEASE_BRANCH: ${{ github.event.inputs.release_branch || github.ref_name }} + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.release_branch || github.ref_name }} + fetch-depth: 0 + + - name: Configure git + run: | + git config user.email 'kiali-dev@googlegroups.com' + + git config user.name 'kiali-bot' + + - name: Build Helm charts + run: make -e VERSION=$RELEASE_VERSION clean build-helm-charts + + # Switch to `master` branch before updating docs/index.yaml + - name: Checkout master + if: ${{ github.event.inputs.release_type == 'patch'}} + run: git checkout master + + # Anticipated preparation of Makefile so that it contains the released + # version when creating the git tag. + # + # This change to the Makefile is not done for patch releases, because that + # would break the next minor build (remember we have already switched to master). + - name: Prepare Makefile + if: ${{ github.event.inputs.release_type != 'patch'}} + run: sed -i -r "s/^VERSION \?= .*/VERSION \?= $RELEASE_VERSION/" Makefile + + - name: Update Helm repositories + run: make -e VERSION=$RELEASE_VERSION update-helm-repos + + # Tag the release from sources in the master branch + # Note that if we are doing a patch release, this tag won't contain valid `kiali-server` nor `kiali-operator` directories + # because these directories come from `master` rather than the original ones. + - name: Create tag + run: | + git add Makefile docs + + git commit -m "Release $RELEASE_VERSION" + + git push origin $(git rev-parse HEAD):refs/tags/$RELEASE_VERSION-master + + - name: Publish Helm charts + env: + BUILD_TAG: helm-charts-release-${{ github.run_number }}-main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY: ${{ github.repository }} + run: | + # If we did a minor or major release, we need to create the vX.Y branch, so that it can + # be used as a base for a patch release. + # Also, we create a vX.Y.Z tag. + if [[ $RELEASE_TYPE == "minor" || $RELEASE_TYPE == "major" ]] + then + git push origin $(git rev-parse HEAD):refs/heads/$BRANCH_VERSION + + git push origin $(git rev-parse HEAD):refs/tags/$RELEASE_VERSION + + # Bump version stored in the Makefile + sed -i -r "s/^VERSION \?= (.*)/VERSION \?= $NEXT_VERSION-SNAPSHOT/" Makefile + + git add Makefile + + git commit -m "Prepare for next version" + + git push origin $(git rev-parse HEAD):refs/heads/$BUILD_TAG + + if [[ $GITHUB_REPOSITORY == 'kiali/helm-charts' ]] + then + if hack/smoke-test-release-branch.sh --release-branch $BUILD_TAG; then + prtitle="Prepare for next version (smoke test passed)" + prmsg="The smoke test has passed. Please merge to update version numbers and prepare for release $NEXT_VERSION" + else + prtitle="[DO NOT MERGE YET] Prepare for next version" + prmsg="DO NOT MERGE YET! The smoke test failed. Please fix the problem before merging this PR which updates version numbers and prepares for release $NEXT_VERSION" + fi + else + prtitle="Prepare for next version (smoke test does not run on this repository)" + prmsg="The smoke test does not run on this repository. Please merge to update version numbers and prepare for release $NEXT_VERSION" + fi + + gh pr create -t "$prtitle" -b "$prmsg" -H $BUILD_TAG -B $RELEASE_BRANCH + + # For a patch release, everything is ready to publish the generated charts. + # Let's push to master + elif [[ $RELEASE_TYPE == "patch" ]] + then + git push origin $(git rev-parse HEAD):refs/heads/$BUILD_TAG + + if [[ $GITHUB_REPOSITORY == 'kiali/helm-charts' ]] + then + if hack/smoke-test-release-branch.sh --release-branch $BUILD_TAG; then + prtitle="Prepare for next version (smoke test passed)" + prmsg="The smoke test has passed. Please merge to update version numbers and prepare for release $NEXT_VERSION" + else + prtitle="[DO NOT MERGE YET] Prepare for next version" + prmsg="DO NOT MERGE YET! The smoke test failed. Please fix the problem before merging this PR which updates version numbers and prepares for release $NEXT_VERSION" + fi + else + prtitle="Prepare for next version (smoke test does not run on this repository)" + prmsg="The smoke test does not run on this repository. Please merge to update version numbers and prepare for release $NEXT_VERSION" + fi + + gh pr create -t "$prtitle" -b "$prmsg" -H $BUILD_TAG -B master + + # We did a patch release. In this case we need to go back to the version branch and do changes + # to the Makefile in that branch to record what's the current path release. Then, commit and push. + # Also, a vX.Y.Z branch is created + git checkout $RELEASE_BRANCH + + sed -i -r "s/^VERSION \?= (.*)/VERSION \?= $RELEASE_VERSION/" Makefile + + git add Makefile + + git commit -m "Record that $RELEASE_VERSION was released, in preparation for next patch version." + + git push origin $(git rev-parse HEAD):$RELEASE_BRANCH + + git push origin $(git rev-parse HEAD):refs/tags/$RELEASE_VERSION + + fi diff --git a/helm-charts-2.4.0/.github/workflows/smoketest.yml b/helm-charts-2.4.0/.github/workflows/smoketest.yml new file mode 100644 index 0000000..d412b7d --- /dev/null +++ b/helm-charts-2.4.0/.github/workflows/smoketest.yml @@ -0,0 +1,23 @@ +name: Smoke test latest release + +on: + pull_request: + types: + - opened + - reopened + - synchronize + branches: + - master + paths: + - 'docs/index.yaml' + +jobs: + smoketest: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run smoke test hack script + run: hack/smoke-test-release-branch.sh --release-branch ${{ github.head_ref }} + diff --git a/helm-charts-2.4.0/.github/workflows/util/bump.py b/helm-charts-2.4.0/.github/workflows/util/bump.py new file mode 100755 index 0000000..61eb090 --- /dev/null +++ b/helm-charts-2.4.0/.github/workflows/util/bump.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 + +import sys + +release_type = sys.argv[1] +version = sys.argv[2] + +parts = version.split('.') + +major = int(parts[0][1:]) +minor = int(parts[1]) +patch = int(parts[2]) + +if release_type == 'major': + major = major + 1 + minor = 0 + patch = 0 +elif release_type == 'minor': + minor = minor + 1 + patch = 0 +elif release_type == 'patch': + patch = patch + 1 + +print('.'.join(["v" + str(major), str(minor), str(patch)])) \ No newline at end of file diff --git a/helm-charts-2.4.0/.gitignore b/helm-charts-2.4.0/.gitignore new file mode 100644 index 0000000..be1c5a4 --- /dev/null +++ b/helm-charts-2.4.0/.gitignore @@ -0,0 +1 @@ +_output diff --git a/helm-charts-2.4.0/CONTRIBUTING.md b/helm-charts-2.4.0/CONTRIBUTING.md new file mode 100644 index 0000000..dad1a9d --- /dev/null +++ b/helm-charts-2.4.0/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# How to contribute to the Kiali Helm Charts + +Please refer to the [CONTRIBUTING.adoc](https://github.com/kiali/kiali/blob/master/CONTRIBUTING.md) found in the main Kiali repo for details on how to contribute to the Kiali helm charts. diff --git a/helm-charts-2.4.0/LICENSE b/helm-charts-2.4.0/LICENSE new file mode 100644 index 0000000..07a418f --- /dev/null +++ b/helm-charts-2.4.0/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [2020] [@kiali/maintainers] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/helm-charts-2.4.0/Makefile b/helm-charts-2.4.0/Makefile new file mode 100644 index 0000000..d6a3b3a --- /dev/null +++ b/helm-charts-2.4.0/Makefile @@ -0,0 +1,91 @@ +# We want to ensure Travis uses this shell +SHELL=/bin/bash + +# Directories based on the root project directory +ROOTDIR=$(CURDIR) +OUTDIR=${ROOTDIR}/_output + +# Identifies the current build. +VERSION ?= v2.4.0 +SEMVER ?= $(shell echo ${VERSION} | sed 's/^v//g') +COMMIT_HASH ?= $(shell git rev-parse HEAD) + +# Identifies the images +HELM_IMAGE_REPO_OPERATOR ?= quay.io/kiali/kiali-operator +HELM_IMAGE_REPO_SERVER ?= quay.io/kiali/kiali + +# Determine if we should use Docker OR Podman - value must be one of "docker" or "podman" +DORP ?= docker + +# When building the helm chart, this is the helm version to use +HELM_VERSION ?= v3.10.1 + +.PHONY: help +help: Makefile + @echo + @echo "Targets" + @sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /' + @echo + +## clean: Cleans _output +clean: + @rm -rf ${OUTDIR} + +.download-helm-if-needed: + @$(eval HELM="${OUTDIR}/helm-install/helm") + @if ! which ${HELM} 2>/dev/null 1>&2; then \ + mkdir -p "${OUTDIR}/helm-install" ;\ + if [ -x "${OUTDIR}/helm-install/helm" ]; then \ + echo "Will use the one found here: ${OUTDIR}/helm-install/helm" ;\ + else \ + echo "The binary will be downloaded to ${OUTDIR}/helm-install/helm" ;\ + os=$$(uname -s | tr '[:upper:]' '[:lower:]') ;\ + arch="" ;\ + case $$(uname -m) in \ + i386) arch="386" ;; \ + i686) arch="386" ;; \ + x86_64) arch="amd64" ;; \ + arm) arch="arm" ;; \ + arm64|aarch64) arch="arm64" ;; \ + esac ;\ + cd "${OUTDIR}/helm-install" ;\ + curl -L "https://get.helm.sh/helm-${HELM_VERSION}-$${os}-$${arch}.tar.gz" > "${OUTDIR}/helm-install/helm.tar.gz" ;\ + tar xzf "${OUTDIR}/helm-install/helm.tar.gz" ;\ + mv "${OUTDIR}/helm-install/$${os}-$${arch}/helm" "${OUTDIR}/helm-install/helm" ;\ + chmod +x "${OUTDIR}/helm-install/helm" ;\ + rm -rf "${OUTDIR}/helm-install/$${os}-$${arch}" "${OUTDIR}/helm-install/helm.tar.gz" ;\ + fi ;\ + fi + @echo Will use this helm executable: ${HELM} + +.build-helm-chart-server: .download-helm-if-needed + @echo Building Helm Chart for Kiali server + @rm -rf "${OUTDIR}/charts/kiali-server"* + @mkdir -p "${OUTDIR}/charts" + @cp -R "${ROOTDIR}/kiali-server" "${OUTDIR}/charts/" + @HELM_IMAGE_REPO="${HELM_IMAGE_REPO_SERVER}" HELM_IMAGE_TAG="${VERSION}" envsubst < "${ROOTDIR}/kiali-server/values.yaml" > "${OUTDIR}/charts/kiali-server/values.yaml" + @"${HELM}" lint "${OUTDIR}/charts/kiali-server" + @"${HELM}" package "${OUTDIR}/charts/kiali-server" -d "${OUTDIR}/charts" --version ${SEMVER} --app-version ${VERSION} + +.build-helm-chart-operator: .download-helm-if-needed + @echo Building Helm Chart for Kiali operator + @rm -rf "${OUTDIR}/charts/kiali-operator"* + @mkdir -p "${OUTDIR}/charts" + @cp -R "${ROOTDIR}/kiali-operator" "${OUTDIR}/charts/" + @HELM_IMAGE_REPO="${HELM_IMAGE_REPO_OPERATOR}" HELM_IMAGE_TAG="${VERSION}" envsubst < "${ROOTDIR}/kiali-operator/values.yaml" > "${OUTDIR}/charts/kiali-operator/values.yaml" + @"${HELM}" lint "${OUTDIR}/charts/kiali-operator" + @"${HELM}" package "${OUTDIR}/charts/kiali-operator" -d "${OUTDIR}/charts" --version ${SEMVER} --app-version ${VERSION} + +## build-helm-charts: Build Kiali operator and server Helm Charts +build-helm-charts: .build-helm-chart-operator .build-helm-chart-server + +.update-helm-repo-server: .download-helm-if-needed + cp "${OUTDIR}/charts/kiali-server-${SEMVER}.tgz" "${ROOTDIR}/docs" + "${HELM}" repo index "${ROOTDIR}/docs" --url https://kiali.org/helm-charts + +.update-helm-repo-operator: .download-helm-if-needed + cp "${OUTDIR}/charts/kiali-operator-${SEMVER}.tgz" "${ROOTDIR}/docs" + "${HELM}" repo index "${ROOTDIR}/docs" --url https://kiali.org/helm-charts + +## update-helm-repos: Adds the VERSION helm charts to the local Helm repo directory. +update-helm-repos: .update-helm-repo-operator .update-helm-repo-server diff --git a/helm-charts-2.4.0/README.adoc b/helm-charts-2.4.0/README.adoc new file mode 100644 index 0000000..fd4346b --- /dev/null +++ b/helm-charts-2.4.0/README.adoc @@ -0,0 +1,91 @@ += Kiali Helm Charts + +image:https://travis-ci.org/kiali/helm-charts.svg["Build Status", link="https://travis-ci.org/kiali/helm-charts"] +image:https://img.shields.io/badge/license-Apache2-blue.svg["Apache 2.0 license", link="LICENSE"] + +Kiali Helm Charts are published at link:https://kiali.org/helm-charts/index.yaml[https://kiali.org/helm-charts]. + +For Kiali installation documentation, please see: + +* link:https://kiali.io/docs/installation/quick-start/#install-via-helm[Kiali Quick Start Guide] +* link:https://kiali.io/docs/installation/installation-guide/install-with-helm/[Kiali Installation Guide] + +== Chart Source + +Kiali Operator helm chart source is found in the link:./kiali-operator[kiali-operator folder]. +Kiali Server helm chart source is found in the link:./kiali-server[kiali-server folder]. + +== Developer Notes + +=== Building + +To build the helm charts, simply run `make clean build-helm-charts` which will generate the operator and server helm charts and stores their tarballs in the `_output/charts` directory. + +=== Using the local Helm chart builds + +==== Server + +To generate the server templates, run: + +``` +helm template -n istio-system --set auth.strategy=anonymous --set deployment.image_version=latest kiali-server _output/charts/kiali-server-*-SNAPSHOT.tgz +``` + +To install the server, run: + +``` +helm install -n istio-system --set auth.strategy=anonymous --set deployment.image_version=latest kiali-server _output/charts/kiali-server-*-SNAPSHOT.tgz +``` + +To uninstall the server, run: + +``` +helm uninstall -n istio-system kiali-server +``` + +==== Operator + +To generate the operator templates, run: + +``` +helm template -n kiali-operator --set allowAdHocKialiImage=true --set image.tag=latest --create-namespace kiali-operator _output/charts/kiali-operator-*-SNAPSHOT.tgz +``` + +To install the operator, run: + +``` +helm install -n kiali-operator --set allowAdHocKialiImage=true --set image.tag=latest --create-namespace kiali-operator _output/charts/kiali-operator-*-SNAPSHOT.tgz +``` + +To uninstall the operator, run: + +``` +helm uninstall -n kiali-operator kiali-operator +``` + +==== Overriding values + +You can pass `--set` options to the above commands if you wish to override the default values. You can set nested dictionary values using dot notation: `--set deployment.logger.log_level=debug`. For a list of items, comma-separate the values and wrap the list in curly braces: `--set "kubernetes_config.excluded_workloads={CronJob,Job}"`. You can set individual list items using square brackets: `--set kubernetes_config.excluded_workloads[0]=CronJob`. + +If you locally built and pushed your Kiali server and Kiali operator images to your cluster, you can have the helm chart installations pull those images by the following settings: + +|=== +|Helm Chart|Cluster Type|Settings + +|Server|Minikube| +`--set deployment.image_name=localhost:5000/kiali/kiali` + +`--set deployment.image_version=dev` +|Server|OpenShift| +`--set deployment.image_name=image-registry.openshift-image-registry.svc:5000/kiali/kiali` + +`--set deployment.image_version=dev` +|Operator|Minikube| +`--set image.repo=localhost:5000/kiali/kiali-operator` + +`--set image.tag=dev` + +`--set cr.spec.deployment.image_name=localhost:5000/kiali/kiali` + +`--set cr.spec.deployment.image_version=dev` +|Operator|OpenShift| +`--set image.repo=image-registry.openshift-image-registry.svc:5000/kiali/kiali-operator` + +`--set image.tag=dev` + +`--set cr.spec.deployment.image_name=image-registry.openshift-image-registry.svc:5000/kiali/kiali` + +`--set cr.spec.deployment.image_version=dev` +|=== diff --git a/helm-charts-2.4.0/docs/index.md b/helm-charts-2.4.0/docs/index.md new file mode 100644 index 0000000..e71322f --- /dev/null +++ b/helm-charts-2.4.0/docs/index.md @@ -0,0 +1,6 @@ +# Kiali + +For getting started with Kiali, see: + +* [Quick Start](https://kiali.io/docs/installation/quick-start/) +* [Installation Guide](https://kiali.io/docs/installation/installation-guide/) diff --git a/helm-charts-2.4.0/docs/index.yaml b/helm-charts-2.4.0/docs/index.yaml new file mode 100644 index 0000000..3a8f76c --- /dev/null +++ b/helm-charts-2.4.0/docs/index.yaml @@ -0,0 +1,5173 @@ +apiVersion: v1 +entries: + kiali-operator: + - apiVersion: v2 + appVersion: v2.4.0 + created: "2025-01-13T08:27:39.175838865Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 78e3ecb4ead088764a226171e13dad9935fcb5f9d838c405dfc1578c103660a2 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-2.4.0.tgz + version: 2.4.0 + - apiVersion: v2 + appVersion: v2.3.0 + created: "2025-01-13T08:27:39.175395447Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a0dc9cb933df657f5d33cb3275f34d3facc89c6a512dbfdf7a088b29a14d610c + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-2.3.0.tgz + version: 2.3.0 + - apiVersion: v2 + appVersion: v2.2.0 + created: "2025-01-13T08:27:39.174912255Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7d8045f9f87cdd9b2e6140d11109e809af224a24d3fa0bfe47073e47d4fc7e1f + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-2.2.0.tgz + version: 2.2.0 + - apiVersion: v2 + appVersion: v2.1.0 + created: "2025-01-13T08:27:39.174478835Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 92991a53038f24bfff460ec5037a79e9a27d59c02361b842f1026e4bafcdb2b5 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-2.1.0.tgz + version: 2.1.0 + - apiVersion: v2 + appVersion: v2.0.0 + created: "2025-01-13T08:27:39.174043863Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6951beec4f17886fe9b6b42db76a78bdbee286b4e9adb77763f348f24876a241 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-2.0.0.tgz + version: 2.0.0 + - apiVersion: v2 + appVersion: v1.89.7 + created: "2025-01-13T08:27:39.173602449Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0cbe1ec5460e32058ebc89556ce1283ac2eaf8e746261986ab18df675020fec4 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.89.7.tgz + version: 1.89.7 + - apiVersion: v2 + appVersion: v1.89.3 + created: "2025-01-13T08:27:39.173122273Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5cff055d3e2d071cec4f16a795ab49c1445413df8e7c3ab6db6d4f8ffbf46a97 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.89.3.tgz + version: 1.89.3 + - apiVersion: v2 + appVersion: v1.89.0 + created: "2025-01-13T08:27:39.172614925Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 65304be5dfa7382e7daeb95567c547ea46d204ab8a0c0488f029b9d2f2bb054b + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.89.0.tgz + version: 1.89.0 + - apiVersion: v2 + appVersion: v1.88.0 + created: "2025-01-13T08:27:39.171368199Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: bc9e31683f38fffc58de971798178aed5eb9eb4df29fffa41a7fb8d8db64ec4a + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.88.0.tgz + version: 1.88.0 + - apiVersion: v2 + appVersion: v1.87.0 + created: "2025-01-13T08:27:39.170796001Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 74a7c8eafce0f7137caa724d64117fb1d02f0515b11060ac6d044e56f4db8b9e + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.87.0.tgz + version: 1.87.0 + - apiVersion: v2 + appVersion: v1.86.2 + created: "2025-01-13T08:27:39.170327837Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 748ef319b48c52468487a6fb105bbde8a9499250e3e9c48f867b7850706a28ed + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.86.2.tgz + version: 1.86.2 + - apiVersion: v2 + appVersion: v1.86.1 + created: "2025-01-13T08:27:39.169833304Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9687be9548476b953bde77f9a1ea6b06c05e7d92e5ab0ab561036e74b0758874 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.86.1.tgz + version: 1.86.1 + - apiVersion: v2 + appVersion: v1.86.0 + created: "2025-01-13T08:27:39.169363406Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 813b29861b016673f85efd37687ac957e509633faec7abd6ecd2fadf4cb42ec1 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.86.0.tgz + version: 1.86.0 + - apiVersion: v2 + appVersion: v1.85.0 + created: "2025-01-13T08:27:39.168896865Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 39accac0b3e57ad360640d4724bd1669b3d09390f6f225a955b83203dd965c0b + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.85.0.tgz + version: 1.85.0 + - apiVersion: v2 + appVersion: v1.84.0 + created: "2025-01-13T08:27:39.168429192Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 22880f83502536ff4bf285a825b25fc5274eff9b3ba6c8f9d7de3ab2fa7a74c5 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.84.0.tgz + version: 1.84.0 + - apiVersion: v2 + appVersion: v1.83.0 + created: "2025-01-13T08:27:39.167961128Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: aacc498146c18dcdc8130e4cbe9f59cf7908b6c62b9bae64874954615eba3306 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.83.0.tgz + version: 1.83.0 + - apiVersion: v2 + appVersion: v1.82.0 + created: "2025-01-13T08:27:39.1675122Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6a7a38776cfdfa281b9365a57418545766d622b541c2a4a603aea997c0c01f9e + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.82.0.tgz + version: 1.82.0 + - apiVersion: v2 + appVersion: v1.81.0 + created: "2025-01-13T08:27:39.167055948Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 3083df5f334ba8a9e0e3f609892217a56ae19845450eb22183b01aacda96c5ca + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.81.0.tgz + version: 1.81.0 + - apiVersion: v2 + appVersion: v1.80.0 + created: "2025-01-13T08:27:39.166581151Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ee8710057013e53d97a89a3e51a60608bbd0306cb56a0ffab86c155154b6d65a + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.80.0.tgz + version: 1.80.0 + - apiVersion: v2 + appVersion: v1.79.0 + created: "2025-01-13T08:27:39.166129258Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: f69dd23f7a28a3e5b0eaf5b10da17ccb86e661d41d4694a0c0569fde4bd88eac + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.79.0.tgz + version: 1.79.0 + - apiVersion: v2 + appVersion: v1.78.0 + created: "2025-01-13T08:27:39.165666473Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a5d29a5959ff16c9c37c320cb547763a39288d072b9cc3b01d7cc9462b489d57 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.78.0.tgz + version: 1.78.0 + - apiVersion: v2 + appVersion: v1.77.0 + created: "2025-01-13T08:27:39.165205663Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d37b7987ab9057c28f08253adb40507051ba03d80253792091fa39af423436ba + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.77.0.tgz + version: 1.77.0 + - apiVersion: v2 + appVersion: v1.76.0 + created: "2025-01-13T08:27:39.164719375Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 469336870d5536cc83edc4b6f3a5b6406a965f7421037039a6b9ab1070843eee + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.76.0.tgz + version: 1.76.0 + - apiVersion: v2 + appVersion: v1.75.0 + created: "2025-01-13T08:27:39.163988329Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 2375b37a42f23f9338dda4caf74bfb2e80ad2aaee9857d5e4754ddc5033ed62c + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.75.0.tgz + version: 1.75.0 + - apiVersion: v2 + appVersion: v1.74.0 + created: "2025-01-13T08:27:39.162880209Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5cb85bb0a7993dac0b3d3ff3ea3b1320d3739a40f011dfbeeaa25a30b0595a06 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.74.0.tgz + version: 1.74.0 + - apiVersion: v2 + appVersion: v1.73.2 + created: "2025-01-13T08:27:39.162452751Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9bf23f009e4b0599d0df0b542e4a9e1d17a5dc0ddd013c0c9f033441007069c6 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.73.2.tgz + version: 1.73.2 + - apiVersion: v2 + appVersion: v1.73.1 + created: "2025-01-13T08:27:39.162027187Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ada60c4b0cb2e61e2c38e7401ebeef53050f9f5b36f0318c2cab88d5cae69869 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.73.1.tgz + version: 1.73.1 + - apiVersion: v2 + appVersion: v1.73.0 + created: "2025-01-13T08:27:39.161597665Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: fe15a45dc16095b34615ab6895b5099192717995461c69a020b07a841278c3c1 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.73.0.tgz + version: 1.73.0 + - apiVersion: v2 + appVersion: v1.72.0 + created: "2025-01-13T08:27:39.16116653Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: f65c498eb2290cc907222ac84dae2754fb8985120963b730d636a937227f8663 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.72.0.tgz + version: 1.72.0 + - apiVersion: v2 + appVersion: v1.71.0 + created: "2025-01-13T08:27:39.160736086Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 99be6b4f3cff3a58ea2b50c5d2f844fed5e134e71aaeef2703dfc197232d5644 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.71.0.tgz + version: 1.71.0 + - apiVersion: v2 + appVersion: v1.70.0 + created: "2025-01-13T08:27:39.160301464Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 603f250879cd86d741178dcf41eacf2b2e7067603baf5871302ae216c11365c0 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.70.0.tgz + version: 1.70.0 + - apiVersion: v2 + appVersion: v1.69.0 + created: "2025-01-13T08:27:39.159819044Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: fc7048e83b7b8885041ae00a028b2e4ac7c89061a7993f381323645acecb6ae5 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.69.0.tgz + version: 1.69.0 + - apiVersion: v2 + appVersion: v1.68.0 + created: "2025-01-13T08:27:39.159331333Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: b6fc285fba43352095ae4b86a1a7830e74fbb4b291e35210f52c89508da4dfd4 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.68.0.tgz + version: 1.68.0 + - apiVersion: v2 + appVersion: v1.67.1 + created: "2025-01-13T08:27:39.158854623Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c975b62f042e223b0f8860bd55a22d0b4bdeb0aa322ef10e12a3564237f07ff0 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.67.1.tgz + version: 1.67.1 + - apiVersion: v2 + appVersion: v1.67.0 + created: "2025-01-13T08:27:39.158429058Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: fd42dc3eb69396b25d01452c1fdc6fb8e77e525073da873c4f9a4bf5f9f0587c + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.67.0.tgz + version: 1.67.0 + - apiVersion: v2 + appVersion: v1.66.1 + created: "2025-01-13T08:27:39.158002321Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c972646cbb621f8f04ca28addf2b102c9fbea6c6c936400235f30928fe44bd7e + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.66.1.tgz + version: 1.66.1 + - apiVersion: v2 + appVersion: v1.66.0 + created: "2025-01-13T08:27:39.157571828Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e2fee79b2d74e269d28bfd9bdfcce93c2a0cafa25dc80146684ca3acb837a6c7 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.66.0.tgz + version: 1.66.0 + - apiVersion: v2 + appVersion: v1.65.0 + created: "2025-01-13T08:27:39.157136014Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 95f0e320976b319ec803c38ab164e8ce26d96976434605abbde7582faef07803 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.65.0.tgz + version: 1.65.0 + - apiVersion: v2 + appVersion: v1.64.0 + created: "2025-01-13T08:27:39.156690251Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9821e153cdb72024224a1b89e1b2df227fa6a4c49a37db6ebfb5b8aa111bb277 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.64.0.tgz + version: 1.64.0 + - apiVersion: v2 + appVersion: v1.63.2 + created: "2025-01-13T08:27:39.156248998Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e9631dd166de5579249e94518979245505a10d5ea050f32995170bd8aa82b3e9 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.63.2.tgz + version: 1.63.2 + - apiVersion: v2 + appVersion: v1.63.1 + created: "2025-01-13T08:27:39.155798106Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5351be9cc6b14f0034d04d85add912c86cc0520c7e0134f8420f7e47a10a23a8 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.63.1.tgz + version: 1.63.1 + - apiVersion: v2 + appVersion: v1.63.0 + created: "2025-01-13T08:27:39.155271633Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 99138b45eff967b31ac265463cc65f8b3835e7cbe152ce72ea9bf05160e2fa48 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.63.0.tgz + version: 1.63.0 + - apiVersion: v2 + appVersion: v1.62.1 + created: "2025-01-13T08:27:39.153997634Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ccba9ad14434e9092d3009fc1d9fcbd971bfd6770b4d6f00eb6e4a08c9a6f958 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.62.1.tgz + version: 1.62.1 + - apiVersion: v2 + appVersion: v1.62.0 + created: "2025-01-13T08:27:39.153571919Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: f3293aa79375d1bdcb04db7924cdb06c904bbe8ca505a3e85caccd2be638fb1b + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.62.0.tgz + version: 1.62.0 + - apiVersion: v2 + appVersion: v1.61.0 + created: "2025-01-13T08:27:39.153137638Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 743bade4f81f59f6132dfa3c4d5f0387fcc9c125797bce3ca5d7c01d008d6cd4 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.61.0.tgz + version: 1.61.0 + - apiVersion: v2 + appVersion: v1.60.0 + created: "2025-01-13T08:27:39.152714488Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 49a5da3d6a3dccb827117ee5925b413682e9ca4803ea256dad2fe4e8a104669a + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.60.0.tgz + version: 1.60.0 + - apiVersion: v2 + appVersion: v1.59.1 + created: "2025-01-13T08:27:39.152289124Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 626fcec7422824e1cacf232e6dfbd51aacc54841fecef54f98bb33f1418ce245 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.59.1.tgz + version: 1.59.1 + - apiVersion: v2 + appVersion: v1.59.0 + created: "2025-01-13T08:27:39.151861636Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 31aeb1909544ab35ad54210c144b4825e46d3d36a98a9c55d6ee235516f95787 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.59.0.tgz + version: 1.59.0 + - apiVersion: v2 + appVersion: v1.58.0 + created: "2025-01-13T08:27:39.151431813Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5164c665592ec26064242929241a862698541339795547bfe10fade0e7c74d5f + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.58.0.tgz + version: 1.58.0 + - apiVersion: v2 + appVersion: v1.57.3 + created: "2025-01-13T08:27:39.15102276Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 114e99b01100d24348135bf29fae2ed640bd2c099cc0a0716e3831f6835a3529 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.57.3.tgz + version: 1.57.3 + - apiVersion: v2 + appVersion: v1.57.2 + created: "2025-01-13T08:27:39.150586755Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 52caa89aa9e7e03edda1b00f9cd5e6e2abf45fefe04eabc95480c53d91ec3a33 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.57.2.tgz + version: 1.57.2 + - apiVersion: v2 + appVersion: v1.57.1 + created: "2025-01-13T08:27:39.150183433Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c65abe67d099de4643ddfbbee0a9160a7706bffde1f70d9c6c6b26ad5bd7b18b + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.57.1.tgz + version: 1.57.1 + - apiVersion: v2 + appVersion: v1.57.0 + created: "2025-01-13T08:27:39.149779228Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 2fbc91e8bf143822bc72beaed930977ba002b4ff5ddad79457cca8e08f175822 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.57.0.tgz + version: 1.57.0 + - apiVersion: v2 + appVersion: v1.56.1 + created: "2025-01-13T08:27:39.149375103Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e534d7d133c5a1fbfedeef38086e82508cf8c3fe8d59d9cee16045a600138ba5 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.56.1.tgz + version: 1.56.1 + - apiVersion: v2 + appVersion: v1.56.0 + created: "2025-01-13T08:27:39.148970518Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 55aded58f4b23ea167a8a79725fa378cee7e2e538b00cf7a670d602ab0d3eb91 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.56.0.tgz + version: 1.56.0 + - apiVersion: v2 + appVersion: v1.55.1 + created: "2025-01-13T08:27:39.148567966Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4a0735f422cddd206c3e65a3c7c5c2dfa9c94939ef231b3a6bb10af3a0f65263 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.55.1.tgz + version: 1.55.1 + - apiVersion: v2 + appVersion: v1.55.0 + created: "2025-01-13T08:27:39.14815769Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 06cfe5918a67652c983d46ee9a78ac46aab522e2478fa2e9bbb1ff6e8425d94f + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.55.0.tgz + version: 1.55.0 + - apiVersion: v2 + appVersion: v1.54.0 + created: "2025-01-13T08:27:39.14754642Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 393dc7e6b8a055c0be096e5ee8ae80b1d9dc1ed2e2693cc263848cbe7fc80b0a + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.54.0.tgz + version: 1.54.0 + - apiVersion: v2 + appVersion: v1.53.0 + created: "2025-01-13T08:27:39.146479677Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 1a40df13f0e6b770f33bad425ad4cd4705faa2c5d11c09db41d9b6f88e0e1320 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.53.0.tgz + version: 1.53.0 + - apiVersion: v2 + appVersion: v1.52.0 + created: "2025-01-13T08:27:39.145904172Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 16cd4192724c7ad5b95a5fd3a9601026fc919448125e589273e05a32fc409f99 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.52.0.tgz + version: 1.52.0 + - apiVersion: v2 + appVersion: v1.51.1 + created: "2025-01-13T08:27:39.145515457Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a10063fefba1483f5fb4b2d8833a4453f97df1f5bf4285c15845691887896dcc + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.51.1.tgz + version: 1.51.1 + - apiVersion: v2 + appVersion: v1.51.0 + created: "2025-01-13T08:27:39.145130588Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4b7a41418e1938dcdaf6c92d301d5c5a05dd0c89b37e2a00b532bf5bf238d691 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.51.0.tgz + version: 1.51.0 + - apiVersion: v2 + appVersion: v1.50.1 + created: "2025-01-13T08:27:39.144743315Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 745f918b754280d5f926067e68eb7718d02b5de03047c0cdab6e9203b3c9fc43 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.50.1.tgz + version: 1.50.1 + - apiVersion: v2 + appVersion: v1.50.0 + created: "2025-01-13T08:27:39.144346644Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d2f8f70209bb285035ca2851ef17b0f0745158513e646a6971a9ba00a72b7161 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.50.0.tgz + version: 1.50.0 + - apiVersion: v2 + appVersion: v1.49.0 + created: "2025-01-13T08:27:39.143948771Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 36648cd490749f6c416e9d94e39301eb5de421a11ef9a980e47221265f79db8d + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.49.0.tgz + version: 1.49.0 + - apiVersion: v2 + appVersion: v1.48.0 + created: "2025-01-13T08:27:39.143558753Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 106e2d4550951a94f6fd25e57385dbc7f061963d7716cdcb7844b14cf7b3bcf1 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.48.0.tgz + version: 1.48.0 + - apiVersion: v2 + appVersion: v1.47.0 + created: "2025-01-13T08:27:39.143147756Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 8f37a4009f66bc1a431a439fdf0b0978fcfd6213b452e00b1bab8b9845042c2c + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.47.0.tgz + version: 1.47.0 + - apiVersion: v2 + appVersion: v1.46.0 + created: "2025-01-13T08:27:39.142723914Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: bf323d71860ed7be4a26d33bed3cf1ffcdeefd86411339e7c02b56fc5bfe9bfb + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.46.0.tgz + version: 1.46.0 + - apiVersion: v2 + appVersion: v1.45.1 + created: "2025-01-13T08:27:39.142324879Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7c20d051925da6676e25be63517dc3b32c60bb434192571894f1f3903e0e8b91 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.45.1.tgz + version: 1.45.1 + - apiVersion: v2 + appVersion: v1.45.0 + created: "2025-01-13T08:27:39.141933358Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9f57ebe04e4a01344057e00b6f36747fe036c4735b99c6a2aa9493c51453f91a + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.45.0.tgz + version: 1.45.0 + - apiVersion: v2 + appVersion: v1.44.0 + created: "2025-01-13T08:27:39.14153817Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 272ea66058146928984725bd57ce62cc6d64aa19cd953f7b6bf3e9b9555cd089 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.44.0.tgz + version: 1.44.0 + - apiVersion: v2 + appVersion: v1.43.0 + created: "2025-01-13T08:27:39.141141018Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ef15e63bba9d2c5139811126d7c90b1edeabd80130ab3644cfe70c7662ef9903 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.43.0.tgz + version: 1.43.0 + - apiVersion: v2 + appVersion: v1.42.0 + created: "2025-01-13T08:27:39.140744358Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6a80b55ccdb849219c1c1612145b79f150988e4c21bce4fe371ed29482a4708d + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.42.0.tgz + version: 1.42.0 + - apiVersion: v2 + appVersion: v1.41.0 + created: "2025-01-13T08:27:39.140341546Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a3e758cee7c6e64dc2592d1bb6731725407a92a1c9a5600709743d1c7c650738 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.41.0.tgz + version: 1.41.0 + - apiVersion: v2 + appVersion: v1.40.1 + created: "2025-01-13T08:27:39.139922844Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4823661991a610031e709e324974eefd7413335713c1336b70a6fab0fffff7b3 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.40.1.tgz + version: 1.40.1 + - apiVersion: v2 + appVersion: v1.40.0 + created: "2025-01-13T08:27:39.139144051Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: cd1246c33a81538ba2c37de8f96dbf1d6dcf03141eec906d09c0243372b70c2c + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.40.0.tgz + version: 1.40.0 + - apiVersion: v2 + appVersion: v1.39.0 + created: "2025-01-13T08:27:39.137988524Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 427e2e4210ed93a1932189d6bfbaa788957566a8c687d75715bc0b65355f2c3a + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.39.0.tgz + version: 1.39.0 + - apiVersion: v2 + appVersion: v1.38.1 + created: "2025-01-13T08:27:39.137618674Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0aaba94a8a8defbf387e3f6fb082e7b60ae89cc11c5a6c7c614d55d83a910e02 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.38.1.tgz + version: 1.38.1 + - apiVersion: v2 + appVersion: v1.38.0 + created: "2025-01-13T08:27:39.137253311Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6b7a7e3a1a5f2456bda0c5bcc436a28aa3c1cf85cb7fec9dfab2940a7031048f + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.38.0.tgz + version: 1.38.0 + - apiVersion: v2 + appVersion: v1.37.0 + created: "2025-01-13T08:27:39.136879143Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6b81aa4c4f5f74aa99aa120077853ccbd2f17be962bfa62e368a174d6f7776e7 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.37.0.tgz + version: 1.37.0 + - apiVersion: v2 + appVersion: v1.36.5 + created: "2025-01-13T08:27:39.136509733Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 60d77a715f5de64cbd77d393ed6dd3183d38337cae096b75540f70e718a8c610 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.36.5.tgz + version: 1.36.5 + - apiVersion: v2 + appVersion: v1.36.4 + created: "2025-01-13T08:27:39.13612771Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5459736b44007945844fa49e2343bb47b29f95227f5be7a0639c7d505855abd4 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.36.4.tgz + version: 1.36.4 + - apiVersion: v2 + appVersion: v1.36.2 + created: "2025-01-13T08:27:39.135765113Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: bd7c05b2b3342abcdedf87f1a97670dd38a286fff687746720d63d886e0aaec1 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.36.2.tgz + version: 1.36.2 + - apiVersion: v2 + appVersion: v1.36.1 + created: "2025-01-13T08:27:39.135392807Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: dce60d39298cb9920fb5b201f8b100f87869fac476c723e9815ef6697439d228 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.36.1.tgz + version: 1.36.1 + - apiVersion: v2 + appVersion: v1.36.0 + created: "2025-01-13T08:27:39.134962945Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: fc7cc09bb48ea37d61882f4e362e1e616e706437007c677d60694a2f6cb1bd24 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.36.0.tgz + version: 1.36.0 + - apiVersion: v2 + appVersion: v1.35.0 + created: "2025-01-13T08:27:39.134565623Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6b1812c2efe61e8e39bb498fe30bef13532677c038cc093caf5084dd7a9b718e + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.35.0.tgz + version: 1.35.0 + - apiVersion: v2 + appVersion: v1.34.1 + created: "2025-01-13T08:27:39.13419957Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: daedc0787f53c83a5b969e45ba05a934183501a6526bc8e794ff5aeae1cf6b9f + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.34.1.tgz + version: 1.34.1 + - apiVersion: v2 + appVersion: v1.34.0 + created: "2025-01-13T08:27:39.133838085Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a7184e666d5ce0850ec337af1501ce69fa769212889dbda4a796a289e2d336bc + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.34.0.tgz + version: 1.34.0 + - apiVersion: v2 + appVersion: v1.33.1 + created: "2025-01-13T08:27:39.133465018Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a6bcd0a19425f69ac77f3dcb67a7a5b3ad5044a8cb06a8b807740473f169c43b + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.33.1.tgz + version: 1.33.1 + - apiVersion: v2 + appVersion: v1.33.0 + created: "2025-01-13T08:27:39.133083516Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: f2860c3881ace6558586475cc3778589126809dfd07157c24a844f8c80617122 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.33.0.tgz + version: 1.33.0 + - apiVersion: v2 + appVersion: v1.32.0 + created: "2025-01-13T08:27:39.13270562Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 208145d61ba42ffd46e511d8f29e9bac625f1cc6b3094b988589911788a18703 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.32.0.tgz + version: 1.32.0 + - apiVersion: v2 + appVersion: v1.31.0 + created: "2025-01-13T08:27:39.132340047Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0195b6f61655fb0476f5fe38f6acd913af21137bf98cad474d342dc1a2c22cca + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.31.0.tgz + version: 1.31.0 + - apiVersion: v2 + appVersion: v1.30.0 + created: "2025-01-13T08:27:39.131958225Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 79819f716b086d20a11ce28628991d456dd70be66b53c2abdde1de30d19962a0 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.30.0.tgz + version: 1.30.0 + - apiVersion: v2 + appVersion: v1.29.2 + created: "2025-01-13T08:27:39.131568567Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0a627271afd9cc4931c9f0568cd2e39578e94c85c7734a5ba454cc4180b07195 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.29.2.tgz + version: 1.29.2 + - apiVersion: v2 + appVersion: v1.29.1 + created: "2025-01-13T08:27:39.131166046Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 293b6a922af72effe41c6bad2aa1823118ae73b5854c0c475e98fcf6f8099fec + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.29.1.tgz + version: 1.29.1 + - apiVersion: v2 + appVersion: v1.29.0 + created: "2025-01-13T08:27:39.130302192Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: adafd8051d8279cd6f4f98ec9e4af05902cd8dba924ca75f6b551fedf5c12cb3 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.29.0.tgz + version: 1.29.0 + - apiVersion: v2 + appVersion: v1.28.1 + created: "2025-01-13T08:27:39.129413804Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 46c649521de3b90f648e6e89a5fa6aed89331e4fd4514d79910c8fed73a30952 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.28.1.tgz + version: 1.28.1 + - apiVersion: v2 + appVersion: v1.28.0 + created: "2025-01-13T08:27:39.129048712Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 98a171b97cd6971c64077e406e1d258941651a7f7b5a5e8d91b0db2c01cbf0d3 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.28.0.tgz + version: 1.28.0 + - apiVersion: v2 + appVersion: v1.27.0 + created: "2025-01-13T08:27:39.128695823Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c234512e5cd6dc7dec7c179c7c536ea6969ac2555e7cb014bf65073f90beea59 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.27.0.tgz + version: 1.27.0 + - apiVersion: v2 + appVersion: v1.26.3 + created: "2025-01-13T08:27:39.128356299Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 31a37f4cc1a8fed75828317d059e6f1991a9f3e3ed8cb0db3aaff478c1bccca8 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.26.3.tgz + version: 1.26.3 + - apiVersion: v2 + appVersion: v1.26.2 + created: "2025-01-13T08:27:39.128017366Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 989935227ad36a29f7b24078041c99ad88df4741b013175c129d57b81ef171f3 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.26.2.tgz + version: 1.26.2 + - apiVersion: v2 + appVersion: v1.26.1 + created: "2025-01-13T08:27:39.127674136Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 430cf10b6abd86f080fed90ce10692ca58d48831e974176f210ba140da3936e0 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.26.1.tgz + version: 1.26.1 + - apiVersion: v2 + appVersion: v1.26.0 + created: "2025-01-13T08:27:39.127315937Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0cc392206e8ce6ab6c048a39547a5bdc6bf9556a4d6fad093d12fa3d35ee1c25 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.26.0.tgz + version: 1.26.0 + - apiVersion: v2 + appVersion: v1.25.0 + created: "2025-01-13T08:27:39.126918625Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 99f71e47bafe0f1a6ce3aef60035bd430053f35a4ef0ade356f019a9f0664ccb + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.25.0.tgz + version: 1.25.0 + - apiVersion: v2 + appVersion: v1.24.0 + created: "2025-01-13T08:27:39.12655187Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: b4dc719fc0bd92061db1df00a21cbe1b000f8572cdcf9064044864170210cae2 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.24.0.tgz + version: 1.24.0 + - apiVersion: v2 + appVersion: v1.23.0 + created: "2025-01-13T08:27:39.126185386Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: b35680e1bd9f3b0541efbd51213c95266490252b1de1819a7fba35bd6e26d2cd + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.23.0.tgz + version: 1.23.0 + - apiVersion: v2 + appVersion: v1.22.1 + created: "2025-01-13T08:27:39.125812189Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 2f2d9fd6b0d6d759c2ffb98bf5c05afc123fed644b1798a1861026d47b68e883 + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.22.1.tgz + version: 1.22.1 + - apiVersion: v2 + appVersion: v1.22.0 + created: "2025-01-13T08:27:39.125416029Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: b46f2fe9b5441b5e119507461d97bca617dbef265ed107bd6e203003e41cf88c + home: https://github.com/kiali/kiali-operator + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - operator + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-operator + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-operator-1.22.0.tgz + version: 1.22.0 + kiali-server: + - apiVersion: v2 + appVersion: v2.4.0 + created: "2025-01-13T08:27:39.2455194Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 3824515345e10f1ad84ea87269e1bbb9fffa9db0501ffb3565f6577481e7ae2d + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-2.4.0.tgz + version: 2.4.0 + - apiVersion: v2 + appVersion: v2.3.0 + created: "2025-01-13T08:27:39.244926904Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9973f86f1b3c312ecb6ccd6ef74376a6b575d3e6ea0fdad2f5a21b5b68e00866 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-2.3.0.tgz + version: 2.3.0 + - apiVersion: v2 + appVersion: v2.2.0 + created: "2025-01-13T08:27:39.24433587Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a5a02ac2d55c972292b3b1f0aa02e3087592baba31d1a9e5c98e7e36b60a3fce + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-2.2.0.tgz + version: 2.2.0 + - apiVersion: v2 + appVersion: v2.1.0 + created: "2025-01-13T08:27:39.243746209Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5bcdc5a0da38fe1526a6a9d3d91bfe9f8333c0aee95941a2eda89f0709072fa0 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-2.1.0.tgz + version: 2.1.0 + - apiVersion: v2 + appVersion: v2.0.0 + created: "2025-01-13T08:27:39.243176556Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d3652b0b4f80bd417c9da30d0e10690f5185fe9146fd8c481ef13a327c1b0f26 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-2.0.0.tgz + version: 2.0.0 + - apiVersion: v2 + appVersion: v1.89.7 + created: "2025-01-13T08:27:39.242560155Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ddc612ef3e182f172908cc9a38ccaf8d98b4ab7a6660dce2020e2652bbeb8466 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.89.7.tgz + version: 1.89.7 + - apiVersion: v2 + appVersion: v1.89.3 + created: "2025-01-13T08:27:39.241971195Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4c8274da403035fbb3c7cddc6f295a0a0fbc3b6a4243ce60e817f1232630f083 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.89.3.tgz + version: 1.89.3 + - apiVersion: v2 + appVersion: v1.89.0 + created: "2025-01-13T08:27:39.241376034Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0c4b2013d097d1867e7f9746e92fd30702b457682a77039b4852a2a4338bf6a7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.89.0.tgz + version: 1.89.0 + - apiVersion: v2 + appVersion: v1.88.0 + created: "2025-01-13T08:27:39.240695585Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 1f40fe68114d5f2d3f21e1bb3e176331f53ba5807f57593005a5d41bfaae4c07 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.88.0.tgz + version: 1.88.0 + - apiVersion: v2 + appVersion: v1.87.0 + created: "2025-01-13T08:27:39.239284328Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 8ac94f681ca629558426c4923d17ba618f820c8fdab6891132c3091a599000bb + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.87.0.tgz + version: 1.87.0 + - apiVersion: v2 + appVersion: v1.86.2 + created: "2025-01-13T08:27:39.238662187Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 71ce7838f6977b86deae736eb8732755d22fe5155815ba3305a234d602e7213f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.86.2.tgz + version: 1.86.2 + - apiVersion: v2 + appVersion: v1.86.1 + created: "2025-01-13T08:27:39.238056315Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7f0a2a2b6cec9b83d28f713e9d7972bf178c9f08960a1e12740a9dd2b2ac8dca + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.86.1.tgz + version: 1.86.1 + - apiVersion: v2 + appVersion: v1.86.0 + created: "2025-01-13T08:27:39.23748046Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 47926ad7c0cfbe8db590c2c6f526a5ee488756b9567054bc4504aaa19eb9ee0d + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.86.0.tgz + version: 1.86.0 + - apiVersion: v2 + appVersion: v1.85.0 + created: "2025-01-13T08:27:39.236906298Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 540a02367ade83773689eaa6f734aeb20acf9ee7caa8e5deb2275ab967ccbfed + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.85.0.tgz + version: 1.85.0 + - apiVersion: v2 + appVersion: v1.84.0 + created: "2025-01-13T08:27:39.236326856Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7a130fb55e73c680d18e35b2b34b855d817a56c6007bf793662e12c5c3cec155 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.84.0.tgz + version: 1.84.0 + - apiVersion: v2 + appVersion: v1.83.0 + created: "2025-01-13T08:27:39.235751752Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 64629e82300c601c8162f657f3d9e03ec37e542624d80a2b8d97b14b1e7bb524 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.83.0.tgz + version: 1.83.0 + - apiVersion: v2 + appVersion: v1.82.0 + created: "2025-01-13T08:27:39.235176738Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c4d5f644218d7ecd7c74f26dde8618c5fa33e943e60a34b8aece02e5c38c6c77 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.82.0.tgz + version: 1.82.0 + - apiVersion: v2 + appVersion: v1.81.0 + created: "2025-01-13T08:27:39.234547604Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 8d4b2eb142cb2019f3ded8b6e4fc681d3c127b995cecac38433d942fb5cf2718 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.81.0.tgz + version: 1.81.0 + - apiVersion: v2 + appVersion: v1.80.0 + created: "2025-01-13T08:27:39.23397772Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ad0f3b3ac8f9926fadddf50feb47bce42763590bf8aab61f738a66df9d04a5b7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.80.0.tgz + version: 1.80.0 + - apiVersion: v2 + appVersion: v1.79.0 + created: "2025-01-13T08:27:39.23339971Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 05f0de51e3a24962976f5c5339c980c4de5586a55987e3240e22c41548eadefd + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.79.0.tgz + version: 1.79.0 + - apiVersion: v2 + appVersion: v1.78.0 + created: "2025-01-13T08:27:39.232789661Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6e7551866bd2b08007dc131f726ac50be8cd9178cfeb8a0e1500b4d75ef29bc8 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.78.0.tgz + version: 1.78.0 + - apiVersion: v2 + appVersion: v1.77.0 + created: "2025-01-13T08:27:39.231448309Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 884dc4d6f046a4958dead8e71ab4a9a8bf53666d663aaf2b104d9e4b64872e13 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.77.0.tgz + version: 1.77.0 + - apiVersion: v2 + appVersion: v1.76.0 + created: "2025-01-13T08:27:39.230810127Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7352232b367431b38a1053cb6a9fea061157784ac9db28d2d1b15150665925e0 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.76.0.tgz + version: 1.76.0 + - apiVersion: v2 + appVersion: v1.75.0 + created: "2025-01-13T08:27:39.230238129Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4c6b0077133490b4b4386742caecc404a7542d5e053d29fdc7446c92d755fbf7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.75.0.tgz + version: 1.75.0 + - apiVersion: v2 + appVersion: v1.74.0 + created: "2025-01-13T08:27:39.229689675Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 519998cd7e572bc0cf684b1db84a5fe2442893c76f477417defbd636e8ad0587 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.74.0.tgz + version: 1.74.0 + - apiVersion: v2 + appVersion: v1.73.2 + created: "2025-01-13T08:27:39.229144357Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5b4140979e093401b14fa5c0a2870a66706fc8de7614e17a669bd2306eb50221 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.73.2.tgz + version: 1.73.2 + - apiVersion: v2 + appVersion: v1.73.1 + created: "2025-01-13T08:27:39.228595612Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e0a45db354e0987c2e168da5efc2e4c036773eebedf93f0d79909ddd69f9fac0 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.73.1.tgz + version: 1.73.1 + - apiVersion: v2 + appVersion: v1.73.0 + created: "2025-01-13T08:27:39.228049843Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 51384d451164dc4fe03eb03ad59b2d538db5a023f8d7e1900699a7675eba1d32 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.73.0.tgz + version: 1.73.0 + - apiVersion: v2 + appVersion: v1.72.0 + created: "2025-01-13T08:27:39.227497111Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e1fa55dd6059b4b05000596a26717bf4d7b0b6d092ce0160194b052a530bf407 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.72.0.tgz + version: 1.72.0 + - apiVersion: v2 + appVersion: v1.71.0 + created: "2025-01-13T08:27:39.226900126Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 522efda0c18cb1e67e41ee8796e59291a375d0161e3df9608794ffd70023ce65 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.71.0.tgz + version: 1.71.0 + - apiVersion: v2 + appVersion: v1.70.0 + created: "2025-01-13T08:27:39.226343117Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4fb1d0fe0a9c4e89cb5832171a2e00ce76e4ef6e81fb5e1d638cacbf3560cf33 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.70.0.tgz + version: 1.70.0 + - apiVersion: v2 + appVersion: v1.69.0 + created: "2025-01-13T08:27:39.225779124Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d4437661ecdd1282e09039603f4e63e100744b6dfffa281762b2fe19a4cea15b + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.69.0.tgz + version: 1.69.0 + - apiVersion: v2 + appVersion: v1.68.0 + created: "2025-01-13T08:27:39.22519903Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 197b53fc8108f2c975f2e2f4221493ee5fb8b9745d852d7b56fc86d653ea794f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.68.0.tgz + version: 1.68.0 + - apiVersion: v2 + appVersion: v1.67.1 + created: "2025-01-13T08:27:39.224212809Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: f8b1e6456ddc8cfe6bf2730581c7867ac96bd42165b1e5e374b00d3a9cd4889e + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.67.1.tgz + version: 1.67.1 + - apiVersion: v2 + appVersion: v1.67.0 + created: "2025-01-13T08:27:39.223201651Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 14a09ac7ca2354e61b3c3acadb243249024502f78f531d08f3813c556130f41c + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.67.0.tgz + version: 1.67.0 + - apiVersion: v2 + appVersion: v1.66.1 + created: "2025-01-13T08:27:39.222624243Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: bfe99dbc77528623822756a20d1a888a22c277e661fa67e0718b07d276d8a29b + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.66.1.tgz + version: 1.66.1 + - apiVersion: v2 + appVersion: v1.66.0 + created: "2025-01-13T08:27:39.222080247Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a453ef4026b32e8ffa1c0b0827ab50afa91f4219af5bd69251148713ece4af5f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.66.0.tgz + version: 1.66.0 + - apiVersion: v2 + appVersion: v1.65.0 + created: "2025-01-13T08:27:39.221535831Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 86fd259b2ee1c6a8ac9361ece769ba52480981efd43b773ad9d3debba7ef28b1 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.65.0.tgz + version: 1.65.0 + - apiVersion: v2 + appVersion: v1.64.0 + created: "2025-01-13T08:27:39.220974563Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 61b992de6ef0161172c7691c68cab4729898e6613eb9f6d5d54259012d7b0b24 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.64.0.tgz + version: 1.64.0 + - apiVersion: v2 + appVersion: v1.63.2 + created: "2025-01-13T08:27:39.220416982Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4dddfa385d976cc87ceb20aeccdc71a9d2cd48b4a4e615067a06cd1194df1ac9 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.63.2.tgz + version: 1.63.2 + - apiVersion: v2 + appVersion: v1.63.1 + created: "2025-01-13T08:27:39.219839213Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9cf808eb5436767fbfef1770c9640f7c4066b1a429ae6a54676fd7e145133c34 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.63.1.tgz + version: 1.63.1 + - apiVersion: v2 + appVersion: v1.63.0 + created: "2025-01-13T08:27:39.219257727Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 1d30a71e486f46e1f952c1adb52ea494186221cb54118c7eab4a24b9fa3501c3 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.63.0.tgz + version: 1.63.0 + - apiVersion: v2 + appVersion: v1.62.1 + created: "2025-01-13T08:27:39.218660241Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c9c194b32567a2fcd0668ea0114b0a26d94c7d463b8cc3839e84b253f8c608fb + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.62.1.tgz + version: 1.62.1 + - apiVersion: v2 + appVersion: v1.62.0 + created: "2025-01-13T08:27:39.218123098Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: beff68f782501b1b974a5e211e98e5e7d76b7d329c955b05acb89dc734b24b3f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.62.0.tgz + version: 1.62.0 + - apiVersion: v2 + appVersion: v1.61.0 + created: "2025-01-13T08:27:39.217581076Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 05172b4e98706510e9bceefaef438197155a69d939226149322d8a5085287d16 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.61.0.tgz + version: 1.61.0 + - apiVersion: v2 + appVersion: v1.60.0 + created: "2025-01-13T08:27:39.21700474Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 270b9d100bbb85f6055c429a5ce413e20917caec6ed6d574cd57c2b3490f4027 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.60.0.tgz + version: 1.60.0 + - apiVersion: v2 + appVersion: v1.59.1 + created: "2025-01-13T08:27:39.216411412Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: fb322a233f65cc41842104c99efb6afc4576c288af32f8e5ed26836c55290380 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.59.1.tgz + version: 1.59.1 + - apiVersion: v2 + appVersion: v1.59.0 + created: "2025-01-13T08:27:39.214840748Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 278785d92c7b8b6ec5c7b0dc67b754fba7064619ede56a9a895b9f5ceeeffe00 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.59.0.tgz + version: 1.59.0 + - apiVersion: v2 + appVersion: v1.58.0 + created: "2025-01-13T08:27:39.214305458Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7d28cbb47a0d3a5490e631897405a9945ffec6c402a1d3d179c5e432fb607c88 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.58.0.tgz + version: 1.58.0 + - apiVersion: v2 + appVersion: v1.57.3 + created: "2025-01-13T08:27:39.213781189Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: eb4bace25860c2df93ae85233468e9d1f7a3228354402ff21fea692794696f4b + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.57.3.tgz + version: 1.57.3 + - apiVersion: v2 + appVersion: v1.57.2 + created: "2025-01-13T08:27:39.213261479Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a885b78a7e6cac992d769946caf4e1ca7a7caf0d1729cd7dd6f94784aad29d72 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.57.2.tgz + version: 1.57.2 + - apiVersion: v2 + appVersion: v1.57.1 + created: "2025-01-13T08:27:39.212734936Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 761909eee4282cdc6fcb47c2496d480972ac4825e419e94e58f0ba9e656b0b98 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.57.1.tgz + version: 1.57.1 + - apiVersion: v2 + appVersion: v1.57.0 + created: "2025-01-13T08:27:39.212196951Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 575dfe444e30dec41585c2def6bed873b2ef2b409666a14ce58ab73877d492f1 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.57.0.tgz + version: 1.57.0 + - apiVersion: v2 + appVersion: v1.56.1 + created: "2025-01-13T08:27:39.211670198Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: b9c5888c5e73c61f6c3b6dd2cded76a901986f7d986fc69744c8a10e0a4980f7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.56.1.tgz + version: 1.56.1 + - apiVersion: v2 + appVersion: v1.56.0 + created: "2025-01-13T08:27:39.211129208Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 2830875fbda8054e03b2190caf8db84f829e8fbc0183d9a18dccd1bb71e9b8ab + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.56.0.tgz + version: 1.56.0 + - apiVersion: v2 + appVersion: v1.55.1 + created: "2025-01-13T08:27:39.210569954Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e376d3e51885cb658b7f9b25eaae4ebb574013ac81e5a3b5872847e75934a38e + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.55.1.tgz + version: 1.55.1 + - apiVersion: v2 + appVersion: v1.55.0 + created: "2025-01-13T08:27:39.210009176Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 92ff0525faeae587dce134f4647ede9a94201336853a2e6f013cf5586d00059c + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.55.0.tgz + version: 1.55.0 + - apiVersion: v2 + appVersion: v1.54.0 + created: "2025-01-13T08:27:39.209477123Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e6ec26a3e4aee37df9c10a0fb6d677d01dd26a50adf68e10536695d3b72f5bb6 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.54.0.tgz + version: 1.54.0 + - apiVersion: v2 + appVersion: v1.53.0 + created: "2025-01-13T08:27:39.208932546Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d34537d2a2025440f4c861fc8eec7ffd751fbf001936977618f544074e8da3b7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.53.0.tgz + version: 1.53.0 + - apiVersion: v2 + appVersion: v1.52.0 + created: "2025-01-13T08:27:39.208362402Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0e651e0f5e35095ce2297b29d25a98d32479648cf37a90337b70f9813ac37b9b + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.52.0.tgz + version: 1.52.0 + - apiVersion: v2 + appVersion: v1.51.1 + created: "2025-01-13T08:27:39.207047366Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 780e6fe77905fc525f5dab8e0b68008abc25d5ebf961c0438b45878ddfbde575 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.51.1.tgz + version: 1.51.1 + - apiVersion: v2 + appVersion: v1.51.0 + created: "2025-01-13T08:27:39.206344685Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 3336eb02c0f1c88c3cc1921369d8993f802bd1dab0e507af43891f49d13afaa7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.51.0.tgz + version: 1.51.0 + - apiVersion: v2 + appVersion: v1.50.1 + created: "2025-01-13T08:27:39.205808884Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 873ce7dde035de2fa4d02e939e7f027163113ab85b197d3aadb41eb0b2ab6d70 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.50.1.tgz + version: 1.50.1 + - apiVersion: v2 + appVersion: v1.50.0 + created: "2025-01-13T08:27:39.205279155Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 855d0d083cdc555ec0f81851345195c413468aaa826f565859d4768beef989a8 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.50.0.tgz + version: 1.50.0 + - apiVersion: v2 + appVersion: v1.49.0 + created: "2025-01-13T08:27:39.204752632Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4d8f4dc10a01c68d986b1194bba2352daecc226e389e28e3fdeb616476f9d7f7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.49.0.tgz + version: 1.49.0 + - apiVersion: v2 + appVersion: v1.48.0 + created: "2025-01-13T08:27:39.204218435Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: f35f622a89ae2008eb4c7663f1bacc1aedfafbcdfdf3a0cac0f6564b3dae4a4f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.48.0.tgz + version: 1.48.0 + - apiVersion: v2 + appVersion: v1.47.0 + created: "2025-01-13T08:27:39.203699966Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 340945a9c65d9e08f3edfa12db5dadbef11ee92ce8969173b9f1a51c98f0e025 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.47.0.tgz + version: 1.47.0 + - apiVersion: v2 + appVersion: v1.46.0 + created: "2025-01-13T08:27:39.203173834Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7eb0c187ab9167561c733540f443f7381008ffa3a345e6f5f028640c13274a4f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.46.0.tgz + version: 1.46.0 + - apiVersion: v2 + appVersion: v1.45.1 + created: "2025-01-13T08:27:39.202624979Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: a78b24ea9f5a5e24f255be5fbe208895ab0b02325bc9a5e0e162ed1122a79909 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.45.1.tgz + version: 1.45.1 + - apiVersion: v2 + appVersion: v1.45.0 + created: "2025-01-13T08:27:39.202110218Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c58a4914c8fc5beeffc15fd33bc55988a9b1904841d938504accf0795dfb36d4 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.45.0.tgz + version: 1.45.0 + - apiVersion: v2 + appVersion: v1.44.0 + created: "2025-01-13T08:27:39.201592201Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 286f9bf5f5ecf8a3b38c06516d60765bdedc9511f30b4a0c775d7acf1eac67eb + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.44.0.tgz + version: 1.44.0 + - apiVersion: v2 + appVersion: v1.43.0 + created: "2025-01-13T08:27:39.201070396Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: dcf1833868c28ac14a15d4808c37ead813e68d21c5e6f12675a6dc9c98271a79 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.43.0.tgz + version: 1.43.0 + - apiVersion: v2 + appVersion: v1.42.0 + created: "2025-01-13T08:27:39.200475375Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ea5d467375f97ed80164b5d4f5b18770ed5823cbfce787d8edca2573d54a9927 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.42.0.tgz + version: 1.42.0 + - apiVersion: v2 + appVersion: v1.41.0 + created: "2025-01-13T08:27:39.199953291Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d2f83b98e701bae263cf2988df35fcd8cb0cde04dfb072fe998decd28484ff21 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.41.0.tgz + version: 1.41.0 + - apiVersion: v2 + appVersion: v1.40.1 + created: "2025-01-13T08:27:39.199439812Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 70335ebbae2d8dded952e469e95d8ef3017ab400416bae9c6d4cdc9b972c7502 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.40.1.tgz + version: 1.40.1 + - apiVersion: v2 + appVersion: v1.40.0 + created: "2025-01-13T08:27:39.198237348Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ba4edb75f18ef7dfe4543921f40c68181575492a3552d901b0acb30178989b1e + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.40.0.tgz + version: 1.40.0 + - apiVersion: v2 + appVersion: v1.39.0 + created: "2025-01-13T08:27:39.196857652Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 5259e2deaa46ba5a98447242a95ad468e60c48c0870ea567dc748407d68c78a7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.39.0.tgz + version: 1.39.0 + - apiVersion: v2 + appVersion: v1.38.1 + created: "2025-01-13T08:27:39.196059382Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: fe33791a6af516eef8267120897e070c3438480ddf202958ea07effc1e2e8278 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.38.1.tgz + version: 1.38.1 + - apiVersion: v2 + appVersion: v1.38.0 + created: "2025-01-13T08:27:39.195236104Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 8bfd40bb84d1acbb4d1ce604c8fb1dc04f3c56063c407a6c0283b28acdfd33fe + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.38.0.tgz + version: 1.38.0 + - apiVersion: v2 + appVersion: v1.37.0 + created: "2025-01-13T08:27:39.194729889Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: eecb8623b36589533f3080ec2f90f628882499573762b6bfe3817f35ec71b66e + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.37.0.tgz + version: 1.37.0 + - apiVersion: v2 + appVersion: v1.36.5 + created: "2025-01-13T08:27:39.194280931Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 51fde6e9d229f813201b6f0e22c8742e4a2f2e472f700e2c5db22b4a9e1f28b6 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.36.5.tgz + version: 1.36.5 + - apiVersion: v2 + appVersion: v1.36.4 + created: "2025-01-13T08:27:39.193832554Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: ea4b4e55bfd56ffc143743b71f5b882bb5465dd6c0b8a2b1999897d177c352a3 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.36.4.tgz + version: 1.36.4 + - apiVersion: v2 + appVersion: v1.36.2 + created: "2025-01-13T08:27:39.193378766Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c68ccc86375f541c0c112c35611a7a5b9b163eb924b0a91504973798eb562686 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.36.2.tgz + version: 1.36.2 + - apiVersion: v2 + appVersion: v1.36.1 + created: "2025-01-13T08:27:39.192926492Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 1b28951e780d172bbff468eb797bce03fa5f4c68efcef280062d1ce832adbc1a + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.36.1.tgz + version: 1.36.1 + - apiVersion: v2 + appVersion: v1.36.0 + created: "2025-01-13T08:27:39.192477544Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 164f5b5cbdf94a123ca2c9839460f18f185c61d5efeca86d792ea34a3bebbbdd + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.36.0.tgz + version: 1.36.0 + - apiVersion: v2 + appVersion: v1.35.0 + created: "2025-01-13T08:27:39.192022725Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 88a403bb93368504baf0dec1422966f3a0bb87a9d7ef659a0cb98f10016df2be + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.35.0.tgz + version: 1.35.0 + - apiVersion: v2 + appVersion: v1.34.1 + created: "2025-01-13T08:27:39.191395694Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 0cc28c92f59f45fcbea9972eb476194972f3f92e9bc6942b21487e1b237e4751 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.34.1.tgz + version: 1.34.1 + - apiVersion: v2 + appVersion: v1.34.0 + created: "2025-01-13T08:27:39.190721615Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d43d35b77c8d28981617acf87a1faf1d956135e9f9c49ef6ab07dbb09a843b8b + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.34.0.tgz + version: 1.34.0 + - apiVersion: v2 + appVersion: v1.33.1 + created: "2025-01-13T08:27:39.190058527Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e8fb3914adf5688d7da31b635bdb9aa290a8609fd10257af8f49228b99e4b2d8 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.33.1.tgz + version: 1.33.1 + - apiVersion: v2 + appVersion: v1.33.0 + created: "2025-01-13T08:27:39.188911644Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6fc5298adbfb74729b168ee6b98f1b5866b8f4d1ede209327f2392ecf06b7eb0 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.33.0.tgz + version: 1.33.0 + - apiVersion: v2 + appVersion: v1.32.0 + created: "2025-01-13T08:27:39.18790814Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4de7609062da0f346b02426377a1b655ec6076091dfdb506903879882222a697 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.32.0.tgz + version: 1.32.0 + - apiVersion: v2 + appVersion: v1.31.0 + created: "2025-01-13T08:27:39.187288714Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 83a0dd19b269d726ef6683ae2f1ee90808c285fb37ef1d8ac73cb3b97f9ab65f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.31.0.tgz + version: 1.31.0 + - apiVersion: v2 + appVersion: v1.30.0 + created: "2025-01-13T08:27:39.186647447Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9c6573c90b6de892f372fa26181c6c895ad9e13810fe887c8d43eebd517dc1fc + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.30.0.tgz + version: 1.30.0 + - apiVersion: v2 + appVersion: v1.29.2 + created: "2025-01-13T08:27:39.186032328Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 51807e1ef8fa70fc708c71a2848ca5ce518fc4310b45a98b069aa16d0c7ebf54 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.29.2.tgz + version: 1.29.2 + - apiVersion: v2 + appVersion: v1.29.1 + created: "2025-01-13T08:27:39.185414455Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 7cbffe3ff13d099d4387456f5f944f19453638ac68f3f10da3bb21debe17b1bb + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.29.1.tgz + version: 1.29.1 + - apiVersion: v2 + appVersion: v1.29.0 + created: "2025-01-13T08:27:39.184715299Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 6768ed29a973bb3d12d0552009213b24078eac6fc5ae58563622c030da4ac3aa + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.29.0.tgz + version: 1.29.0 + - apiVersion: v2 + appVersion: v1.28.1 + created: "2025-01-13T08:27:39.184107604Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: d32b8c3f2ae6cc933f4f5774578e641564822a6a1d0c26a37f9a7696d9c9f602 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.28.1.tgz + version: 1.28.1 + - apiVersion: v2 + appVersion: v1.28.0 + created: "2025-01-13T08:27:39.183518715Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 8988fcb558cdba62b08b32beeacfd96fc9e530e630a7431f6ba7fe9824f2df35 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.28.0.tgz + version: 1.28.0 + - apiVersion: v2 + appVersion: v1.27.0 + created: "2025-01-13T08:27:39.182899669Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 3f95f781ac9c548862dc539e5006d6db90b8d16c8f1df284d76090e66da81b40 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.27.0.tgz + version: 1.27.0 + - apiVersion: v2 + appVersion: v1.26.3 + created: "2025-01-13T08:27:39.182299819Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 3500c7286a11cd776dd62f7985a3d7f56674e44dedb9e3c6e13119ec39775032 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.26.3.tgz + version: 1.26.3 + - apiVersion: v2 + appVersion: v1.26.2 + created: "2025-01-13T08:27:39.18168474Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: e9b108c952fb9f2861c2975c2c0ad46232c5daf0df563a1ab801db439b3cfa70 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.26.2.tgz + version: 1.26.2 + - apiVersion: v2 + appVersion: v1.26.1 + created: "2025-01-13T08:27:39.180821799Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c7b0332ba20e50cf315a53722d380b9363f8437869c4d285c893f8118a0d9ce6 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.26.1.tgz + version: 1.26.1 + - apiVersion: v2 + appVersion: v1.26.0 + created: "2025-01-13T08:27:39.179534655Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4a2b14da2d181d6410036d9c6dd856a3e04db214874a6e8c1734afc589df8fc6 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.26.0.tgz + version: 1.26.0 + - apiVersion: v2 + appVersion: v1.25.0 + created: "2025-01-13T08:27:39.178928063Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: c1501fb2b25ee9ec83fc4a29d643abc03f989874ad92f2cd17f0bce0931c3ffc + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.25.0.tgz + version: 1.25.0 + - apiVersion: v2 + appVersion: v1.24.0 + created: "2025-01-13T08:27:39.178356315Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 42b1f155c937ca909cd636b99ff98c9115eef8b8705326b0ac2afe236a1bab7f + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.24.0.tgz + version: 1.24.0 + - apiVersion: v2 + appVersion: v1.23.0 + created: "2025-01-13T08:27:39.177794867Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 9b33f5756761226403348219be4d92ceb157972e95ee1d8d8779f3e65e506d19 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.23.0.tgz + version: 1.23.0 + - apiVersion: v2 + appVersion: v1.22.1 + created: "2025-01-13T08:27:39.177235703Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 07af09ec60220da7f8115708b2c61527713706663c44fdebfa3e8ec1b766ccf1 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.22.1.tgz + version: 1.22.1 + - apiVersion: v2 + appVersion: v1.22.0 + created: "2025-01-13T08:27:39.17667154Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. + digest: 4736fb9919cef8f30030ea6cf6473b15bf7f3ae2cac337059826d19843bb311c + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - https://kiali.org/helm-charts/kiali-server-1.22.0.tgz + version: 1.22.0 +generated: "2025-01-13T08:27:39.124882693Z" diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.22.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.22.0.tgz new file mode 100644 index 0000000..fb7a7a7 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.22.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.22.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.22.1.tgz new file mode 100644 index 0000000..e8cd272 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.22.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.23.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.23.0.tgz new file mode 100644 index 0000000..38c5f25 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.23.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.24.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.24.0.tgz new file mode 100644 index 0000000..e9e057f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.24.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.25.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.25.0.tgz new file mode 100644 index 0000000..61ccce8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.25.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.26.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.26.0.tgz new file mode 100644 index 0000000..e82c856 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.26.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.26.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.26.1.tgz new file mode 100644 index 0000000..a8ea669 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.26.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.26.2.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.26.2.tgz new file mode 100644 index 0000000..2f9e264 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.26.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.26.3.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.26.3.tgz new file mode 100644 index 0000000..9d4122a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.26.3.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.27.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.27.0.tgz new file mode 100644 index 0000000..f40993f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.27.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.28.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.28.0.tgz new file mode 100644 index 0000000..1e78cac Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.28.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.28.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.28.1.tgz new file mode 100644 index 0000000..f51bdcc Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.28.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.29.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.29.0.tgz new file mode 100644 index 0000000..f357f64 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.29.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.29.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.29.1.tgz new file mode 100644 index 0000000..3e838ee Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.29.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.29.2.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.29.2.tgz new file mode 100644 index 0000000..a34094a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.29.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.30.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.30.0.tgz new file mode 100644 index 0000000..e1d9260 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.30.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.31.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.31.0.tgz new file mode 100644 index 0000000..933ca5b Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.31.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.32.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.32.0.tgz new file mode 100644 index 0000000..30e0cdc Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.32.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.33.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.33.0.tgz new file mode 100644 index 0000000..7852bd0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.33.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.33.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.33.1.tgz new file mode 100644 index 0000000..7331e19 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.33.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.34.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.34.0.tgz new file mode 100644 index 0000000..19dd2f8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.34.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.34.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.34.1.tgz new file mode 100644 index 0000000..1c2d671 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.34.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.35.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.35.0.tgz new file mode 100644 index 0000000..219546a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.35.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.36.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.36.0.tgz new file mode 100644 index 0000000..39fb031 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.36.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.36.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.36.1.tgz new file mode 100644 index 0000000..7c93a21 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.36.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.36.2.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.36.2.tgz new file mode 100644 index 0000000..5517b52 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.36.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.36.4.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.36.4.tgz new file mode 100644 index 0000000..6e2ca4e Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.36.4.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.36.5.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.36.5.tgz new file mode 100644 index 0000000..8b1201b Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.36.5.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.37.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.37.0.tgz new file mode 100644 index 0000000..3f7a35a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.37.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.38.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.38.0.tgz new file mode 100644 index 0000000..e5d80a9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.38.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.38.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.38.1.tgz new file mode 100644 index 0000000..1c55eac Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.38.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.39.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.39.0.tgz new file mode 100644 index 0000000..86657c4 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.39.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.40.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.40.0.tgz new file mode 100644 index 0000000..60baeb9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.40.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.40.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.40.1.tgz new file mode 100644 index 0000000..c3f3cbb Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.40.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.41.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.41.0.tgz new file mode 100644 index 0000000..394b6f8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.41.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.42.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.42.0.tgz new file mode 100644 index 0000000..8af665e Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.42.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.43.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.43.0.tgz new file mode 100644 index 0000000..3e9ce8c Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.43.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.44.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.44.0.tgz new file mode 100644 index 0000000..3fff80a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.44.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.45.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.45.0.tgz new file mode 100644 index 0000000..a7d5c11 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.45.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.45.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.45.1.tgz new file mode 100644 index 0000000..198adb6 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.45.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.46.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.46.0.tgz new file mode 100644 index 0000000..00b3a4e Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.46.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.47.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.47.0.tgz new file mode 100644 index 0000000..8c1ddfc Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.47.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.48.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.48.0.tgz new file mode 100644 index 0000000..e99036a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.48.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.49.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.49.0.tgz new file mode 100644 index 0000000..2122901 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.49.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.50.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.50.0.tgz new file mode 100644 index 0000000..8459713 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.50.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.50.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.50.1.tgz new file mode 100644 index 0000000..289b3bb Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.50.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.51.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.51.0.tgz new file mode 100644 index 0000000..81d2e85 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.51.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.51.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.51.1.tgz new file mode 100644 index 0000000..6aa0750 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.51.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.52.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.52.0.tgz new file mode 100644 index 0000000..8cd5497 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.52.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.53.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.53.0.tgz new file mode 100644 index 0000000..7390101 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.53.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.54.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.54.0.tgz new file mode 100644 index 0000000..d9c6494 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.54.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.55.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.55.0.tgz new file mode 100644 index 0000000..c5a0919 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.55.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.55.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.55.1.tgz new file mode 100644 index 0000000..1c2a9a0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.55.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.56.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.56.0.tgz new file mode 100644 index 0000000..19a939a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.56.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.56.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.56.1.tgz new file mode 100644 index 0000000..15e9342 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.56.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.57.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.57.0.tgz new file mode 100644 index 0000000..7af64d8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.57.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.57.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.57.1.tgz new file mode 100644 index 0000000..f63ea2e Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.57.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.57.2.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.57.2.tgz new file mode 100644 index 0000000..6ebca94 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.57.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.57.3.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.57.3.tgz new file mode 100644 index 0000000..7b966a0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.57.3.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.58.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.58.0.tgz new file mode 100644 index 0000000..73aeb1f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.58.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.59.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.59.0.tgz new file mode 100644 index 0000000..0045ebf Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.59.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.59.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.59.1.tgz new file mode 100644 index 0000000..8cc88d1 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.59.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.60.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.60.0.tgz new file mode 100644 index 0000000..5402d09 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.60.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.61.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.61.0.tgz new file mode 100644 index 0000000..de6c579 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.61.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.62.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.62.0.tgz new file mode 100644 index 0000000..047c485 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.62.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.62.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.62.1.tgz new file mode 100644 index 0000000..eacfb33 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.62.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.63.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.63.0.tgz new file mode 100644 index 0000000..07ad1d5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.63.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.63.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.63.1.tgz new file mode 100644 index 0000000..c6c700d Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.63.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.63.2.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.63.2.tgz new file mode 100644 index 0000000..4824c4a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.63.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.64.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.64.0.tgz new file mode 100644 index 0000000..2293f69 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.64.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.65.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.65.0.tgz new file mode 100644 index 0000000..0ce3f31 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.65.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.66.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.66.0.tgz new file mode 100644 index 0000000..1b3b2a1 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.66.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.66.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.66.1.tgz new file mode 100644 index 0000000..cb5ab52 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.66.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.67.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.67.0.tgz new file mode 100644 index 0000000..d332c48 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.67.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.67.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.67.1.tgz new file mode 100644 index 0000000..4743b83 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.67.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.68.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.68.0.tgz new file mode 100644 index 0000000..d693bca Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.68.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.69.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.69.0.tgz new file mode 100644 index 0000000..9f28e84 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.69.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.70.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.70.0.tgz new file mode 100644 index 0000000..bec1c5b Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.70.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.71.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.71.0.tgz new file mode 100644 index 0000000..7d5a1e9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.71.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.72.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.72.0.tgz new file mode 100644 index 0000000..af93053 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.72.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.73.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.73.0.tgz new file mode 100644 index 0000000..bfcae81 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.73.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.73.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.73.1.tgz new file mode 100644 index 0000000..b5ad907 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.73.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.73.2.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.73.2.tgz new file mode 100644 index 0000000..0c8ebf6 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.73.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.74.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.74.0.tgz new file mode 100644 index 0000000..cefbef1 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.74.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.75.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.75.0.tgz new file mode 100644 index 0000000..3403798 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.75.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.76.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.76.0.tgz new file mode 100644 index 0000000..d792ebe Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.76.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.77.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.77.0.tgz new file mode 100644 index 0000000..b9c7e20 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.77.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.78.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.78.0.tgz new file mode 100644 index 0000000..b36a0ed Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.78.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.79.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.79.0.tgz new file mode 100644 index 0000000..3c6ab27 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.79.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.80.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.80.0.tgz new file mode 100644 index 0000000..8f3457e Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.80.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.81.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.81.0.tgz new file mode 100644 index 0000000..ff8bc88 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.81.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.82.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.82.0.tgz new file mode 100644 index 0000000..0afe0eb Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.82.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.83.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.83.0.tgz new file mode 100644 index 0000000..53f5d5a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.83.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.84.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.84.0.tgz new file mode 100644 index 0000000..05c48f9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.84.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.85.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.85.0.tgz new file mode 100644 index 0000000..82075a0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.85.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.86.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.86.0.tgz new file mode 100644 index 0000000..3e9fac9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.86.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.86.1.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.86.1.tgz new file mode 100644 index 0000000..549bad8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.86.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.86.2.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.86.2.tgz new file mode 100644 index 0000000..387b865 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.86.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.87.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.87.0.tgz new file mode 100644 index 0000000..b723349 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.87.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.88.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.88.0.tgz new file mode 100644 index 0000000..97f737f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.88.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.89.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.89.0.tgz new file mode 100644 index 0000000..0d03dcd Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.89.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.89.3.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.89.3.tgz new file mode 100644 index 0000000..d83ac6c Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.89.3.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-1.89.7.tgz b/helm-charts-2.4.0/docs/kiali-operator-1.89.7.tgz new file mode 100644 index 0000000..a060e24 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-1.89.7.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-2.0.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-2.0.0.tgz new file mode 100644 index 0000000..342ebcc Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-2.0.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-2.1.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-2.1.0.tgz new file mode 100644 index 0000000..c3abe16 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-2.1.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-2.2.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-2.2.0.tgz new file mode 100644 index 0000000..5159820 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-2.2.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-2.3.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-2.3.0.tgz new file mode 100644 index 0000000..1536140 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-2.3.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-operator-2.4.0.tgz b/helm-charts-2.4.0/docs/kiali-operator-2.4.0.tgz new file mode 100644 index 0000000..f29f780 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-operator-2.4.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.22.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.22.0.tgz new file mode 100644 index 0000000..d02aef5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.22.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.22.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.22.1.tgz new file mode 100644 index 0000000..c6d4337 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.22.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.23.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.23.0.tgz new file mode 100644 index 0000000..9b2fdf5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.23.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.24.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.24.0.tgz new file mode 100644 index 0000000..6d34705 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.24.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.25.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.25.0.tgz new file mode 100644 index 0000000..eadb6a8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.25.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.26.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.26.0.tgz new file mode 100644 index 0000000..fc6a8c2 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.26.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.26.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.26.1.tgz new file mode 100644 index 0000000..34111a5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.26.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.26.2.tgz b/helm-charts-2.4.0/docs/kiali-server-1.26.2.tgz new file mode 100644 index 0000000..e1f363d Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.26.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.26.3.tgz b/helm-charts-2.4.0/docs/kiali-server-1.26.3.tgz new file mode 100644 index 0000000..332f3ce Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.26.3.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.27.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.27.0.tgz new file mode 100644 index 0000000..f610510 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.27.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.28.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.28.0.tgz new file mode 100644 index 0000000..afeccc7 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.28.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.28.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.28.1.tgz new file mode 100644 index 0000000..8839300 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.28.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.29.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.29.0.tgz new file mode 100644 index 0000000..9135069 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.29.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.29.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.29.1.tgz new file mode 100644 index 0000000..616e44f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.29.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.29.2.tgz b/helm-charts-2.4.0/docs/kiali-server-1.29.2.tgz new file mode 100644 index 0000000..85d60ca Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.29.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.30.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.30.0.tgz new file mode 100644 index 0000000..6ba1de0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.30.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.31.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.31.0.tgz new file mode 100644 index 0000000..5adf8f9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.31.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.32.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.32.0.tgz new file mode 100644 index 0000000..d9b6408 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.32.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.33.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.33.0.tgz new file mode 100644 index 0000000..4638241 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.33.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.33.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.33.1.tgz new file mode 100644 index 0000000..1351247 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.33.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.34.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.34.0.tgz new file mode 100644 index 0000000..018c8d3 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.34.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.34.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.34.1.tgz new file mode 100644 index 0000000..90031cb Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.34.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.35.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.35.0.tgz new file mode 100644 index 0000000..1377e69 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.35.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.36.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.36.0.tgz new file mode 100644 index 0000000..57e18ce Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.36.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.36.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.36.1.tgz new file mode 100644 index 0000000..abfb4c7 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.36.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.36.2.tgz b/helm-charts-2.4.0/docs/kiali-server-1.36.2.tgz new file mode 100644 index 0000000..23061f9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.36.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.36.4.tgz b/helm-charts-2.4.0/docs/kiali-server-1.36.4.tgz new file mode 100644 index 0000000..fc55914 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.36.4.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.36.5.tgz b/helm-charts-2.4.0/docs/kiali-server-1.36.5.tgz new file mode 100644 index 0000000..8df987a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.36.5.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.37.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.37.0.tgz new file mode 100644 index 0000000..7be5b24 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.37.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.38.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.38.0.tgz new file mode 100644 index 0000000..8952ec1 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.38.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.38.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.38.1.tgz new file mode 100644 index 0000000..ee4be70 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.38.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.39.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.39.0.tgz new file mode 100644 index 0000000..7b53cb8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.39.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.40.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.40.0.tgz new file mode 100644 index 0000000..efa572f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.40.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.40.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.40.1.tgz new file mode 100644 index 0000000..9658f85 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.40.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.41.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.41.0.tgz new file mode 100644 index 0000000..a1eeea8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.41.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.42.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.42.0.tgz new file mode 100644 index 0000000..4d17a26 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.42.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.43.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.43.0.tgz new file mode 100644 index 0000000..b4640a1 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.43.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.44.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.44.0.tgz new file mode 100644 index 0000000..98adba6 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.44.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.45.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.45.0.tgz new file mode 100644 index 0000000..cfa356e Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.45.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.45.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.45.1.tgz new file mode 100644 index 0000000..9250db5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.45.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.46.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.46.0.tgz new file mode 100644 index 0000000..403a413 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.46.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.47.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.47.0.tgz new file mode 100644 index 0000000..f7c6bc4 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.47.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.48.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.48.0.tgz new file mode 100644 index 0000000..ebb68c9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.48.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.49.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.49.0.tgz new file mode 100644 index 0000000..0ca51d8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.49.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.50.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.50.0.tgz new file mode 100644 index 0000000..42b8a18 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.50.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.50.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.50.1.tgz new file mode 100644 index 0000000..285b92d Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.50.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.51.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.51.0.tgz new file mode 100644 index 0000000..a840464 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.51.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.51.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.51.1.tgz new file mode 100644 index 0000000..9e5e4a0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.51.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.52.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.52.0.tgz new file mode 100644 index 0000000..0b57666 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.52.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.53.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.53.0.tgz new file mode 100644 index 0000000..a3e1e1a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.53.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.54.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.54.0.tgz new file mode 100644 index 0000000..8fa2a75 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.54.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.55.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.55.0.tgz new file mode 100644 index 0000000..dbffdf2 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.55.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.55.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.55.1.tgz new file mode 100644 index 0000000..7c44b68 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.55.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.56.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.56.0.tgz new file mode 100644 index 0000000..dfa0474 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.56.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.56.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.56.1.tgz new file mode 100644 index 0000000..0a908e6 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.56.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.57.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.57.0.tgz new file mode 100644 index 0000000..e604392 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.57.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.57.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.57.1.tgz new file mode 100644 index 0000000..6520996 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.57.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.57.2.tgz b/helm-charts-2.4.0/docs/kiali-server-1.57.2.tgz new file mode 100644 index 0000000..2d5f333 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.57.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.57.3.tgz b/helm-charts-2.4.0/docs/kiali-server-1.57.3.tgz new file mode 100644 index 0000000..a3c8ded Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.57.3.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.58.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.58.0.tgz new file mode 100644 index 0000000..27e84d9 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.58.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.59.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.59.0.tgz new file mode 100644 index 0000000..825646a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.59.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.59.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.59.1.tgz new file mode 100644 index 0000000..105e456 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.59.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.60.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.60.0.tgz new file mode 100644 index 0000000..9861e08 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.60.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.61.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.61.0.tgz new file mode 100644 index 0000000..a8919e0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.61.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.62.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.62.0.tgz new file mode 100644 index 0000000..77356fb Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.62.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.62.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.62.1.tgz new file mode 100644 index 0000000..32258b0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.62.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.63.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.63.0.tgz new file mode 100644 index 0000000..bbffe4a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.63.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.63.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.63.1.tgz new file mode 100644 index 0000000..e400ac1 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.63.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.63.2.tgz b/helm-charts-2.4.0/docs/kiali-server-1.63.2.tgz new file mode 100644 index 0000000..16a5688 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.63.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.64.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.64.0.tgz new file mode 100644 index 0000000..f5b0845 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.64.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.65.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.65.0.tgz new file mode 100644 index 0000000..5c3db20 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.65.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.66.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.66.0.tgz new file mode 100644 index 0000000..8077ef0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.66.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.66.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.66.1.tgz new file mode 100644 index 0000000..0a96cb8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.66.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.67.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.67.0.tgz new file mode 100644 index 0000000..aeb9af1 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.67.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.67.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.67.1.tgz new file mode 100644 index 0000000..8d03bf5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.67.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.68.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.68.0.tgz new file mode 100644 index 0000000..b7957c5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.68.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.69.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.69.0.tgz new file mode 100644 index 0000000..246bba8 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.69.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.70.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.70.0.tgz new file mode 100644 index 0000000..531af0b Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.70.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.71.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.71.0.tgz new file mode 100644 index 0000000..9c9d43c Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.71.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.72.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.72.0.tgz new file mode 100644 index 0000000..c2c4ca0 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.72.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.73.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.73.0.tgz new file mode 100644 index 0000000..81156f4 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.73.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.73.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.73.1.tgz new file mode 100644 index 0000000..150cb26 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.73.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.73.2.tgz b/helm-charts-2.4.0/docs/kiali-server-1.73.2.tgz new file mode 100644 index 0000000..86ad975 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.73.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.74.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.74.0.tgz new file mode 100644 index 0000000..af0a23d Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.74.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.75.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.75.0.tgz new file mode 100644 index 0000000..48c094e Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.75.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.76.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.76.0.tgz new file mode 100644 index 0000000..22ed01f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.76.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.77.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.77.0.tgz new file mode 100644 index 0000000..a74b4cb Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.77.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.78.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.78.0.tgz new file mode 100644 index 0000000..763aee2 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.78.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.79.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.79.0.tgz new file mode 100644 index 0000000..7ced74f Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.79.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.80.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.80.0.tgz new file mode 100644 index 0000000..5bcc58a Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.80.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.81.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.81.0.tgz new file mode 100644 index 0000000..3b573aa Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.81.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.82.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.82.0.tgz new file mode 100644 index 0000000..3412622 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.82.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.83.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.83.0.tgz new file mode 100644 index 0000000..209eb2b Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.83.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.84.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.84.0.tgz new file mode 100644 index 0000000..03f3901 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.84.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.85.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.85.0.tgz new file mode 100644 index 0000000..2f77548 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.85.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.86.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.86.0.tgz new file mode 100644 index 0000000..ee4cf23 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.86.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.86.1.tgz b/helm-charts-2.4.0/docs/kiali-server-1.86.1.tgz new file mode 100644 index 0000000..3b99179 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.86.1.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.86.2.tgz b/helm-charts-2.4.0/docs/kiali-server-1.86.2.tgz new file mode 100644 index 0000000..ecb5fc2 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.86.2.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.87.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.87.0.tgz new file mode 100644 index 0000000..30e117d Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.87.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.88.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.88.0.tgz new file mode 100644 index 0000000..752647c Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.88.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.89.0.tgz b/helm-charts-2.4.0/docs/kiali-server-1.89.0.tgz new file mode 100644 index 0000000..c3b4661 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.89.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.89.3.tgz b/helm-charts-2.4.0/docs/kiali-server-1.89.3.tgz new file mode 100644 index 0000000..92ef507 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.89.3.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-1.89.7.tgz b/helm-charts-2.4.0/docs/kiali-server-1.89.7.tgz new file mode 100644 index 0000000..89430f5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-1.89.7.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-2.0.0.tgz b/helm-charts-2.4.0/docs/kiali-server-2.0.0.tgz new file mode 100644 index 0000000..0937184 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-2.0.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-2.1.0.tgz b/helm-charts-2.4.0/docs/kiali-server-2.1.0.tgz new file mode 100644 index 0000000..3ef77b5 Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-2.1.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-2.2.0.tgz b/helm-charts-2.4.0/docs/kiali-server-2.2.0.tgz new file mode 100644 index 0000000..270decf Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-2.2.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-2.3.0.tgz b/helm-charts-2.4.0/docs/kiali-server-2.3.0.tgz new file mode 100644 index 0000000..20894ce Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-2.3.0.tgz differ diff --git a/helm-charts-2.4.0/docs/kiali-server-2.4.0.tgz b/helm-charts-2.4.0/docs/kiali-server-2.4.0.tgz new file mode 100644 index 0000000..2bfb6ad Binary files /dev/null and b/helm-charts-2.4.0/docs/kiali-server-2.4.0.tgz differ diff --git a/helm-charts-2.4.0/hack/smoke-test-release-branch.sh b/helm-charts-2.4.0/hack/smoke-test-release-branch.sh new file mode 100755 index 0000000..4148137 --- /dev/null +++ b/helm-charts-2.4.0/hack/smoke-test-release-branch.sh @@ -0,0 +1,260 @@ +#!/bin/bash +# +# This will ensure both the operator and server helm charts of a potential release can successfully install their respective apps. +# +# In order to run this script, you need access to a Kubernetes cluster. If one is not currently available, an attempt to start +# a KinD cluster will be made. +# +# Because this is a merely a smoke test, Istio is not required to be installed. The Kiali Operator and Server will not be tested +# for functionality. The only tests performed by this script will simply ensure the pods can start successfully and the images +# that were pulled are the expected ones. +# + +set -ue + +# where this script is located +SCRIPT_DIR="$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)" + +# customizable settings via cmd line opts +CLIENT_EXE="$(which kubectl)" +GIT_REMOTE_NAME="origin" +GIT_LOCAL_DIR="${SCRIPT_DIR}/.." +HELM_EXE="$(which helm)" +KIND_EXE="$(which kind)" +RELEASE_BRANCH="" +RELEASE_BRANCH_PATTERN="helm-charts-release-*" + +# this is the local branch we will create that tracks the remote release branch +SMOKETEST_BRANCH="smoketest" + +# these are the namespaces where the operator and server will be installed +OPERATOR_NAMESPACE="smoketest-kiali-operator" +SERVER_NAMESPACE="smoketest-kiali-server" + +# when set, this is the original git branch we switched from - we'll want to restore this branch when we exit +ORIGINAL_BRANCH="" + +# this will be set if we needed to start our own KinD cluster to perform the test +KIND_CLUSTER_NAME="" + +infomsg() { + echo "[HACK] $1" +} + +restore_env() { + # Go back to the branch the user originally had checked out and delete the smoketest branch we created earlier + if [ -n "${ORIGINAL_BRANCH}" ]; then + infomsg "Restoring original git branch" + git checkout ${ORIGINAL_BRANCH} + if git rev-parse --verify ${SMOKETEST_BRANCH} &> /dev/null; then + if ! git branch -D ${SMOKETEST_BRANCH} &> /dev/null; then + infomsg "The test branch [${SMOKETEST_BRANCH}] is no longer needed but could not be deleted. Ignoring this error." + fi + fi + fi + + # If we created a KinD cluster to do the test, delete it since we do not need it anymore. + # Otherwise, delete the namespaces from the existing cluster. + if [ -n "${KIND_CLUSTER_NAME}" ]; then + infomsg "Deleting the KinD cluster" + ${KIND_EXE} delete cluster --name ${KIND_CLUSTER_NAME} + else + if ${CLIENT_EXE} get namespace ${OPERATOR_NAMESPACE} &> /dev/null; then + infomsg "Deleting the operator namespace used for the test" + ${CLIENT_EXE} delete namespace ${OPERATOR_NAMESPACE} + fi + if ${CLIENT_EXE} get namespace ${SERVER_NAMESPACE} &> /dev/null; then + infomsg "Deleting the server namespace used for the test" + ${CLIENT_EXE} delete namespace ${SERVER_NAMESPACE} + fi + fi +} + +abort_now() { + infomsg "[ERROR] $1" + restore_env + exit 1 +} + +helpmsg() { + cat < /dev/null; then + abort_now "The Kubernetes client executable is invalid: ${CLIENT_EXE}" +fi + +if ! which ${HELM_EXE} &> /dev/null; then + abort_now "The Helm executable is invalid: ${HELM_EXE}" +fi + +if [ ! -d "${GIT_LOCAL_DIR}" ]; then + abort_now "The local helm chart repo directory is invalid: ${GIT_LOCAL_DIR}" +fi + +# Make sure we are in the correct directory. There must be a "docs" directory which is where the helm charts are stored. +cd "${GIT_LOCAL_DIR}" +infomsg "Working in directory: $(pwd)" +if ! ls docs &> /dev/null; then + abort_now "You must run this script with a current working directory of the root directory of the Kiali helm charts repository." +fi + +# Determine the latest release branch that needs to be tested - we will prepend the git remote to the front of the branch name here +infomsg "Fetching latest content from git remote [${GIT_REMOTE_NAME}]" +git fetch "${GIT_REMOTE_NAME}" +if [ -z "${RELEASE_BRANCH}" ]; then + RELEASE_BRANCH="$(git branch -r --list "${GIT_REMOTE_NAME}/${RELEASE_BRANCH_PATTERN}" | sort | tail -n1 | tr -d ' ')" + if [ -z "${RELEASE_BRANCH}" ]; then + abort_now "Cannot find any branches that match [${GIT_REMOTE_NAME}/${RELEASE_BRANCH_PATTERN}] - there is nothing to test." + fi +else + RELEASE_BRANCH="${GIT_REMOTE_NAME}/${RELEASE_BRANCH}" +fi +infomsg "Will smoke test remote release branch [${RELEASE_BRANCH}]" + +# Determine what branch we are currently on so we can be nice and take the user back to it after we are done with the smoke test. +ORIGINAL_BRANCH="$(git rev-parse --abbrev-ref HEAD)" +if ! git checkout -b ${SMOKETEST_BRANCH} ${RELEASE_BRANCH}; then + abort_now "Failed to checkout the release branch. Make sure [${RELEASE_BRANCH}] is a valid remote branch name." +fi + +# Determine the version we are going to smoke test +OPERATOR_VERSION="$(ls -1 docs/kiali-operator-*.tgz | sort | tail -n1 | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+')" +SERVER_VERSION="$(ls -1 docs/kiali-server-*.tgz | sort | tail -n1 | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+')" + +if [ "${OPERATOR_VERSION}" != "${SERVER_VERSION}" ]; then + abort_now "The latest helm chart versions for operator [${OPERATOR_VERSION}] and server [${SERVER_VERSION}] do not match. Aborting the test." +fi + +# Make sure we have access to a running k8s cluster. If there is none, try to start KinD. +if ! ${CLIENT_EXE} get ns &> /dev/null; then + infomsg "There does not appear to be a Kubernetes cluster available. Attempting to start KinD..." + if ! which ${KIND_EXE} &> /dev/null; then + abort_now "The KinD executable is invalid: ${KIND_EXE}" + fi + KIND_CLUSTER_NAME="smoketest" + if ! ${KIND_EXE} create cluster --name ${KIND_CLUSTER_NAME}; then + abort_now "Failed to create a KinD cluster. Aborting smoke test." + fi +fi + +# SMOKE TESTING THE OPERATOR + +if ! ${HELM_EXE} install --create-namespace --namespace ${OPERATOR_NAMESPACE} kiali-operator docs/kiali-operator-${OPERATOR_VERSION}.tgz; then + abort_now "The Operator Helm Chart did not install successfully. The smoke test has FAILED!" +fi + +ACTUAL_OPERATOR_IMAGE="$(${CLIENT_EXE} get deployments -n ${OPERATOR_NAMESPACE} -l app.kubernetes.io/name=kiali-operator -o 'jsonpath={.items..spec.containers[0].image}{"\n"}')" +EXPECTED_OPERATOR_IMAGE="quay.io/kiali/kiali-operator:v${OPERATOR_VERSION}" +if [ "${ACTUAL_OPERATOR_IMAGE}" != "${EXPECTED_OPERATOR_IMAGE}" ]; then + abort_now "The actual operator image [${ACTUAL_OPERATOR_IMAGE}] is not the expected image [${EXPECTED_OPERATOR_IMAGE}]. The smoke test has FAILED!" +fi + +if ! ${CLIENT_EXE} wait deployment -l app.kubernetes.io/name=kiali-operator --for=condition=Available -n ${OPERATOR_NAMESPACE} --timeout=5m; then + abort_now "The operator deployment failed to become available. The smoke test has FAILED!" +fi +if ! ${CLIENT_EXE} wait pods -l app.kubernetes.io/name=kiali-operator --for=condition=Ready -n ${OPERATOR_NAMESPACE} --timeout=5m; then + abort_now "The operator pod failed to start. The smoke test has FAILED!" +fi + +if ! ${HELM_EXE} uninstall --namespace ${OPERATOR_NAMESPACE} kiali-operator; then + abort_now "The Operator Helm Chart was unable to perform an uninstall successfully. The smoke test has FAILED!" +fi + +# SMOKE TESTING THE SERVER + +if ! ${HELM_EXE} install --create-namespace --namespace ${SERVER_NAMESPACE} kiali-server docs/kiali-server-${SERVER_VERSION}.tgz; then + abort_now "The Server Helm Chart did not install successfully. The smoke test has FAILED!" +fi + +ACTUAL_SERVER_IMAGE="$(${CLIENT_EXE} get deployments -n ${SERVER_NAMESPACE} -l app.kubernetes.io/name=kiali -o 'jsonpath={.items..spec.containers[0].image}{"\n"}')" +EXPECTED_SERVER_IMAGE="quay.io/kiali/kiali:v${SERVER_VERSION}" +if [ "${ACTUAL_SERVER_IMAGE}" != "${EXPECTED_SERVER_IMAGE}" ]; then + abort_now "The actual server image [${ACTUAL_SERVER_IMAGE}] is not the expected image [${EXPECTED_SERVER_IMAGE}]. The smoke test has FAILED!" +fi + +if ! ${CLIENT_EXE} wait deployment -l app.kubernetes.io/name=kiali --for=condition=Available -n ${SERVER_NAMESPACE} --timeout=5m; then + abort_now "The server deployment failed to become available. The smoke test has FAILED!" +fi +if ! ${CLIENT_EXE} wait pods -l app.kubernetes.io/name=kiali --for=condition=Ready -n ${SERVER_NAMESPACE} --timeout=5m; then + abort_now "The server pod failed to start. The smoke test has FAILED!" +fi + +if ! ${HELM_EXE} uninstall --namespace ${SERVER_NAMESPACE} kiali-server; then + abort_now "The Server Helm Chart was unable to perform an uninstall successfully. The smoke test has FAILED!" +fi + +# SMOKE TESTING THAT THE OSSMC IMAGE IS ON QUAY.IO + +# Do not check if OSSMC image is on quay. The OSSMC image will not be on quay when this smoke test script is run. +# See https://github.com/kiali/kiali/issues/6865#issuecomment-2096469036 + +#OSSMC_VERSION="${SERVER_VERSION}" +#EXPECTED_OSSMC_IMAGE="quay.io/kiali/ossmconsole:v${OSSMC_VERSION}" +#infomsg "Checking that the OSSMC image is published on quay.io at: ${EXPECTED_OSSMC_IMAGE}" +#if ! docker pull ${EXPECTED_OSSMC_IMAGE} &>/dev/null ; then +# abort_now "The OSSMC image is not published on quay.io. This is missing: [${EXPECTED_OSSMC_IMAGE}]. The smoke test has FAILED!" +#fi + +# SMOKE TESTING IS COMPLETE + +infomsg "=========================" +infomsg "The smoke test has PASSED" +infomsg "=========================" + +restore_env diff --git a/helm-charts-2.4.0/kiali-operator/Chart.yaml b/helm-charts-2.4.0/kiali-operator/Chart.yaml new file mode 100644 index 0000000..e1a90ab --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/Chart.yaml @@ -0,0 +1,19 @@ +apiVersion: v2 +name: kiali-operator +description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. +version: 0.0.0 +appVersion: 0.0.0 +home: https://github.com/kiali/kiali-operator +maintainers: +- name: Kiali + email: kiali-users@googlegroups.com + url: https://kiali.io +keywords: +- istio +- kiali +- operator +sources: +- https://github.com/kiali/kiali +- https://github.com/kiali/kiali-operator +- https://github.com/kiali/helm-charts +icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg diff --git a/helm-charts-2.4.0/kiali-operator/crds/crds.yaml b/helm-charts-2.4.0/kiali-operator/crds/crds.yaml new file mode 100644 index 0000000..8e98412 --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/crds/crds.yaml @@ -0,0 +1,24 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: kialis.kiali.io +spec: + group: kiali.io + names: + kind: Kiali + listKind: KialiList + plural: kialis + singular: kiali + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + type: object + x-kubernetes-preserve-unknown-fields: true +... diff --git a/helm-charts-2.4.0/kiali-operator/templates/NOTES.txt b/helm-charts-2.4.0/kiali-operator/templates/NOTES.txt new file mode 100644 index 0000000..4f22052 --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/NOTES.txt @@ -0,0 +1,30 @@ +Welcome to Kiali! For more details on Kiali, see: https://kiali.io + +The Kiali Operator [{{ .Chart.AppVersion }}] has been installed in namespace [{{ .Release.Namespace }}]. It will be ready soon. + +{{- if .Values.cr.create }} + {{- if or (and (not .Values.watchNamespace) (not .Values.cr.namespace)) (and (.Values.watchNamespace) (eq .Values.watchNamespace .Release.Namespace)) (and (.Values.cr.namespace) (eq .Values.cr.namespace .Release.Namespace)) }} +You have elected to install a Kiali CR in the same namespace as the operator [{{ .Release.Namespace }}]. You should be able to access Kiali soon. + +================================ +PLEASE READ THIS WARNING NOTICE: +Because the Kiali CR lives in the same namespace as the operator, DO NOT uninstall the operator or delete the operator namespace without first removing the Kiali CR. If you do not follow this advice then the Kiali Operator deletion will hang indefinitely until you remove the finalizer from the Kiali CR, and then you may find your Kubernetes environment still has Kiali Server remnants left behind. +================================ + {{- else if .Values.watchNamespace }} +You have elected to install a Kiali CR in the operator watch namespace [{{ .Values.watchNamespace }}]. You should be able to access Kiali soon. + {{- else if .Values.cr.namespace }} +You have elected to install a Kiali CR in the namespace [{{ .Values.cr.namespace }}]. You should be able to access Kiali soon. + {{- else }} +You have elected to install a Kiali CR. You should be able to access Kiali soon. + {{- end }} +{{- else }} + {{- if (not .Values.watchNamespace) }} +You have elected not to install a Kiali CR. You must first install a Kiali CR before you can access Kiali. The operator is watching all namespaces, so you can create the Kiali CR anywhere. + {{- else }} +You have elected not to install a Kiali CR. You must first install a Kiali CR in the operator watch namespace [{{ .Values.watchNamespace }}] before you can access Kiali. + {{- end }} +{{- end }} + +If you ever want to uninstall the Kiali Operator, remember to delete the Kiali CR first before uninstalling the operator to give the operator a chance to uninstall and remove all the Kiali Server resources. + +(Helm: Chart=[{{ .Chart.Name }}], Release=[{{ .Release.Name }}], Version=[{{ .Chart.Version }}]) diff --git a/helm-charts-2.4.0/kiali-operator/templates/_helpers.tpl b/helm-charts-2.4.0/kiali-operator/templates/_helpers.tpl new file mode 100644 index 0000000..214059a --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/_helpers.tpl @@ -0,0 +1,55 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "kiali-operator.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "kiali-operator.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "kiali-operator.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "kiali-operator.labels" -}} +helm.sh/chart: {{ include "kiali-operator.chart" . }} +app: {{ include "kiali-operator.name" . }} +{{ include "kiali-operator.selectorLabels" . }} +{{- if .Chart.AppVersion }} +version: {{ .Chart.AppVersion | quote }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/part-of: "kiali-operator" +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "kiali-operator.selectorLabels" -}} +app.kubernetes.io/name: {{ include "kiali-operator.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + diff --git a/helm-charts-2.4.0/kiali-operator/templates/clusterrole.yaml b/helm-charts-2.4.0/kiali-operator/templates/clusterrole.yaml new file mode 100644 index 0000000..3e648e2 --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/clusterrole.yaml @@ -0,0 +1,311 @@ +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: {{ include "kiali-operator.fullname" . }} + labels: + {{- include "kiali-operator.labels" . | nindent 4 }} +rules: +- apiGroups: [""] + resources: + - configmaps + - endpoints + - pods + - serviceaccounts + - services + - services/finalizers + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: [""] + resources: + - namespaces + verbs: + - get + - list + - patch +- apiGroups: [""] + resources: + - secrets + verbs: + - create + - list + - watch +- apiGroups: [""] + resourceNames: + - kiali-signing-key + resources: + - secrets + verbs: + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["apps"] + resources: + - deployments + - replicasets + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["autoscaling"] + resources: + - horizontalpodautoscalers + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["monitoring.coreos.com"] + resources: + - servicemonitors + verbs: + - create + - get +- apiGroups: ["apps"] + resourceNames: + - kiali-operator + resources: + - deployments/finalizers + verbs: + - update +- apiGroups: ["kiali.io"] + resources: + - '*' + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["authorization.k8s.io"] + resources: + - selfsubjectaccessreviews + verbs: + - list +- apiGroups: ["rbac.authorization.k8s.io"] + resources: + {{- if or (and (.Values.cr.create) (.Values.cr.spec.deployment.cluster_wide_access)) (.Values.clusterRoleCreator) }} + - clusterrolebindings + - clusterroles + {{- end }} + - rolebindings + - roles + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["apiextensions.k8s.io"] + resources: + - customresourcedefinitions + verbs: + - get + - list + - watch +- apiGroups: ["extensions", "networking.k8s.io"] + resources: + - ingresses + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["route.openshift.io"] + resources: + - routes + - routes/custom-host + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["oauth.openshift.io"] + resources: + - oauthclients + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["config.openshift.io"] + resources: + - clusteroperators + verbs: + - list + - watch +- apiGroups: ["config.openshift.io"] + resourceNames: + - kube-apiserver + resources: + - clusteroperators + verbs: + - get +- apiGroups: ["console.openshift.io"] + resources: + - consolelinks + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +{{- if .Capabilities.APIVersions.Has "route.openshift.io/v1" }} +# The permissions below are for OSSMC operator capabilities +- apiGroups: ["console.openshift.io"] + resources: + - consoleplugins + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: ["operator.openshift.io"] + resources: + - consoles + verbs: + - get + - list + - patch + - update + - watch +{{- end }} +# The permissions below are for Kiali itself; operator needs these so it can escalate when creating Kiali's roles +- apiGroups: [""] + resources: + - configmaps + - endpoints + - pods/log + verbs: + - get + - list + - watch +- apiGroups: [""] + resources: + - namespaces + - pods + - replicationcontrollers + - services + verbs: + - get + - list + - watch + {{- if eq .Values.onlyViewOnlyMode false }} + - patch + {{- end }} +- apiGroups: [""] + resources: + - pods/portforward + verbs: + - create + - post +- apiGroups: ["extensions", "apps"] + resources: + - daemonsets + - deployments + - replicasets + - statefulsets + verbs: + - get + - list + - watch + {{- if eq .Values.onlyViewOnlyMode false }} + - patch + {{- end }} +- apiGroups: ["batch"] + resources: + - cronjobs + - jobs + verbs: + - get + - list + - watch + {{- if eq .Values.onlyViewOnlyMode false }} + - patch + {{- end }} +- apiGroups: + - config.istio.io + - networking.istio.io + - authentication.istio.io + - rbac.istio.io + - security.istio.io + - extensions.istio.io + - telemetry.istio.io + - gateway.networking.k8s.io + resources: ["*"] + verbs: + - get + - list + - watch + {{- if eq .Values.onlyViewOnlyMode false }} + - create + - delete + - patch + {{- end }} +- apiGroups: ["apps.openshift.io"] + resources: + - deploymentconfigs + verbs: + - get + - list + - watch + {{- if eq .Values.onlyViewOnlyMode false }} + - patch + {{- end }} +- apiGroups: ["project.openshift.io"] + resources: + - projects + verbs: + - get +- apiGroups: ["route.openshift.io"] + resources: + - routes + verbs: + - get +- apiGroups: ["authentication.k8s.io"] + resources: + - tokenreviews + verbs: + - create +- apiGroups: ["admissionregistration.k8s.io"] + resources: + - mutatingwebhookconfigurations + verbs: + - get + - list + - watch +... diff --git a/helm-charts-2.4.0/kiali-operator/templates/clusterrolebinding.yaml b/helm-charts-2.4.0/kiali-operator/templates/clusterrolebinding.yaml new file mode 100644 index 0000000..747939b --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/clusterrolebinding.yaml @@ -0,0 +1,16 @@ +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: {{ include "kiali-operator.fullname" . }} + labels: + {{- include "kiali-operator.labels" . | nindent 4 }} +subjects: +- kind: ServiceAccount + name: {{ include "kiali-operator.fullname" . }} + namespace: "{{ .Release.Namespace }}" +roleRef: + kind: ClusterRole + name: {{ include "kiali-operator.fullname" . }} + apiGroup: rbac.authorization.k8s.io +... diff --git a/helm-charts-2.4.0/kiali-operator/templates/deployment.yaml b/helm-charts-2.4.0/kiali-operator/templates/deployment.yaml new file mode 100644 index 0000000..bd99ece --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/deployment.yaml @@ -0,0 +1,156 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "kiali-operator.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-operator.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + {{- include "kiali-operator.selectorLabels" . | nindent 6 }} + template: + metadata: + name: {{ include "kiali-operator.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + # required for the operator SDK metric service selector + name: {{ include "kiali-operator.fullname" . }} + {{- include "kiali-operator.labels" . | nindent 8 }} + {{- if .Values.podLabels }} + {{- toYaml .Values.podLabels | nindent 8 }} + {{- end }} + annotations: + prometheus.io/scrape: {{ .Values.metrics.enabled | quote }} + prometheus.io/path: /metrics + prometheus.io/port: "8080" + {{- if .Values.podAnnotations }} + {{- toYaml .Values.podAnnotations | nindent 8 }} + {{- end }} + spec: + serviceAccountName: {{ include "kiali-operator.fullname" . }} + {{- if .Values.priorityClassName }} + priorityClassName: {{ .Values.priorityClassName | quote }} + {{- end }} + {{- if .Values.tolerations }} + tolerations: + {{- toYaml .Values.tolerations | nindent 8 }} + {{- end }} + {{- if .Values.nodeSelector }} + nodeSelector: + {{- toYaml .Values.nodeSelector | nindent 8 }} + {{- end }} + containers: + - name: operator + image: "{{ .Values.image.repo }}{{ if .Values.image.digest }}@{{ .Values.image.digest }}{{ end }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy | default "Always" }} + args: + - "--zap-log-level=info" + - "--leader-election-id={{ include "kiali-operator.fullname" . }}" + - "--watches-file=./$(WATCHES_FILE)" + - "--health-probe-bind-address=:6789" + - "--metrics-bind-address=:8080" + terminationMessagePolicy: FallbackToLogsOnError + readinessProbe: + httpGet: + path: /readyz + port: 6789 + periodSeconds: 30 + livenessProbe: + httpGet: + path: /healthz + port: 6789 + periodSeconds: 30 + startupProbe: + httpGet: + path: /healthz + port: 6789 + initialDelaySeconds: 30 + periodSeconds: 10 + failureThreshold: 6 + securityContext: + {{- if .Values.securityContext }} + {{- toYaml .Values.securityContext | nindent 10 }} + {{- else }} + allowPrivilegeEscalation: false + privileged: false + runAsNonRoot: true + readOnlyRootFilesystem: true + capabilities: + drop: + - ALL + {{- end }} + volumeMounts: + - mountPath: /tmp + name: tmp + env: + - name: WATCH_NAMESPACE + value: {{ .Values.watchNamespace | default "\"\"" }} + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: POD_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: ALLOW_AD_HOC_KIALI_NAMESPACE + value: {{ .Values.allowAdHocKialiNamespace | quote }} + - name: ALLOW_AD_HOC_KIALI_IMAGE + value: {{ .Values.allowAdHocKialiImage | quote }} +{{- if .Capabilities.APIVersions.Has "route.openshift.io/v1" }} + - name: ALLOW_AD_HOC_OSSMCONSOLE_IMAGE + value: {{ .Values.allowAdHocOSSMConsoleImage | quote }} +{{- end }} + - name: ALLOW_SECURITY_CONTEXT_OVERRIDE + value: {{ .Values.allowSecurityContextOverride | quote }} + - name: ALLOW_ALL_ACCESSIBLE_NAMESPACES + value: {{ or (and (.Values.cr.create) (.Values.cr.spec.deployment.cluster_wide_access)) (.Values.allowAllAccessibleNamespaces) | quote }} + - name: PROFILE_TASKS_TASK_OUTPUT_LIMIT + value: "100" + - name: ANSIBLE_DEBUG_LOGS + value: {{ .Values.debug.enabled | quote }} + - name: ANSIBLE_VERBOSITY_KIALI_KIALI_IO + value: {{ .Values.debug.verbosity | quote }} +{{- if .Capabilities.APIVersions.Has "route.openshift.io/v1" }} + - name: ANSIBLE_VERBOSITY_OSSMCONSOLE_KIALI_IO + value: {{ .Values.debug.verbosity | quote }} +{{- end }} + - name: ANSIBLE_CONFIG + {{- if .Values.debug.enableProfiler }} + value: "/opt/ansible/ansible-profiler.cfg" + {{- else }} + value: "/etc/ansible/ansible.cfg" + {{- end }} + - name: ANSIBLE_LOCAL_TEMP + value: "/tmp/ansible/tmp" + - name: ANSIBLE_REMOTE_TEMP + value: "/tmp/ansible/tmp" + - name: WATCHES_FILE +{{- if .Values.watchesFile }} + value: "{{ .Values.watchesFile }}" +{{- else }} +{{- if .Capabilities.APIVersions.Has "route.openshift.io/v1" }} + value: "watches-os.yaml" +{{- else }} + value: "watches-k8s.yaml" +{{- end }} +{{- end }} + {{- if .Values.env }} + {{- toYaml .Values.env | nindent 8 }} + {{- end }} + ports: + - name: http-metrics + containerPort: 8080 + {{- if .Values.resources }} + resources: + {{- toYaml .Values.resources | nindent 10 }} + {{- end }} + volumes: + - name: tmp + emptyDir: {} + affinity: + {{- toYaml .Values.affinity | nindent 8 }} +... diff --git a/helm-charts-2.4.0/kiali-operator/templates/kiali-cr.yaml b/helm-charts-2.4.0/kiali-operator/templates/kiali-cr.yaml new file mode 100644 index 0000000..ef77353 --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/kiali-cr.yaml @@ -0,0 +1,22 @@ +{{ if .Values.cr.create }} +--- +apiVersion: kiali.io/v1alpha1 +kind: Kiali +metadata: + {{- if .Values.watchNamespace }} + namespace: "{{ .Values.watchNamespace }}" + {{- else if .Values.cr.namespace }} + namespace: "{{ .Values.cr.namespace }}" + {{- end }} + name: {{ .Values.cr.name }} + labels: + {{- include "kiali-operator.labels" . | nindent 4 }} + annotations: + ansible.sdk.operatorframework.io/verbosity: {{ .Values.debug.verbosity | quote }} + {{- if .Values.cr.annotations }} + {{- toYaml .Values.cr.annotations | nindent 4 }} + {{- end }} +spec: + {{- toYaml .Values.cr.spec | nindent 2 }} +... +{{ end }} diff --git a/helm-charts-2.4.0/kiali-operator/templates/ossmconsole-crd.yaml b/helm-charts-2.4.0/kiali-operator/templates/ossmconsole-crd.yaml new file mode 100644 index 0000000..85a4a07 --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/ossmconsole-crd.yaml @@ -0,0 +1,34 @@ +# The operator will watch resources of this kind and install OSSMC when one is found. +# This CRD needs to be templated because we do not want it installed on non-OpenShift clusters. +# However, the crds/ directory is not templated by Helm. See the Helm documentation on this here: +# https://helm.sh/docs/chart_best_practices/custom_resource_definitions/#method-1-let-helm-do-it-for-you +# Therefore, this CRD declaration is in templates/. The operator helm chart does not create resources +# of this kind, so this should be OK. Just realize if you uninstall the operator, this CRD will also +# be uninstalled (and thus any existing OSSMC CR will also be purged). + +{{- if .Capabilities.APIVersions.Has "route.openshift.io/v1" }} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: ossmconsoles.kiali.io +spec: + group: kiali.io + names: + kind: OSSMConsole + listKind: OSSMConsoleList + plural: ossmconsoles + singular: ossmconsole + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + type: object + x-kubernetes-preserve-unknown-fields: true +... +{{- end }} diff --git a/helm-charts-2.4.0/kiali-operator/templates/serviceaccount.yaml b/helm-charts-2.4.0/kiali-operator/templates/serviceaccount.yaml new file mode 100644 index 0000000..64e8238 --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/templates/serviceaccount.yaml @@ -0,0 +1,15 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "kiali-operator.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-operator.labels" . | nindent 4 }} +{{- if .Values.image.pullSecrets }} +imagePullSecrets: +{{- range .Values.image.pullSecrets }} +- name: {{ . }} +{{- end }} +{{- end }} +... diff --git a/helm-charts-2.4.0/kiali-operator/values.yaml b/helm-charts-2.4.0/kiali-operator/values.yaml new file mode 100644 index 0000000..c24a73c --- /dev/null +++ b/helm-charts-2.4.0/kiali-operator/values.yaml @@ -0,0 +1,105 @@ +nameOverride: "" +fullnameOverride: "" + +image: # see: https://quay.io/repository/kiali/kiali-operator?tab=tags + repo: ${HELM_IMAGE_REPO} # quay.io/kiali/kiali-operator + tag: ${HELM_IMAGE_TAG} # version string like v1.39.0 or a digest hash + digest: "" # use "sha256" if tag is a sha256 hash (do NOT prefix this value with a "@") + pullPolicy: Always + pullSecrets: [] + +# Deployment options for the operator pod. +nodeSelector: {} +podAnnotations: {} +podLabels: {} +env: [] +tolerations: [] +resources: + requests: + cpu: "10m" + memory: "64Mi" +affinity: {} +replicaCount: 1 +priorityClassName: "" +securityContext: {} + +# metrics.enabled: set to true if you want Prometheus to collect metrics from the operator +metrics: + enabled: true + +# debug.enabled: when true the full ansible logs are dumped after each reconciliation run +# debug.verbosity: defines the amount of details the operator will log (higher numbers are more noisy) +# debug.enableProfiler: when true (regardless of debug.enabled), timings for the most expensive tasks will be logged after each reconciliation loop +debug: + enabled: true + verbosity: "1" + enableProfiler: false + +# Defines where the operator will look for Kial CR resources. "" means "all namespaces". +watchNamespace: "" + +# Set to true if you want the operator to be able to create cluster roles. This is necessary +# if you want to support Kiali CRs with spec.deployment.cluster_wide_access=true. +# Setting this to "true" requires allowAllAccessibleNamespaces to be "true" also. +# Note that this will be overriden to "true" if cr.create is true and cr.spec.deployment.cluster_wide_access=true. +clusterRoleCreator: true + +# Set to true if you want to allow the operator to only be able to install Kiali in view-only-mode. +# The purpose for this setting is to allow you to restrict the permissions given to the operator itself. +onlyViewOnlyMode: false + +# allowAdHocKialiNamespace tells the operator to allow a user to be able to install a Kiali CR in one namespace but +# be able to install Kiali in another namespace. In other words, it will allow the Kiali CR spec.deployment.namespace +# to be something other than the namespace where the CR is installed. You may want to disable this if you are +# running in a multi-tenant scenario in which you only want a user to be able to install Kiali in the same namespace +# where the user has permissions to install a Kiali CR. +allowAdHocKialiNamespace: true + +# allowAdHocKialiImage tells the operator to allow a user to be able to install a custom Kiali image as opposed +# to the image the operator will install by default. In other words, it will allow the +# Kiali CR spec.deployment.image_name and spec.deployment.image_version to be configured by the user. +# You may want to disable this if you do not want users to install their own Kiali images. +allowAdHocKialiImage: false + +# allowAdHocOSSMConsoleImage tells the operator to allow a user to be able to install a custom OSSMC image as opposed +# to the image the operator will install by default. In other words, it will allow the +# OSSMConsole CR spec.deployment.imageName and spec.deployment.imageVersion to be configured by the user. +# You may want to disable this if you do not want users to install their own OSSMC images. +# This is only applicable when running on OpenShift. +allowAdHocOSSMConsoleImage: false + +# allowSecurityContextOverride tells the operator to allow a user to be able to fully override the Kiali +# container securityContext. If this is false, certain securityContext settings must exist on the Kiali +# container and any attempt to override them will be ignored. +allowSecurityContextOverride: false + +# allowAllAccessibleNamespaces tells the operator to allow a user to be able to configure Kiali +# to access all namespaces in the cluster via spec.deployment.cluster_wide_access=true. +# If this is false, the user must specify an explicit set of namespaces in the Kiali CR via spec.deployment.discovery_selectors. +# Setting this to "true" requires clusterRoleCreator to be "true" also. +# Note that this will be overriden to "true" if cr.create is true and cr.spec.deployment.cluster_wide_access=true. +allowAllAccessibleNamespaces: true + +# watchesFile: If specified, this determines what watches file will be used to configure the operator. There are four different +# files that can be selected: (a) `watches-os.yaml`, (b) `watches-os-ns.yaml`, (c) `watches-k8s.yaml` or (d) `watches-k8s-ns.yaml`. +# The first two are for OpenShift only, the last two are for non-OpenShift Kubernetes clusters. The two with "-ns" in their name +# enable the operator to automatically update the Kiali Server with access to new namespaces as those namespaces are created in +# the cluster. This namespace watching feature provides some advanced capabilities but is never required. It is also not +# the default behavior and is not necessary if your Kiali CRs will have `spec.deployment.cluster_wide_access` set to `true`. +watchesFile: "" + +# For what a Kiali CR spec can look like, see: https://kiali.io/docs/configuration/kialis.kiali.io/ +cr: + create: false + name: kiali + # If you elect to create a Kiali CR (--set cr.create=true) + # and the operator is watching all namespaces (--set watchNamespace="") + # then this is the namespace where the CR will be created (the default will be the operator namespace). + namespace: "" + + # Annotations to place in the Kiali CR metadata. + annotations: {} + + spec: + deployment: + cluster_wide_access: true \ No newline at end of file diff --git a/helm-charts-2.4.0/kiali-server/Chart.yaml b/helm-charts-2.4.0/kiali-server/Chart.yaml new file mode 100644 index 0000000..bc127c1 --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/Chart.yaml @@ -0,0 +1,18 @@ +apiVersion: v2 +name: kiali-server +description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. +version: 0.0.0 +appVersion: 0.0.0 +home: https://github.com/kiali/kiali +maintainers: +- name: Kiali + email: kiali-users@googlegroups.com + url: https://kiali.io +keywords: +- istio +- kiali +sources: +- https://github.com/kiali/kiali +- https://github.com/kiali/kiali-operator +- https://github.com/kiali/helm-charts +icon: https://raw.githubusercontent.com/kiali/kiali.io/current/assets/icons/logo.svg diff --git a/helm-charts-2.4.0/kiali-server/templates/NOTES.txt b/helm-charts-2.4.0/kiali-server/templates/NOTES.txt new file mode 100644 index 0000000..fac4e8d --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/NOTES.txt @@ -0,0 +1,20 @@ +Welcome to Kiali! For more details on Kiali, see: https://kiali.io + +The Kiali Server [{{ .Chart.AppVersion }}] has been installed in namespace [{{ .Release.Namespace }}]. It will be ready soon. + +{{- if not .Values.deployment.cluster_wide_access }} +=============== +!!! WARNING !!! +=============== +This Kiali Server Helm Chart does NOT support "deployment.cluster_wide_access" set to "false"! + +This feature, as well as others, is only available when using the Kiali Operator to install +the Kiali Server. It is for this reason this Kiali Server Helm Chart, while provided for +convenience, is not the recommended installation mechanism for installing the Kiali Server. +{{- end }} + +When installing with "deployment.cluster_wide_access=false" using this Kiali Server Helm Chart, +it is your responsibility to manually create the proper Roles and RoleBindings for the Kiali Server +to have the correct permissions to access the service mesh namespaces. + +(Helm: Chart=[{{ .Chart.Name }}], Release=[{{ .Release.Name }}], Version=[{{ .Chart.Version }}]) diff --git a/helm-charts-2.4.0/kiali-server/templates/_helpers.tpl b/helm-charts-2.4.0/kiali-server/templates/_helpers.tpl new file mode 100644 index 0000000..36b297e --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/_helpers.tpl @@ -0,0 +1,192 @@ +{{/* vim: set filetype=mustache: */}} + +{{/* +Create a default fully qualified instance name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +To simulate the way the operator works, use deployment.instance_name. +*/}} +{{- define "kiali-server.fullname" -}} +{{- .Values.deployment.instance_name | trunc 63 }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "kiali-server.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Determine if on OpenShift (when debugging the chart for OpenShift use-cases, set "simulateOpenShift") +*/}} +{{- define "kiali-server.isOpenShift" -}} +{{- .Values.isOpenShift | default (.Capabilities.APIVersions.Has "operator.openshift.io/v1") -}} +{{- end }} + +{{/* +Identifies the log_level. +*/}} +{{- define "kiali-server.logLevel" -}} +{{- .Values.deployment.logger.log_level -}} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "kiali-server.labels" -}} +helm.sh/chart: {{ include "kiali-server.chart" . }} +app: kiali +{{ include "kiali-server.selectorLabels" . }} +version: {{ .Values.deployment.version_label | default .Chart.AppVersion | quote }} +app.kubernetes.io/version: {{ .Values.deployment.version_label | default .Chart.AppVersion | quote }} +app.kubernetes.io/part-of: "kiali" +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "kiali-server.selectorLabels" -}} +app.kubernetes.io/name: kiali +app.kubernetes.io/instance: {{ include "kiali-server.fullname" . }} +{{- end }} + +{{/* +Determine the default login token signing key. +*/}} +{{- define "kiali-server.login_token.signing_key" -}} +{{- if .Values.login_token.signing_key }} + {{- .Values.login_token.signing_key }} +{{- else }} + {{- randAlphaNum 32 }} +{{- end }} +{{- end }} + +{{/* +Determine the default web root. +*/}} +{{- define "kiali-server.server.web_root" -}} +{{- if .Values.server.web_root }} + {{- if (eq .Values.server.web_root "/") }} + {{- .Values.server.web_root }} + {{- else }} + {{- .Values.server.web_root | trimSuffix "/" }} + {{- end }} +{{- else }} + {{- if eq "true" (include "kiali-server.isOpenShift" .) }} + {{- "/" }} + {{- else }} + {{- "/kiali" }} + {{- end }} +{{- end }} +{{- end }} + +{{/* +Determine the default identity cert file. There is no default if on k8s; only on OpenShift. +*/}} +{{- define "kiali-server.identity.cert_file" -}} +{{- if hasKey .Values.identity "cert_file" }} + {{- .Values.identity.cert_file }} +{{- else }} + {{- if eq "true" (include "kiali-server.isOpenShift" .) }} + {{- "/kiali-cert/tls.crt" }} + {{- else }} + {{- "" }} + {{- end }} +{{- end }} +{{- end }} + +{{/* +Determine the default identity private key file. There is no default if on k8s; only on OpenShift. +*/}} +{{- define "kiali-server.identity.private_key_file" -}} +{{- if hasKey .Values.identity "private_key_file" }} + {{- .Values.identity.private_key_file }} +{{- else }} + {{- if eq "true" (include "kiali-server.isOpenShift" .) }} + {{- "/kiali-cert/tls.key" }} + {{- else }} + {{- "" }} + {{- end }} +{{- end }} +{{- end }} + +{{/* +Determine the default deployment.ingress.enabled. Disable it on k8s; enable it on OpenShift. +*/}} +{{- define "kiali-server.deployment.ingress.enabled" -}} +{{- if hasKey .Values.deployment.ingress "enabled" }} + {{- .Values.deployment.ingress.enabled }} +{{- else }} + {{- if eq "true" (include "kiali-server.isOpenShift" .) }} + {{- true }} + {{- else }} + {{- false }} + {{- end }} +{{- end }} +{{- end }} + +{{/* +Determine the istio namespace - default is where Kiali is installed. +*/}} +{{- define "kiali-server.istio_namespace" -}} +{{- if .Values.istio_namespace }} + {{- .Values.istio_namespace }} +{{- else }} + {{- .Release.Namespace }} +{{- end }} +{{- end }} + +{{/* +Determine the auth strategy to use - default is "token" on Kubernetes and "openshift" on OpenShift. +*/}} +{{- define "kiali-server.auth.strategy" -}} +{{- if .Values.auth.strategy }} + {{- if (and ((and (eq .Values.auth.strategy "openshift") (not .Values.kiali_route_url))) (not .Values.auth.openshift.redirect_uris)) }} + {{- fail "You did not define what the Kiali Route URL will be (--set kiali_route_url=...). Without this set, the openshift auth strategy will not work. Either (a) set that, (b) explicitly define redirect URIs via --set auth.openshift.redirect_uris, or (c) use a different auth strategy via the --set auth.strategy=... option." }} + {{- end }} + {{- .Values.auth.strategy }} +{{- else }} + {{- if eq "true" (include "kiali-server.isOpenShift" .) }} + {{- if (and (not .Values.kiali_route_url) (not .Values.auth.openshift.redirect_uris)) }} + {{- fail "You did not define what the Kiali Route URL will be (--set kiali_route_url=...). Without this set, the openshift auth strategy will not work. Either (a) set that, (b) explicitly define redirect URIs via --set auth.openshift.redirect_uris, or (c) use a different auth strategy via the --set auth.strategy=... option." }} + {{- end }} + {{- "openshift" }} + {{- else }} + {{- "token" }} + {{- end }} +{{- end }} +{{- end }} + +{{/* +Determine the root namespace - default is where Kiali is installed. +*/}} +{{- define "kiali-server.external_services.istio.root_namespace" -}} +{{- if .Values.external_services.istio.root_namespace }} + {{- .Values.external_services.istio.root_namespace }} +{{- else }} + {{- .Release.Namespace }} +{{- end }} +{{- end }} + +{{/* +Autodetect remote cluster secrets if enabled - looks for secrets in the same namespace where Kiali is installed. +Returns a JSON dict whose keys are the cluster names and values are the cluster secret data. +*/}} +{{- define "kiali-server.remote-cluster-secrets" -}} +{{- $theDict := dict }} +{{- if .Values.clustering.autodetect_secrets.enabled }} + {{- $secretLabelToLookFor := (regexSplit "=" .Values.clustering.autodetect_secrets.label 2) }} + {{- $secretLabelNameToLookFor := first $secretLabelToLookFor }} + {{- $secretLabelValueToLookFor := last $secretLabelToLookFor }} + {{- range $i, $secret := (lookup "v1" "Secret" .Release.Namespace "").items }} + {{- if (and (and (hasKey $secret.metadata "labels") (hasKey $secret.metadata.labels $secretLabelNameToLookFor)) (eq (get $secret.metadata.labels $secretLabelNameToLookFor) ($secretLabelValueToLookFor))) }} + {{- $clusterName := $secret.metadata.name }} + {{- if (and (hasKey $secret.metadata "annotations") (hasKey $secret.metadata.annotations "kiali.io/cluster")) }} + {{- $clusterName = get $secret.metadata.annotations "kiali.io/cluster" }} + {{- end }} + {{- $theDict = set $theDict $clusterName $secret.metadata.name }} + {{- end }} + {{- end }} +{{- end }} +{{- $theDict | toJson }} +{{- end }} diff --git a/helm-charts-2.4.0/kiali-server/templates/cabundle.yaml b/helm-charts-2.4.0/kiali-server/templates/cabundle.yaml new file mode 100644 index 0000000..e0bc1f2 --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/cabundle.yaml @@ -0,0 +1,15 @@ +{{- if not .Values.deployment.remote_cluster_resources_only }} +{{- if eq "true" (include "kiali-server.isOpenShift" .) }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "kiali-server.fullname" . }}-cabundle + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-server.labels" . | nindent 4 }} + annotations: + service.beta.openshift.io/inject-cabundle: "true" +... +{{- end }} +{{- end }} \ No newline at end of file diff --git a/helm-charts-2.4.0/kiali-server/templates/configmap.yaml b/helm-charts-2.4.0/kiali-server/templates/configmap.yaml new file mode 100644 index 0000000..45b571e --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/configmap.yaml @@ -0,0 +1,30 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-server.labels" . | nindent 4 }} + {{- if .Values.deployment.configmap_annotations }} + annotations: + {{- toYaml .Values.deployment.configmap_annotations | nindent 4 }} + {{- end }} +data: + config.yaml: | + {{- /* Most of .Values is simply the ConfigMap - strip out the keys that are not part of the ConfigMap */}} + {{- $cm := omit .Values "kiali_route_url" }} + {{- /* The helm chart defines namespace for us, but pass it to the ConfigMap in case the server needs it */}} + {{- $_ := set $cm.deployment "namespace" .Release.Namespace }} + {{- /* Some values of the ConfigMap are generated, but might not be identical, from .Values */}} + {{- $_ := set $cm "istio_namespace" (include "kiali-server.istio_namespace" .) }} + {{- $_ := set $cm.auth "strategy" (include "kiali-server.auth.strategy" .) }} + {{- $_ := set $cm.auth.openshift "client_id_prefix" (include "kiali-server.fullname" .) }} + {{- $_ := set $cm.deployment "instance_name" (include "kiali-server.fullname" .) }} + {{- $_ := set $cm.identity "cert_file" (include "kiali-server.identity.cert_file" .) }} + {{- $_ := set $cm.identity "private_key_file" (include "kiali-server.identity.private_key_file" .) }} + {{- $_ := set $cm.login_token "signing_key" (include "kiali-server.login_token.signing_key" .) }} + {{- $_ := set $cm.external_services.istio "root_namespace" (include "kiali-server.external_services.istio.root_namespace" .) }} + {{- $_ := set $cm.server "web_root" (include "kiali-server.server.web_root" .) }} + {{- toYaml $cm | nindent 4 }} +... diff --git a/helm-charts-2.4.0/kiali-server/templates/deployment.yaml b/helm-charts-2.4.0/kiali-server/templates/deployment.yaml new file mode 100644 index 0000000..e02e75f --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/deployment.yaml @@ -0,0 +1,243 @@ +{{- if not .Values.deployment.remote_cluster_resources_only }} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-server.labels" . | nindent 4 }} +spec: +{{- if not .Values.deployment.hpa.spec }} + replicas: {{ .Values.deployment.replicas }} +{{- end }} + selector: + matchLabels: + {{- include "kiali-server.selectorLabels" . | nindent 6 }} + strategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 1 + type: RollingUpdate + template: + metadata: + name: {{ include "kiali-server.fullname" . }} + labels: + {{- include "kiali-server.labels" . | nindent 8 }} + {{- if .Values.deployment.pod_labels }} + {{- toYaml .Values.deployment.pod_labels | nindent 8 }} + {{- end }} + annotations: + checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }} + {{- if .Values.server.observability.metrics.enabled }} + prometheus.io/scrape: "true" + prometheus.io/port: {{ .Values.server.observability.metrics.port | quote }} + {{- else }} + prometheus.io/scrape: "false" + prometheus.io/port: "" + {{- end }} + kiali.io/dashboards: go,kiali + {{- if .Values.deployment.pod_annotations }} + {{- toYaml .Values.deployment.pod_annotations | nindent 8 }} + {{- end }} + spec: + serviceAccountName: {{ include "kiali-server.fullname" . }} + {{- if .Values.deployment.priority_class_name }} + priorityClassName: {{ .Values.deployment.priority_class_name | quote }} + {{- end }} + {{- if .Values.deployment.image_pull_secrets }} + imagePullSecrets: + {{- range .Values.deployment.image_pull_secrets }} + - name: {{ . }} + {{- end }} + {{- end }} + {{- if .Values.deployment.host_aliases }} + hostAliases: + {{- toYaml .Values.deployment.host_aliases | nindent 6 }} + {{- end }} + {{- if .Values.deployment.dns }} + {{- if .Values.deployment.dns.policy }} + dnsPolicy: "{{ .Values.deployment.dns.policy }}" + {{- end }} + {{- if .Values.deployment.dns.config }} + dnsConfig: + {{- toYaml .Values.deployment.dns.config | nindent 8 }} + {{- end }} + {{- end }} + containers: + - image: "{{ .Values.deployment.image_name }}{{ if .Values.deployment.image_digest }}@{{ .Values.deployment.image_digest }}{{ end }}:{{ .Values.deployment.image_version }}" + imagePullPolicy: {{ .Values.deployment.image_pull_policy | default "Always" }} + name: {{ include "kiali-server.fullname" . }} + command: + - "/opt/kiali/kiali" + - "-config" + - "/kiali-configuration/config.yaml" + terminationMessagePolicy: FallbackToLogsOnError + securityContext: + {{- if .Values.deployment.security_context}} + {{- toYaml .Values.deployment.security_context | nindent 10 }} + {{- else }} + allowPrivilegeEscalation: false + privileged: false + readOnlyRootFilesystem: true + runAsNonRoot: true + capabilities: + drop: + - ALL + {{- end }} + ports: + - name: api-port + containerPort: {{ .Values.server.port | default 20001 }} + {{- if .Values.server.observability.metrics.enabled }} + - name: http-metrics + containerPort: {{ .Values.server.observability.metrics.port | default 9090 }} + {{- end }} + readinessProbe: + httpGet: + path: {{ include "kiali-server.server.web_root" . | trimSuffix "/" }}/healthz + port: api-port + {{- if (include "kiali-server.identity.cert_file" .) }} + scheme: HTTPS + {{- else }} + scheme: HTTP + {{- end }} + initialDelaySeconds: {{ .Values.deployment.probes.readiness.initial_delay_seconds | int | default 5 }} + periodSeconds: {{ .Values.deployment.probes.readiness.period_seconds | int | default 30 }} + livenessProbe: + httpGet: + path: {{ include "kiali-server.server.web_root" . | trimSuffix "/" }}/healthz + port: api-port + {{- if (include "kiali-server.identity.cert_file" .) }} + scheme: HTTPS + {{- else }} + scheme: HTTP + {{- end }} + initialDelaySeconds: {{ .Values.deployment.probes.liveness.initial_delay_seconds | int | default 5 }} + periodSeconds: {{ .Values.deployment.probes.liveness.period_seconds | int | default 30 }} + startupProbe: + httpGet: + path: {{ include "kiali-server.server.web_root" . | trimSuffix "/" }}/healthz + port: api-port + {{- if (include "kiali-server.identity.cert_file" .) }} + scheme: HTTPS + {{- else }} + scheme: HTTP + {{- end }} + failureThreshold: {{ .Values.deployment.probes.startup.failure_threshold | int | default 6 }} + initialDelaySeconds: {{ .Values.deployment.probes.startup.initial_delay_seconds | int | default 30 }} + periodSeconds: {{ .Values.deployment.probes.startup.period_seconds | int | default 10 }} + env: + - name: ACTIVE_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: LOG_LEVEL + value: "{{ include "kiali-server.logLevel" . }}" + - name: LOG_FORMAT + value: "{{ .Values.deployment.logger.log_format }}" + - name: LOG_TIME_FIELD_FORMAT + value: "{{ .Values.deployment.logger.time_field_format }}" + - name: LOG_SAMPLER_RATE + value: "{{ .Values.deployment.logger.sampler_rate }}" + {{- range .Values.deployment.custom_envs }} + - name: {{ .name | quote }} + value: {{ .value | quote }} + {{- end }} + volumeMounts: + - name: {{ include "kiali-server.fullname" . }}-configuration + mountPath: "/kiali-configuration" + - name: {{ include "kiali-server.fullname" . }}-cert + mountPath: "/kiali-cert" + - name: {{ include "kiali-server.fullname" . }}-secret + mountPath: "/kiali-secret" + - name: {{ include "kiali-server.fullname" . }}-cabundle + mountPath: "/kiali-cabundle" + {{- range .Values.deployment.custom_secrets }} + - name: {{ .name }} + mountPath: "{{ .mount }}" + {{- end }} + {{- range $key, $val := (include "kiali-server.remote-cluster-secrets" .) | fromJson }} + - name: {{ $key }} + mountPath: "/kiali-remote-cluster-secrets/{{ $val }}" + {{- end }} + {{- range .Values.clustering.clusters }} + {{- if .secret_name }} + - name: {{ .name }} + mountPath: "/kiali-remote-cluster-secrets/{{ .secret_name }}" + {{- end }} + {{- end }} + {{- if .Values.deployment.resources }} + resources: + {{- toYaml .Values.deployment.resources | nindent 10 }} + {{- end }} + volumes: + - name: {{ include "kiali-server.fullname" . }}-configuration + configMap: + name: {{ include "kiali-server.fullname" . }} + - name: {{ include "kiali-server.fullname" . }}-cert + secret: + {{- if eq "true" (include "kiali-server.isOpenShift" .) }} + secretName: {{ include "kiali-server.fullname" . }}-cert-secret + {{- else }} + secretName: istio.{{ include "kiali-server.fullname" . }}-service-account + {{- end }} + {{- if not (include "kiali-server.identity.cert_file" .) }} + optional: true + {{- end }} + - name: {{ include "kiali-server.fullname" . }}-secret + secret: + secretName: {{ .Values.deployment.secret_name }} + optional: true + - name: {{ include "kiali-server.fullname" . }}-cabundle + configMap: + name: {{ include "kiali-server.fullname" . }}-cabundle + {{- if not (eq "true" (include "kiali-server.isOpenShift" .)) }} + optional: true + {{- end }} + {{- range .Values.deployment.custom_secrets }} + - name: {{ .name }} + {{- if .csi}} + csi: {{ toYaml .csi | nindent 10 }} + {{- else }} + secret: + secretName: {{ .name }} + optional: {{ .optional | default false }} + {{- end }} + {{- end }} + {{- range $key, $val := (include "kiali-server.remote-cluster-secrets" .) | fromJson }} + - name: {{ $key }} + secret: + secretName: {{ $val }} + {{- end }} + {{- range .Values.clustering.clusters }} + {{- if .secret_name }} + - name: {{ .name }} + secret: + secretName: {{ .secret_name }} + {{- end }} + {{- end }} + {{- if or (.Values.deployment.affinity.node) (or (.Values.deployment.affinity.pod) (.Values.deployment.affinity.pod_anti)) }} + affinity: + {{- if .Values.deployment.affinity.node }} + nodeAffinity: + {{- toYaml .Values.deployment.affinity.node | nindent 10 }} + {{- end }} + {{- if .Values.deployment.affinity.pod }} + podAffinity: + {{- toYaml .Values.deployment.affinity.pod | nindent 10 }} + {{- end }} + {{- if .Values.deployment.affinity.pod_anti }} + podAntiAffinity: + {{- toYaml .Values.deployment.affinity.pod_anti | nindent 10 }} + {{- end }} + {{- end }} + {{- if .Values.deployment.tolerations }} + tolerations: + {{- toYaml .Values.deployment.tolerations | nindent 8 }} + {{- end }} + {{- if .Values.deployment.node_selector }} + nodeSelector: + {{- toYaml .Values.deployment.node_selector | nindent 8 }} + {{- end }} +... +{{- end }} diff --git a/helm-charts-2.4.0/kiali-server/templates/hpa.yaml b/helm-charts-2.4.0/kiali-server/templates/hpa.yaml new file mode 100644 index 0000000..d04cb0c --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/hpa.yaml @@ -0,0 +1,19 @@ +{{- if not .Values.deployment.remote_cluster_resources_only }} +{{- if .Values.deployment.hpa.spec }} +--- +apiVersion: {{ .Values.deployment.hpa.api_version }} +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-server.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "kiali-server.fullname" . }} + {{- toYaml .Values.deployment.hpa.spec | nindent 2 }} +... +{{- end }} +{{- end }} \ No newline at end of file diff --git a/helm-charts-2.4.0/kiali-server/templates/ingress.yaml b/helm-charts-2.4.0/kiali-server/templates/ingress.yaml new file mode 100644 index 0000000..911b63c --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/ingress.yaml @@ -0,0 +1,64 @@ +{{- if not .Values.deployment.remote_cluster_resources_only }} +{{- if not (eq "true" (include "kiali-server.isOpenShift" .)) }} +{{- if eq "true" (include "kiali-server.deployment.ingress.enabled" .) }} +--- +{{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress" }} +apiVersion: networking.k8s.io/v1 +{{- else }} +apiVersion: networking.k8s.io/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- if .Values.deployment.ingress.additional_labels }} + {{- toYaml .Values.deployment.ingress.additional_labels | nindent 4 }} + {{- end }} + {{- include "kiali-server.labels" . | nindent 4 }} + annotations: + {{- if .Values.deployment.ingress.override_yaml.metadata.annotations }} + {{- toYaml .Values.deployment.ingress.override_yaml.metadata.annotations | nindent 4 }} + {{- else }} + # For ingress-nginx versions older than 0.20.0 use secure-backends. + # (see: https://github.com/kubernetes/ingress-nginx/issues/3416#issuecomment-438247948) + # For ingress-nginx versions 0.20.0 and later use backend-protocol. + {{- if (include "kiali-server.identity.cert_file" .) }} + nginx.ingress.kubernetes.io/secure-backends: "true" + nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" + {{- else }} + nginx.ingress.kubernetes.io/secure-backends: "false" + nginx.ingress.kubernetes.io/backend-protocol: "HTTP" + {{- end }} + {{- end }} +spec: + {{- if hasKey .Values.deployment.ingress.override_yaml "spec" }} + {{- toYaml .Values.deployment.ingress.override_yaml.spec | nindent 2 }} + {{- else }} + {{- if .Values.deployment.ingress.class_name }} + ingressClassName: {{ .Values.deployment.ingress.class_name }} + {{- end }} + rules: + - http: + paths: + - path: {{ include "kiali-server.server.web_root" . }} + {{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress" }} + pathType: Prefix + backend: + service: + name: {{ include "kiali-server.fullname" . }} + port: + number: {{ .Values.server.port }} + {{- else }} + backend: + serviceName: {{ include "kiali-server.fullname" . }} + servicePort: {{ .Values.server.port }} + {{- end }} + {{- if not (empty .Values.server.web_fqdn) }} + host: {{ .Values.server.web_fqdn }} + {{- end }} + {{- end }} +... +{{- end }} +{{- end }} +{{- end }} \ No newline at end of file diff --git a/helm-charts-2.4.0/kiali-server/templates/oauth.yaml b/helm-charts-2.4.0/kiali-server/templates/oauth.yaml new file mode 100644 index 0000000..223b8cd --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/oauth.yaml @@ -0,0 +1,31 @@ +{{- if eq "true" (include "kiali-server.isOpenShift" .) }} +{{- if (or (.Values.kiali_route_url) (.Values.auth.openshift.redirect_uris)) }} +--- +apiVersion: oauth.openshift.io/v1 +kind: OAuthClient +metadata: + name: {{ include "kiali-server.fullname" . }}-{{ .Release.Namespace }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-server.labels" . | nindent 4 }} +redirectURIs: +{{- if .Values.auth.openshift.redirect_uris }} +{{- range .Values.auth.openshift.redirect_uris }} +- {{ . }} +{{- end }} +{{- else }} +- {{ .Values.kiali_route_url }}/api/auth/callback +{{- if .Values.server.web_port }} +- {{ .Values.kiali_route_url }}:{{ .Values.server.web_port }}/api/auth/callback +{{- end }} +{{- end }} +grantMethod: auto +{{- if .Values.auth.openshift.token_inactivity_timeout }} +accessTokenInactivityTimeoutSeconds: {{ .Values.auth.openshift.token_inactivity_timeout }} +{{- end }} +{{- if .Values.auth.openshift.token_max_age }} +accessTokenMaxAgeSeconds: {{ .Values.auth.openshift.token_max_age }} +{{- end }} +... +{{- end }} +{{- end }} diff --git a/helm-charts-2.4.0/kiali-server/templates/role-viewer.yaml b/helm-charts-2.4.0/kiali-server/templates/role-viewer.yaml new file mode 100644 index 0000000..cbe6d0d --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/role-viewer.yaml @@ -0,0 +1,103 @@ +{{- if or (.Values.deployment.view_only_mode) (ne .Values.auth.strategy "anonymous") -}} +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: {{ include "kiali-server.fullname" . }}-viewer + labels: + {{- include "kiali-server.labels" . | nindent 4 }} +rules: +- apiGroups: [""] + resources: + - configmaps + - endpoints +{{- if not (has "logs-tab" .Values.kiali_feature_flags.disabled_features) }} + - pods/log +{{- end }} + verbs: + - get + - list + - watch +- apiGroups: [""] + resources: + - namespaces + - pods + - replicationcontrollers + - services + verbs: + - get + - list + - watch +- apiGroups: [""] + resources: + - pods/portforward + verbs: + - create + - post +- apiGroups: ["extensions", "apps"] + resources: + - daemonsets + - deployments + - replicasets + - statefulsets + verbs: + - get + - list + - watch +- apiGroups: ["batch"] + resources: + - cronjobs + - jobs + verbs: + - get + - list + - watch +- apiGroups: + - networking.istio.io + - security.istio.io + - extensions.istio.io + - telemetry.istio.io + - gateway.networking.k8s.io + resources: ["*"] + verbs: + - get + - list + - watch +- apiGroups: ["apps.openshift.io"] + resources: + - deploymentconfigs + verbs: + - get + - list + - watch +- apiGroups: ["project.openshift.io"] + resources: + - projects + verbs: + - get +- apiGroups: ["route.openshift.io"] + resources: + - routes + verbs: + - get +- apiGroups: ["authentication.k8s.io"] + resources: + - tokenreviews + verbs: + - create +- apiGroups: ["oauth.openshift.io"] + resources: + - oauthclients + resourceNames: + - {{ include "kiali-server.fullname" . }}-{{ .Release.Namespace }} + verbs: + - get +- apiGroups: ["admissionregistration.k8s.io"] + resources: + - mutatingwebhookconfigurations + verbs: + - get + - list + - watch +... +{{- end -}} diff --git a/helm-charts-2.4.0/kiali-server/templates/role.yaml b/helm-charts-2.4.0/kiali-server/templates/role.yaml new file mode 100644 index 0000000..74c574d --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/role.yaml @@ -0,0 +1,110 @@ +{{- if not (or (.Values.deployment.view_only_mode) (ne .Values.auth.strategy "anonymous")) -}} +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: {{ include "kiali-server.fullname" . }} + labels: + {{- include "kiali-server.labels" . | nindent 4 }} +rules: +- apiGroups: [""] + resources: + - configmaps + - endpoints +{{- if not (has "logs-tab" .Values.kiali_feature_flags.disabled_features) }} + - pods/log +{{- end }} + verbs: + - get + - list + - watch +- apiGroups: [""] + resources: + - namespaces + - pods + - replicationcontrollers + - services + verbs: + - get + - list + - watch + - patch +- apiGroups: [""] + resources: + - pods/portforward + verbs: + - create + - post +- apiGroups: ["extensions", "apps"] + resources: + - daemonsets + - deployments + - replicasets + - statefulsets + verbs: + - get + - list + - watch + - patch +- apiGroups: ["batch"] + resources: + - cronjobs + - jobs + verbs: + - get + - list + - watch + - patch +- apiGroups: + - networking.istio.io + - security.istio.io + - extensions.istio.io + - telemetry.istio.io + - gateway.networking.k8s.io + resources: ["*"] + verbs: + - get + - list + - watch + - create + - delete + - patch +- apiGroups: ["apps.openshift.io"] + resources: + - deploymentconfigs + verbs: + - get + - list + - watch + - patch +- apiGroups: ["project.openshift.io"] + resources: + - projects + verbs: + - get +- apiGroups: ["route.openshift.io"] + resources: + - routes + verbs: + - get +- apiGroups: ["authentication.k8s.io"] + resources: + - tokenreviews + verbs: + - create +- apiGroups: ["oauth.openshift.io"] + resources: + - oauthclients + resourceNames: + - {{ include "kiali-server.fullname" . }}-{{ .Release.Namespace }} + verbs: + - get +- apiGroups: ["admissionregistration.k8s.io"] + resources: + - mutatingwebhookconfigurations + verbs: + - get + - list + - watch +... +{{- end -}} diff --git a/helm-charts-2.4.0/kiali-server/templates/rolebinding.yaml b/helm-charts-2.4.0/kiali-server/templates/rolebinding.yaml new file mode 100644 index 0000000..dd0d585 --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/rolebinding.yaml @@ -0,0 +1,24 @@ +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + {{- if or (.Values.deployment.view_only_mode) (ne .Values.auth.strategy "anonymous") }} + name: {{ include "kiali-server.fullname" . }}-viewer + {{- else }} + name: {{ include "kiali-server.fullname" . }} + {{- end }} + labels: + {{- include "kiali-server.labels" . | nindent 4 }} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + {{- if or (.Values.deployment.view_only_mode) (ne .Values.auth.strategy "anonymous") }} + name: {{ include "kiali-server.fullname" . }}-viewer + {{- else }} + name: {{ include "kiali-server.fullname" . }} + {{- end }} +subjects: +- kind: ServiceAccount + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" +... diff --git a/helm-charts-2.4.0/kiali-server/templates/route.yaml b/helm-charts-2.4.0/kiali-server/templates/route.yaml new file mode 100644 index 0000000..77b2906 --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/route.yaml @@ -0,0 +1,36 @@ +{{- if not .Values.deployment.remote_cluster_resources_only }} +{{- if eq "true" (include "kiali-server.isOpenShift" .) }} +{{- if eq "true" (include "kiali-server.deployment.ingress.enabled" .) }} +# As of OpenShift 4.5, need to use --disable-openapi-validation when installing via Helm +--- +apiVersion: route.openshift.io/v1 +kind: Route +metadata: + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- if .Values.deployment.ingress.additional_labels }} + {{- toYaml .Values.deployment.ingress.additional_labels | nindent 4 }} + {{- end }} + {{- include "kiali-server.labels" . | nindent 4 }} + {{- if .Values.deployment.ingress.override_yaml.metadata.annotations }} + annotations: + {{- toYaml .Values.deployment.ingress.override_yaml.metadata.annotations | nindent 4 }} + {{- end }} +spec: + {{- if hasKey .Values.deployment.ingress.override_yaml "spec" }} + {{- toYaml .Values.deployment.ingress.override_yaml.spec | nindent 2 }} + {{- else }} + tls: + termination: reencrypt + insecureEdgeTerminationPolicy: Redirect + to: + kind: Service + name: {{ include "kiali-server.fullname" . }} + port: + targetPort: {{ .Values.server.port }} + {{- end }} +... +{{- end }} +{{- end }} +{{- end }} \ No newline at end of file diff --git a/helm-charts-2.4.0/kiali-server/templates/service.yaml b/helm-charts-2.4.0/kiali-server/templates/service.yaml new file mode 100644 index 0000000..89b6860 --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/service.yaml @@ -0,0 +1,53 @@ +{{- if not .Values.deployment.remote_cluster_resources_only }} +--- +apiVersion: v1 +kind: Service +metadata: + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-server.labels" . | nindent 4 }} + annotations: + {{- if eq "true" (include "kiali-server.isOpenShift" .) }} + service.beta.openshift.io/serving-cert-secret-name: {{ include "kiali-server.fullname" . }}-cert-secret + {{- end }} + {{- if and (not (empty .Values.server.web_fqdn)) (not (empty .Values.server.web_schema)) }} + {{- if empty .Values.server.web_port }} + kiali.io/external-url: {{ .Values.server.web_schema }}://{{ .Values.server.web_fqdn }}{{ include "kiali-server.server.web_root" . }} + {{- else }} + kiali.io/external-url: {{ .Values.server.web_schema }}://{{ .Values.server.web_fqdn }}:{{ .Values.server.web_port }}{{ include "kiali-server.server.web_root" . }} + {{- end }} + {{- end }} + {{- if .Values.deployment.service_annotations }} + {{- toYaml .Values.deployment.service_annotations | nindent 4 }} + {{- end }} +spec: + {{- if .Values.deployment.service_type }} + type: {{ .Values.deployment.service_type }} + {{- end }} + ports: + {{- if (include "kiali-server.identity.cert_file" .) }} + - name: tcp + appProtocol: https + {{- else }} + - name: http + appProtocol: http + {{- end }} + protocol: TCP + port: {{ .Values.server.port }} + {{- if and (not (empty .Values.server.node_port)) (eq .Values.deployment.service_type "NodePort") }} + nodePort: {{ .Values.server.node_port }} + {{- end }} + {{- if .Values.server.observability.metrics.enabled }} + - name: http-metrics + appProtocol: http + protocol: TCP + port: {{ .Values.server.observability.metrics.port }} + {{- end }} + selector: + {{- include "kiali-server.selectorLabels" . | nindent 4 }} + {{- if .Values.deployment.additional_service_yaml }} + {{- toYaml .Values.deployment.additional_service_yaml | nindent 2 }} + {{- end }} +... +{{- end }} \ No newline at end of file diff --git a/helm-charts-2.4.0/kiali-server/templates/serviceaccount.yaml b/helm-charts-2.4.0/kiali-server/templates/serviceaccount.yaml new file mode 100644 index 0000000..995d580 --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/templates/serviceaccount.yaml @@ -0,0 +1,9 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "kiali-server.fullname" . }} + namespace: "{{ .Release.Namespace }}" + labels: + {{- include "kiali-server.labels" . | nindent 4 }} +... diff --git a/helm-charts-2.4.0/kiali-server/values.yaml b/helm-charts-2.4.0/kiali-server/values.yaml new file mode 100644 index 0000000..d0cc6a5 --- /dev/null +++ b/helm-charts-2.4.0/kiali-server/values.yaml @@ -0,0 +1,125 @@ +# This is required for "openshift" auth strategy. +# You have to know ahead of time what your Route URL will be because +# right now the helm chart can't figure this out at runtime (it would +# need to wait for the Kiali Route to be deployed and for OpenShift +# to start it up). If someone knows how to update this helm chart to +# do this, a PR would be welcome. +kiali_route_url: "" + +# +# Settings that mimic the Kiali CR which are placed in the ConfigMap. +# Note that only those values used by the Helm Chart will be here. +# + +additional_display_details: +- annotation: kiali.io/api-spec + icon_annotation: kiali.io/api-type + title: API Documentation + +istio_namespace: "" # default is where Kiali is installed + +auth: + openid: {} + openshift: {} + strategy: "" + +clustering: + autodetect_secrets: + enabled: true + label: "kiali.io/multiCluster=true" + clusters: [] + +deployment: + additional_service_yaml: {} + affinity: + node: {} + pod: {} + pod_anti: {} + # The Kiali server helm chart only supports cluster-wide access; setting cluster_wide_access to false is not supported. + # For more control over what the Kial Service Account can see, use the Kiali Operator. + cluster_wide_access: true + configmap_annotations: {} + custom_envs: [] + custom_secrets: [] + dns: + config: {} + policy: "" + host_aliases: [] + hpa: + api_version: "autoscaling/v2" + spec: {} + image_digest: "" # use "sha256" if image_version is a sha256 hash (do NOT prefix this value with a "@") + image_name: quay.io/kiali/kiali + image_pull_policy: "Always" + image_pull_secrets: [] + image_version: ${HELM_IMAGE_TAG} # version like "v1.39" (see: https://quay.io/repository/kiali/kiali?tab=tags) or a digest hash + ingress: + additional_labels: {} + class_name: "nginx" + #enabled: + override_yaml: + metadata: {} + instance_name: "kiali" + logger: + log_format: "text" + log_level: "info" + time_field_format: "2006-01-02T15:04:05Z07:00" + sampler_rate: "1" + node_selector: {} + pod_annotations: {} + pod_labels: {} + priority_class_name: "" + probes: + liveness: + initial_delay_seconds: 5 + period_seconds: 30 + readiness: + initial_delay_seconds: 5 + period_seconds: 30 + startup: + failure_threshold: 6 + initial_delay_seconds: 30 + period_seconds: 10 + remote_cluster_resources_only: false + # if deployment.hpa is defined, this replicas setting will be ignored + replicas: 1 + resources: + requests: + cpu: "10m" + memory: "64Mi" + limits: + memory: "1Gi" + secret_name: "kiali" + security_context: {} + service_annotations: {} + service_type: "" + tolerations: [] + version_label: ${HELM_IMAGE_TAG} # v1.39 # v1.39.0 # see: https://quay.io/repository/kiali/kiali?tab=tags + view_only_mode: false + +external_services: + custom_dashboards: + enabled: true + istio: + root_namespace: "" + +identity: {} + #cert_file: + #private_key_file: + +kiali_feature_flags: + disabled_features: [] + validations: + ignore: ["KIA1301"] + +login_token: + signing_key: "" + +server: + port: 20001 + #node_port: + observability: + metrics: + enabled: true + port: 9090 + web_root: ""