Skip to content

Commit ef17387

Browse files
committed
Update default Ingress Controller
1 parent 8ac45cb commit ef17387

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deployment/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ spec:
4444
image: alexohneander/cert-fixer:latest
4545
env:
4646
- name: INGRESS_SERVICE
47-
value: "ingress-contour-envoy.projectcontour.svc.cluster.local"
47+
value: "ingress-nginx-controller.ingress-nginx.svc.cluster.local"

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ async fn get_hostnames_from_ingresses(client: Client) -> Result<Vec<String>> {
8383

8484

8585
async fn add_hostnames_to_config_map(client: Client, hostnames: Vec<String>) -> Result<String> {
86-
let ingress_controller: String = match std::env::var("ÌNGRESS_CONTROLLER_SERVICE") {
86+
let ingress_controller: String = match std::env::var("INGRESS_SERVICE") {
8787
Ok(val) => val,
8888
Err(_) => "ingress-nginx-controller.ingress-nginx.svc.cluster.local".to_string(),
8989
};

0 commit comments

Comments
 (0)