We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0329744 commit 74ce051Copy full SHA for 74ce051
CHANGELOG.md
@@ -2,6 +2,11 @@
2
3
## Release 131.0.5 (in development)
4
5
+### Bug Fixes
6
+
7
+- Do not deploy Loki ingress when Loki addon is not enabled
8
+ (PR[#4725](https://github.com/scality/metalk8s/pull/4725))
9
10
## Release 131.0.4
11
12
## 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