diff --git a/.github/kind-config.yaml b/.github/kind-config.yaml index 7307f45f..c04e6fea 100644 --- a/.github/kind-config.yaml +++ b/.github/kind-config.yaml @@ -6,4 +6,4 @@ nodes: - containerPort: 30949 hostPort: 80 - containerPort: 30950 - hostPort: 443 \ No newline at end of file + hostPort: 443 diff --git a/.github/workflows/test-kubectl-plugin.yml b/.github/workflows/test-kubectl-plugin.yml index 7fce5ed0..e6000247 100644 --- a/.github/workflows/test-kubectl-plugin.yml +++ b/.github/workflows/test-kubectl-plugin.yml @@ -52,8 +52,8 @@ jobs: make generate manifests install - name: Install Istio run: | - curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.16.1 TARGET_ARCH=x86_64 sh - - export PATH="$PATH:$PWD/istio-1.16.1/bin" + curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.20.0 TARGET_ARCH=x86_64 sh - + export PATH="$PATH:$PWD/istio-1.20.0/bin" kubectl create namespace istio-system istioctl operator init @@ -127,8 +127,6 @@ jobs: - name: Configure DNS in Kubernetes run: | - CLUSTER_IP=$(kubectl -n istio-system get svc istio-ingressgateway -o json | jq -r .spec.clusterIP) - echo "CLUSTER_IP=${CLUSTER_IP}" kubectl apply -f - <