Add extra-resources app

This commit is contained in:
dvirlabs 2025-06-03 21:52:52 +03:00
parent 01f50c143d
commit b7f4729028
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,20 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: extra-resources
namespace: argocd
spec:
project: infra
source:
repoURL: https://gitea.dvirlabs.com/infra.git
targetRevision: HEAD
path: manifests/extra-resources
directory:
recurse: true
destination:
server: https://kubernetes.default.svc
namespace: infra
syncPolicy:
automated:
prune: true
selfHeal: true

View File

@ -0,0 +1,24 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: minio-api
namespace: infra
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
ingressClassName: traefik
rules:
- host: s3.dvirlabs.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: minio
port:
number: 9000
tls:
- hosts:
- s3.dvirlabs.com