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

Adding relevant Istio config to mesh workloads #9

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions workloads/ping-pong-mesh/client/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ spec:
labels:
app: ping-pong-client
mode: cofide
spiffe.io/spire-managed-identity: "true"
sidecar.istio.io/inject: "true"
annotations:
proxy.istio.io/config: |
proxyMetadata:
ISTIO_META_DNS_CAPTURE: "true"
ISTIO_META_DNS_AUTO_ALLOCATE: "true"
inject.istio.io/templates: "sidecar,spire"
spec:
serviceAccountName: ping-pong-client
containers:
Expand Down
7 changes: 7 additions & 0 deletions workloads/ping-pong-mesh/server/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ spec:
labels:
app: ping-pong-server
mode: cofide
sidecar.istio.io/inject: "true"
annotations:
proxy.istio.io/config: |
proxyMetadata:
ISTIO_META_DNS_CAPTURE: "true"
ISTIO_META_DNS_AUTO_ALLOCATE: "true"
inject.istio.io/templates: "sidecar,spire"
spec:
serviceAccountName: ping-pong-server
containers:
Expand Down
Loading