From e0965b1edec96b7f12e1a24d6ad944c014fe8930 Mon Sep 17 00:00:00 2001 From: Alexander Rogov Date: Mon, 13 Jul 2026 00:59:26 +0300 Subject: [PATCH] fix: add ExternalName service for cross-namespace minio ingress --- manifests/mastodon/ingress-minio.yaml | 2 +- manifests/mastodon/svc-minio.yaml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 manifests/mastodon/svc-minio.yaml diff --git a/manifests/mastodon/ingress-minio.yaml b/manifests/mastodon/ingress-minio.yaml index a6699bc..9644809 100644 --- a/manifests/mastodon/ingress-minio.yaml +++ b/manifests/mastodon/ingress-minio.yaml @@ -22,6 +22,6 @@ spec: pathType: Prefix backend: service: - name: minio + name: minio-proxy port: number: 80 diff --git a/manifests/mastodon/svc-minio.yaml b/manifests/mastodon/svc-minio.yaml new file mode 100644 index 0000000..662d19f --- /dev/null +++ b/manifests/mastodon/svc-minio.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Service +metadata: + name: minio-proxy + namespace: mastodon +spec: + type: ExternalName + externalName: minio.minio.svc.cluster.local + ports: + - port: 80