We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac45cb commit ef17387Copy full SHA for ef17387
deployment/deployment.yaml
@@ -44,4 +44,4 @@ spec:
44
image: alexohneander/cert-fixer:latest
45
env:
46
- name: INGRESS_SERVICE
47
- value: "ingress-contour-envoy.projectcontour.svc.cluster.local"
+ value: "ingress-nginx-controller.ingress-nginx.svc.cluster.local"
src/main.rs
@@ -83,7 +83,7 @@ async fn get_hostnames_from_ingresses(client: Client) -> Result<Vec<String>> {
83
84
85
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") {
+ let ingress_controller: String = match std::env::var("INGRESS_SERVICE") {
87
Ok(val) => val,
88
Err(_) => "ingress-nginx-controller.ingress-nginx.svc.cluster.local".to_string(),
89
};
0 commit comments