Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 873 Bytes

telepresence.md

File metadata and controls

51 lines (30 loc) · 873 Bytes

Develop With Telepresence

TODO: Intro

Setup

telepresence helm install

Do

cat ping.go

go run .

# In a separate terminal
curl "http://localhost:8080/ping?url=http://cncf-demo:8080"

# `ctrl+c`

kubectl --namespace dev get services

telepresence connect

telepresence list --namespace dev

telepresence intercept cncf-demo --namespace dev \
     --port 8080:http --env-file silly-demo.env

curl "http://cncf-demo:8080"

go run .

# In a separate terminal
curl "http://localhost:8080/ping?url=http://cncf-demo:8080"

# `ctrl+c`

telepresence leave cncf-demo-dev

telepresence quit

Continue The Adventure