Skip to content

Commit 426eeaa

Browse files
authored
fix(yaml): Fix '==' typo in exporter args (#617)
Signed-off-by: Feng Ye <yefeng@smartx.com>
1 parent 4278a9f commit 426eeaa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

deploy/ndm-operator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ spec:
688688
args:
689689
- "start"
690690
- "--mode=cluster"
691-
- "--port==$(METRICS_LISTEN_PORT)"
691+
- "--port=$(METRICS_LISTEN_PORT)"
692692
- "--metrics=/metrics"
693693
ports:
694694
- containerPort: 9100
@@ -750,7 +750,7 @@ spec:
750750
args:
751751
- "start"
752752
- "--mode=node"
753-
- "--port==$(METRICS_LISTEN_PORT)"
753+
- "--port=$(METRICS_LISTEN_PORT)"
754754
- "--metrics=/metrics"
755755
ports:
756756
- containerPort: 9101

deploy/yamls/ndm-cluster-exporter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
args:
2828
- "start"
2929
- "--mode=cluster"
30-
- "--port==$(METRICS_LISTEN_PORT)"
30+
- "--port=$(METRICS_LISTEN_PORT)"
3131
- "--metrics=/metrics"
3232
ports:
3333
- containerPort: 9100

deploy/yamls/ndm-node-exporter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
args:
2727
- "start"
2828
- "--mode=node"
29-
- "--port==$(METRICS_LISTEN_PORT)"
29+
- "--port=$(METRICS_LISTEN_PORT)"
3030
- "--metrics=/metrics"
3131
ports:
3232
- containerPort: 9101

0 commit comments

Comments
 (0)