minio, velero y tal

This commit is contained in:
2025-08-27 01:46:41 +02:00
parent 4265121e6e
commit 7e429dd17a
26 changed files with 993 additions and 0 deletions

9
minio/README-UPDATE.md Normal file
View File

@@ -0,0 +1,9 @@
Servicios actualizados (site-a y site-b):
- Selector reducido a `app: minio`
- targetPort numérico 9000/9001
Aplica con:
kubectl apply -f site-a/service.yaml
kubectl apply -f site-b/service.yaml
Luego verifica:
kubectl -n minio-site-a get endpoints minio -o wide
kubectl -n minio-site-b get endpoints minio -o wide

18
minio/site-a/service.yaml Normal file
View File

@@ -0,0 +1,18 @@
apiVersion: v1
kind: Service
metadata:
name: minio
namespace: minio-site-a
spec:
type: ClusterIP
selector:
app: minio
ports:
- name: api
port: 9000
targetPort: 9000
protocol: TCP
- name: console
port: 9001
targetPort: 9001
protocol: TCP

18
minio/site-b/service.yaml Normal file
View File

@@ -0,0 +1,18 @@
apiVersion: v1
kind: Service
metadata:
name: minio
namespace: minio-site-b
spec:
type: ClusterIP
selector:
app: minio
ports:
- name: api
port: 9000
targetPort: 9000
protocol: TCP
- name: console
port: 9001
targetPort: 9001
protocol: TCP