#!/usr/bin/env bash # This script runs e2e tests for progressive traffic shifting with session affinity, Canary analysis and promotion # Prerequisites: Kubernetes Kind and Istio with GatewayAPI set -o errexit REPO_ROOT=$(git rev-parse --show-toplevel) source ${REPO_ROOT}/test/gatewayapi/test-utils.sh create_latency_metric_template create_error_rate_metric_template echo '>>> Deploy podinfo in sa-test namespace' kubectl create ns sa-test kubectl apply -f ${REPO_ROOT}/test/workloads/secret.yaml -n sa-test kubectl apply -f ${REPO_ROOT}/test/workloads/deployment.yaml -n sa-test echo '>>> Installing Canary' cat <>> Port forwarding load balancer' kubectl port-forward -n istio-ingress svc/gateway-istio 8888:80 2>&1 > /dev/null & pf_pid=$! cleanup() { echo ">> Killing port forward process ${pf_pid}" kill -9 $pf_pid } trap "cleanup" EXIT SIGINT echo '>>> Triggering canary deployment' kubectl -n sa-test set image deployment/podinfo podinfod=stefanprodan/podinfo:6.1.0 echo '>>> Waiting for initial traffic shift' retries=50 count=0 ok=false until ${ok}; do kubectl -n sa-test get canary podinfo -o=jsonpath='{.status.canaryWeight}' | grep '10' && ok=true || ok=false sleep 5 kubectl -n flagger-system logs deployment/flagger --tail 1 count=$(($count + 1)) if [[ ${count} -eq ${retries} ]]; then kubectl -n flagger-system logs deployment/flagger echo "No more retries left" exit 1 fi done echo '>>> Verifying session affinity' if ! URL=http://localhost:8888 HOST=www.example.com CANARY_VERSION=6.1.0 \ CANARY_COOKIE_NAME=canary-flagger-cookie PRIMARY_VERSION=6.0.4 PRIMARY_COOKIE_NAME=primary-flagger-cookie \ go run ${REPO_ROOT}/test/verify_session_affinity.go; then echo "failed to verify session affinity" exit $? fi echo '>>> Waiting for canary promotion' retries=50 count=0 ok=false until ${ok}; do kubectl -n sa-test describe deployment/podinfo-primary | grep '6.1.0' && ok=true || ok=false sleep 10 kubectl -n flagger-system logs deployment/flagger --tail 1 count=$(($count + 1)) if [[ ${count} -eq ${retries} ]]; then kubectl -n flagger-system logs deployment/flagger echo "No more retries left" exit 1 fi done display_httproute "sa-test" echo '>>> Waiting for canary finalization' retries=50 count=0 ok=false until ${ok}; do kubectl -n sa-test get canary/podinfo | grep 'Succeeded' && ok=true || ok=false sleep 5 count=$(($count + 1)) if [[ ${count} -eq ${retries} ]]; then kubectl -n flagger-system logs deployment/flagger echo "No more retries left" exit 1 fi done echo '>>> Verifying cookie cleanup' canary_cookie=$(kubectl -n sa-test get canary podinfo -o=jsonpath='{.status.previousSessionAffinityCookie}' | xargs) response=$(curl -H "Host: www.example.com" -H "Cookie: $canary_cookie" -D - http://localhost:8888) if [[ $response == *"$canary_cookie"* ]]; then echo "✔ Found previous cookie in response" else echo "⨯ Previous cookie ${canary_cookie} not found in response" exit 1 fi if [[ $response == *"Max-Age=-1"* ]]; then echo "✔ Found Max-Age attribute in cookie" else echo "⨯ Max-Age attribute not present in cookie" exit 1 fi echo '✔ Canary release with session affinity promotion test passed' kubectl delete -n sa-test canary podinfo