Skip to content

Instantly share code, notes, and snippets.

@chirauki
Created October 15, 2021 15:26
Show Gist options
  • Save chirauki/66fbf22f6c45304a608ae5360cfa28d6 to your computer and use it in GitHub Desktop.
Save chirauki/66fbf22f6c45304a608ae5360cfa28d6 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: tf-productpage
name: tf-productpage
spec:
selector:
matchLabels:
app: tf-productpage
template:
metadata:
annotations:
sidecar.istio.io/inject: "false"
labels:
app: tf-productpage
spec:
containers:
- command:
- sh
- -c
- |
while true; do
curl -v http://productpage:9080/productpage?u=normal
sleep 2
done
image: peterevans/vegeta:6.7.0
imagePullPolicy: IfNotPresent
name: tf-productpage
serviceAccount: default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment