Skip to content
Snippets Groups Projects
Verified Commit bad7efcd authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(mastodon): Fix broken ingress rule

This patch fixes the mastodon ingress rule, that was "corrected" to
follow the official docs, but uses the `exact` match rule, instead of
the `Prefix` rule, resulting in breaking the mastodon webinterface while
fixing other clients.
parent b8ddebdf
No related branches found
No related tags found
No related merge requests found
Pipeline #16423 passed
...@@ -11,7 +11,7 @@ sources: ...@@ -11,7 +11,7 @@ sources:
- https://git.shivering-isles.com/shivering-isles/infrastructure-gitops/-/tree/main/charts/mastodon - https://git.shivering-isles.com/shivering-isles/infrastructure-gitops/-/tree/main/charts/mastodon
type: application type: application
version: 4.0.1 version: 4.0.2
# renovate: image=docker.io/tootsuite/mastodon # renovate: image=docker.io/tootsuite/mastodon
appVersion: v3.5.5 appVersion: v3.5.5
......
...@@ -64,7 +64,7 @@ spec: ...@@ -64,7 +64,7 @@ spec:
servicePort: {{ $streamingPort }} servicePort: {{ $streamingPort }}
{{- end }} {{- end }}
{{- if or ($.Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress") (not ($.Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress")) }} {{- if or ($.Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress") (not ($.Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress")) }}
pathType: Exact pathType: Prefix
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- end }} {{- end }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment