Fix router selector (#495)

This commit is contained in:
Erèbe - Romain Gerard
2021-11-17 17:16:52 +01:00
committed by GitHub
parent cf58cfcfd2
commit de9ef120de
3 changed files with 3 additions and 3 deletions

View File

@@ -205,7 +205,7 @@ impl Service for Router {
}
fn selector(&self) -> String {
"app=nginx-ingress".to_string()
format!("routerId={}", self.id)
}
fn engine_error_scope(&self) -> EngineErrorScope {

View File

@@ -220,7 +220,7 @@ impl Service for Router {
}
fn selector(&self) -> String {
"app=nginx-ingress".to_string()
format!("routerId={}", self.id)
}
fn engine_error_scope(&self) -> EngineErrorScope {

View File

@@ -169,7 +169,7 @@ impl Service for Router {
}
fn selector(&self) -> String {
"app=nginx-ingress".to_string()
format!("routerId={}", self.id)
}
fn engine_error_scope(&self) -> EngineErrorScope {