Skip to content

Commit

Permalink
fix: update ingress config by adding the local dns for admin gui, seq…
Browse files Browse the repository at this point in the history
… and grafana
  • Loading branch information
rajadoui committed Jan 27, 2025
1 parent 6cfe912 commit 1b62386
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charts/armonik/charts/ingress/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,11 @@ ingress:
location = /admin/en {
rewrite ^ $scheme://$http_host/admin/en/;
}
set $admin_app_upstream http://172.20.206.87:1080;
set $admin_app_upstream http://admin-gui.armonik.svc.cluster.local:1080;
location /admin/ {
proxy_pass $admin_app_upstream$uri$is_args$args;
}
set $armonik_upstream grpc://172.20.171.66:5001;
set $armonik_upstream grpc://control-plane.armonik.svc.cluster.local:5001;
location ~* ^/armonik\. {
grpc_pass $armonik_upstream;
Expand All @@ -184,7 +184,7 @@ ingress:
set $seq_upstream http://172.20.29.109:8080;
set $seq_upstream http://seq.armonik.svc.cluster.local:8080;
location = /seq {
rewrite ^ $scheme://$http_host/seq/ permanent;
}
Expand All @@ -197,7 +197,7 @@ ingress:
sub_filter_once on;
proxy_hide_header content-security-policy;
}
set $grafana_upstream http://172.20.95.111:3000;
set $grafana_upstream http://grafana.armonik.svc.cluster.local:3000;
location = /grafana {
rewrite ^ $scheme://$http_host/grafana/ permanent;
}
Expand Down
1 change: 1 addition & 0 deletions charts/armonik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ mongodb:
enabled: true
architecture: "replicaset"
fullnameOverride: "mongodb"
replicaCount: 1
useStatefulSet: true
persistence:
enabled: false
Expand Down

0 comments on commit 1b62386

Please sign in to comment.