From bf0db283e1c71ee4058b581d190b1f132acc084f Mon Sep 17 00:00:00 2001 From: Alexander Rogov Date: Mon, 13 Jul 2026 01:02:48 +0300 Subject: [PATCH] fix: use ClusterIP + Endpoints instead of ExternalName for minio proxy --- manifests/mastodon/svc-minio.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/manifests/mastodon/svc-minio.yaml b/manifests/mastodon/svc-minio.yaml index 662d19f..4d14143 100644 --- a/manifests/mastodon/svc-minio.yaml +++ b/manifests/mastodon/svc-minio.yaml @@ -4,7 +4,17 @@ metadata: name: minio-proxy namespace: mastodon spec: - type: ExternalName - externalName: minio.minio.svc.cluster.local ports: - port: 80 + targetPort: 9000 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: minio-proxy + namespace: mastodon +subsets: + - addresses: + - ip: 10.96.209.83 + ports: + - port: 9000