https://github.com/istio/istio
https://github.com/istio/istio/releases
helm repo add istio https://istio-release.storage.googleapis.com/chartshelm repo update
export VERSION=1.28.8
mkdir ${VERSION}helm template istio-base istio/base \
--version ${VERSION} \
--namespace istio-system > ./${VERSION}/istio-base.yamlhelm template istiod istio/istiod \
--version ${VERSION} \
--namespace istio-system \
--set pilot.autoscaleEnabled=true \
--set pilot.autoscaleMin=2 \
--set pilot.autoscaleMax=5 \
--set pilot.resources.requests.cpu=500m \
--set pilot.resources.requests.memory=2Gi \
--set pilot.env.PILOT_ENABLE_PERSISTENT_SESSION_FILTER=true > ./${VERSION}/istiod.yamlkubectl get deploy istiod -n istio-system -o yaml | grep PILOT_ENABLE_PERSISTENT_SESSION_FILTER -A1