fix(k8s): allow GitLab to access minio for artifact storage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-03-02 00:04:06 +01:00
parent 3f2306010b
commit bbae6b6450

View File

@@ -50,7 +50,7 @@ spec:
- protocol: TCP
port: 6379
---
# Minio: accepts connections from foxhunt app pods (S3 API)
# Minio: accepts connections from foxhunt app pods + GitLab (S3 API)
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
@@ -69,6 +69,9 @@ spec:
- key: app.kubernetes.io/part-of
operator: In
values: ["foxhunt"]
- podSelector:
matchLabels:
release: gitlab
ports:
- protocol: TCP
port: 9000