File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -174,15 +174,12 @@ def ensure_pathways_workload_prerequisites(args, system) -> bool:
174
174
175
175
def get_pathways_unified_query_link (args ) -> str :
176
176
"""Get the unified query link for the pathways workload."""
177
- pw_suffixes = ['main' , 'rm' , 'proxy' ]
178
- pw_pod_names = [f'"{ args .workload } -{ suffix } -0"' for suffix in pw_suffixes ]
179
- pw_pod_names_query = '%20OR%20' .join (pw_pod_names + ['worker-0-0' ])
180
177
query_params = (
181
178
'resource.type%3D"k8s_container"%0A'
182
179
f'resource.labels.project_id%3D"{ args .project } "%0A'
183
180
f'resource.labels.location%3D"{ zone_to_region (args .zone )} "%0A'
184
181
f'resource.labels.cluster_name%3D"{ args .cluster } "%0A'
185
- f'resource.labels.pod_name:{ pw_pod_names_query } %0A'
182
+ f'resource.labels.pod_name:" { args . workload } -" %0A'
186
183
'severity>%3DDEFAULT'
187
184
)
188
185
You can’t perform that action at this time.
0 commit comments