We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3994db3 + 5a7415b commit 97c3aeaCopy full SHA for 97c3aea
CHANGELOG.md
@@ -16,6 +16,11 @@
16
17
## Release 131.0.5 (in development)
18
19
+### Bug Fixes
20
+
21
+- Do not deploy Loki ingress when Loki addon is not enabled
22
+ (PR[#4725](https://github.com/scality/metalk8s/pull/4725))
23
24
## Release 131.0.4
25
26
## Release 131.0.3
salt/metalk8s/addons/ui/deployed/ingress.sls
@@ -87,13 +87,15 @@ spec:
87
name: alertmanager-api
88
port:
89
number: 9093
90
+ {%- if pillar.addons.loki.enabled %}
91
- path: /api/loki(/|$)(.*)
92
pathType: Prefix
93
backend:
94
service:
95
name: loki-api
96
97
number: 3100
98
+ {%- endif %}
99
---
100
apiVersion: networking.k8s.io/v1
101
kind: Ingress
0 commit comments