Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Updating readme for installation of latest Istio Addon for Kiali #1864

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion patterns/istio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cluster with deployed Istio.
```sh
for ADDON in kiali jaeger prometheus grafana
do
ADDON_URL="https://raw.githubusercontent.com/istio/istio/release-1.18/samples/addons/$ADDON.yaml"
ADDON_URL="https://raw.githubusercontent.com/istio/istio/release-1.20/samples/addons/$ADDON.yaml"
kubectl apply -f $ADDON_URL
done
```
Expand Down
4 changes: 2 additions & 2 deletions patterns/istio/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ locals {
azs = slice(data.aws_availability_zones.available.names, 0, 3)

istio_chart_url = "https://istio-release.storage.googleapis.com/charts"
istio_chart_version = "1.18.1"
istio_chart_version = "1.20.2"

tags = {
Blueprint = local.name
Expand All @@ -55,7 +55,7 @@ module "eks" {
version = "~> 19.16"

cluster_name = local.name
cluster_version = "1.27"
cluster_version = "1.28"
cluster_endpoint_public_access = true

cluster_addons = {
Expand Down