Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1.98 KB

File metadata and controls

47 lines (35 loc) · 1.98 KB

Hubble in action

Prerequisites

# Port-forward to access the Hubble API
cilium hubble port-forward&

# Open the Hubble UI in your browser
cilium hubble ui

# Install the Star Wars demo application
kubectl create -f https://raw.githubusercontent.com/cilium/cilium/HEAD/examples/minikube/http-sw-app.yaml

Demo

# Test access to the Death Star
kubectl exec tiefighter -- curl -s -XPOST deathstar.demo.svc.cluster.local/v1/request-landing
kubectl exec xwing -- curl -s -XPOST deathstar.demo.svc.cluster.local/v1/request-landing
kubectl exec xwing -- curl -s -XPUT deathstar.demo.svc.cluster.local/v1/exhaust-port

# Observe the traffic in the Hubble CLI
hubble observe --pod demo/deathstar-54bb8475cc-vhqwq

# Add a "deny all" policy to make traffic visible
kubectl apply -f https://raw.githubusercontent.com/cilium/cilium/main/examples/minikube/sw_deny_policy.yaml

# Test access to the Death Star again
kubectl exec xwing -- curl -s -XPOST deathstar.demo.svc.cluster.local/v1/request-landing
kubectl exec tiefighter -- curl -s -XPOST deathstar.demo.svc.cluster.local/v1/request-landing

# Allow only Empire labeled pods to access the Death Star
kubectl apply -f https://raw.githubusercontent.com/cilium/cilium/main/examples/minikube/sw_l3_l4_policy.yaml

# Test access to the Death Star again
kubectl exec xwing -- curl -s -XPOST deathstar.demo.svc.cluster.local/v1/request-landing
kubectl exec xwing -- curl -s -XPUT deathstar.demo.svc.cluster.local/v1/exhaust-port
kubectl exec tiefighter -- curl -s -XPOST deathstar.demo.svc.cluster.local/v1/request-landing
kubectl exec tiefighter -- curl -s -XPUT deathstar.demo.svc.cluster.local/v1/exhaust-port

# Block access to the Death Star exhaust API
kubectl apply -f https://raw.githubusercontent.com/cilium/cilium/main/examples/minikube/sw_l3_l4_l7_policy.yaml
kubectl exec tiefighter -- curl -s -XPOST deathstar.demo.svc.cluster.local/v1/request-landing
kubectl exec tiefighter -- curl -s -XPUT deathstar.demo.svc.cluster.local/v1/exhaust-port