We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0488267 commit d56eaefCopy full SHA for d56eaef
1 file changed
tests/templates/kuttl/smoke/check-metrics.py
@@ -65,16 +65,8 @@ def check_monitoring(hosts):
65
args = vars(all_args.parse_args())
66
namespace = args["namespace"]
67
68
- host_coordinator_0 = (
69
- "http://trino-coordinator-default-0.trino-coordinator-default."
70
- + namespace
71
- + ".svc.cluster.local"
72
- )
73
- host_worker_0 = (
74
- "http://trino-worker-default-0.trino-worker-default."
75
76
77
+ host_coordinator_0 = f"http://trino-coordinator-default-0.trino-coordinator-default.{namespace}.svc.cluster.local"
+ host_worker_0 = f"http://trino-worker-default-0.trino-worker-default.{namespace}.svc.cluster.local"
78
79
hosts = [host_coordinator_0, host_worker_0]
80
0 commit comments