This commit is contained in:
Linus Vogel 2026-06-27 17:08:03 +02:00
parent f419276139
commit ce3906f012
5 changed files with 31 additions and 0 deletions

View File

@ -38,3 +38,18 @@ spec:
destination:
server: https://kubernetes.default.svc
namespace: istio-system
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: network_policies
namespace: argocd
spec:
project: default
source:
repoURL: https://gitea.linvogel.ch/linus/gitops.git
targetRevision: HEAD
path: network_policies
destination:
server: https://kubernetes.default.svc
namespace: istio-system

View File

View File

View File

@ -0,0 +1,16 @@
apiVersion: networking.istio.io/v1
kind: Gateway
metadata:
name: apps-gateway
namespace: istio-system
spec:
selector:
app: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "*.apps.linvogel.ch"
- "*.apps.linvogel.internal"

View File