autocommit

This commit is contained in:
Linus Vogel 2026-07-19 22:24:36 +02:00
parent 4b0543b1c0
commit 69e9dab1b1
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: demo-service
namespace: demo
spec:
ports:
- name: http
port: 80
protocol: TCP
targetPort: 80
selector:
app.kubernetes.io/instance: demo
app.kubernetes.io/name: demo
type: ClusterIP

View File

@ -0,0 +1,17 @@
apiVersion: networking.istio.io/v1
kind: VirtualService
metadata:
name: demo
namespace: demo
spec:
hosts:
- "demo.apps.linvogel.internal"
gateways:
- istio-ingress/istio-gateway
http:
- name: "demo-route"
route:
- destination:
host: demo.demo.svc.cluster.local
port:
number: 80