Skip to content

Commit 550c190

Browse files
author
Alan Christie
committed
fix: Fixes ingress and adds parameters-local
1 parent 5ed4e16 commit 550c190

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

parameters-local.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
3+
# A set of parameters for local deployment (Rancher Desktop and the like).
4+
# You will need to define: -
5+
#
6+
# - IM_DEV_UI_CLIENT_SECRET
7+
#
8+
# This can also be tuned with some extra material via the following
9+
# environment variables: -
10+
#
11+
# - IM_DEV_UI_IMAGE_TAG
12+
# - IM_DEV_AUTH_HOSTNAME
13+
14+
maui_kubeconfig: "{{ lookup('env', 'KUBECONFIG') }}"
15+
16+
keycloak_server_url: "https://{{ lookup('env', 'IM_DEV_AUTH_HOSTNAME') | default('squonk.informaticsmatters.org', True) }}/auth"
17+
18+
maui_hostname: squonk2
19+
maui_data_manager_api_address: squonk2/data-manager-api
20+
maui_account_server_api_address: squonk2/account-server-api
21+
22+
maui_keycloak_client_id: data-manager-ui-local
23+
maui_keycloak_client_secret: "{{ lookup('env', 'IM_DEV_UI_CLIENT_SECRET') | default('SetMe', True) }}"
24+
25+
maui_namespace: im-data-manager-ui
26+
maui_image_tag: "{{ lookup('env', 'IM_DEV_UI_IMAGE_TAG') | default('2.7.0', True)}}"
27+
maui_disable_ssl_cert_check: yes

roles/mini-apps-ui/templates/ingress.yaml.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ metadata:
55
name: mini-apps-ui
66
namespace: {{ maui_namespace }}
77
annotations:
8-
kubernetes.io/ingress.class: "nginx"
98
cert-manager.io/cluster-issuer: "letsencrypt-nginx-{{ maui_cert_issuer|lower }}"
109
nginx.ingress.kubernetes.io/proxy-body-size: "{{ maui_ingress_proxy_body_size }}"
1110
nginx.ingress.kubernetes.io/proxy-buffer-size: "128k"

0 commit comments

Comments
 (0)