Skip to content

Commit c37d0dd

Browse files
authored
fix: deploy Sensors to argo-events namespace TDE-1873 (#1178)
### Motivation Argo Events sensor were deployed to the `argo` namespace while associated `EventSource` are in `argo-events` namespace. It broke the default assumptions of our Argo Events config. Aligning everything "Argo Event" with the `argo-events` namespace makes it easier for managing this deployment. <!-- TODO: Say why you made your changes. --> ### Modifications Deploy `Sensors` to the `argo-events` namespace <!-- TODO: Say what changes you made. --> <!-- TODO: Attach screenshots if you changed the UI. --> ### Verification <!-- TODO: Say how you tested your changes. -->
1 parent 94b909c commit c37d0dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
137137
EVENTS=$(grep '^kind: Sensor$' -R events/ -H | cut -d ':' -f1)
138138
for evt in $EVENTS; do
139-
kubectl apply -f "$evt" --namespace argo
139+
kubectl apply -f "$evt" --namespace argo-events
140140
done
141141
142142
- name: Install Argo

0 commit comments

Comments
 (0)