Teststand
Some checks failed
Deploy KubeViz / deploy (push) Has been cancelled

This commit is contained in:
2026-03-01 07:40:49 +01:00
commit 1a0bbe9dfd
58 changed files with 7756 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
apiVersion: v1
kind Service
metadata:
name: broken
namespace: partial

View File

@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: partial-ok
namespace: partial
spec:
replicas: 1
selector:
matchLabels:
app: partial-ok
template:
metadata:
labels:
app: partial-ok
spec:
containers:
- name: app
image: nginx:1.27
ports:
- containerPort: 8080

View File

@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: partial-ok
namespace: partial
spec:
selector:
app: partial-ok
ports:
- port: 80
targetPort: 8080