This commit is contained in:
2024-11-08 00:42:33 +01:00
commit c0c0526cde
4 changed files with 47 additions and 0 deletions

20
ingress.yaml Normal file
View File

@@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: external-ingress
namespace: external-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
argocd.argoproj.io/sync-wave: "0"
spec:
rules:
- host: gitea.atlas.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: gitea
port:
number: 80

11
kustomization copy.yaml Normal file
View File

@@ -0,0 +1,11 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- renovate
- gitea
- pihole
generatorOptions:
annotations:
argocd.argoproj.io/sync-wave: "0"

10
kustomization.yaml Normal file
View File

@@ -0,0 +1,10 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- namespace.yaml
- ingress.yaml
generatorOptions:
annotations:
argocd.argoproj.io/sync-wave: "0"

6
namespace.yaml Normal file
View File

@@ -0,0 +1,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: external-ingress
annotations:
argocd.argoproj.io/sync-wave: "0"