Skip to content

Commit 5f2b653

Browse files
authored
fix: Fix Istio sidecar injection by moving from annotations to labels (#93)
* fix: Fix Istio sidecar injection by moving from annotations to labels Signed-off-by: madmecodes <[email protected]> * update: typo Signed-off-by: madmecodes <[email protected]> --------- Signed-off-by: madmecodes <[email protected]>
1 parent c3487d8 commit 5f2b653

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

components/admission-webhook/manifests/base/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
template:
77
metadata:
8-
annotations:
8+
labels:
99
sidecar.istio.io/inject: "false"
1010
spec:
1111
containers:

components/centraldashboard/manifests/base/deployment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ spec:
1313
metadata:
1414
labels:
1515
app: centraldashboard
16-
annotations:
1716
sidecar.istio.io/inject: "true"
1817
spec:
1918
containers:

components/profile-controller/config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
replicas: 1
1414
template:
1515
metadata:
16-
annotations:
16+
labels:
1717
sidecar.istio.io/inject: "false"
1818
spec:
1919
containers:

components/profile-controller/config/overlays/kubeflow/patches/kfam.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
template:
77
metadata:
8-
annotations:
8+
labels:
99
sidecar.istio.io/inject: "true"
1010
spec:
1111
securityContext:

0 commit comments

Comments
 (0)