Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add newly required attributes to sidecar quickstart deployment example #21

Merged
merged 2 commits into from Jan 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -74,15 +74,22 @@ Save the following yaml to a file named tunnel-sidecar-demo.yaml
name: ziti-tunnel-sidecar-demo
spec:
replicas: 1
selector:
matchLabels:
app: ziti-tunnel-sidecar-demo
strategy:
type: Recreate
template:
metadata:
labels:
app: ziti-tunnel-sidecar-demo
spec:
containers:
- image: busybox
name: testclient
command: ["sh","-c","while true; do echo wget -qO - eth0.ziti.cli:80; sleep 5; done"]
- image: netfoundry/ziti-tunnel:0.5.7-2546
name: ziti-tunnel
env:
- name: NF_REG_NAME
value: tunnel-sidecar
Expand All @@ -96,7 +103,7 @@ Save the following yaml to a file named tunnel-sidecar-demo.yaml
volumes:
- name: ziti-tunnel-persistent-storage
persistentVolumeClaim:
claimName: ziti-tunnel-host-pv-claim
claimName: tunnel-sidecar-pv-claim
- name: tunnel-sidecar-jwt
secret:
secretName: tunnel-sidecar.jwt
Expand Down