This playground provides a hands-on environment for learning the basics of Istio.
You'll be working with a simple K3s cluster enhanced with Istio and the popular Bookinfo sample application pre-installed. The playground is a good starting point for developers and operators looking to explore Istio's features in a realistic yet lightweight setup.
This environment is made up of three virtual machines:
Each machine has a terminal tab for direct access, and the dev-machine also includes:
iximiuz/kexp
)productpage
web UI with a single click.This playground uses initTasks
to fully automate the setup process, including downloading Istio, installing it to the cluster, deploying the sample app, and exposing it via a Gateway.
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.25.0 sh -
echo 'export PATH=$PATH:$HOME/istio-1.25.0/bin' >> ~/.bashrc
export PATH=$PATH:$HOME/istio-1.25.0/bin
cd istio-1.25.0
istioctl install -f samples/bookinfo/demo-profile-no-gateways.yaml -y
kubectl label namespace default istio-injection=enabled
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.2.1" \
| kubectl apply -f -
kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
kubectl apply -f samples/bookinfo/gateway-api/bookinfo-gateway.yaml
kubectl wait --for=condition=programmed gtw bookinfo-gateway
Then expose the root path (/
) to the productpage
with an extra HTTPRoute
manifest:
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: bookinfo-root
spec:
parentRefs:
- name: bookinfo-gateway
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- name: productpage
port: 9080
productpage
to view the running Bookinfo application.This playground is open to everyone. Ideal for workshops, self-paced labs, and quick experimentation with Istio and service mesh fundamentals.