kompose/script/test/fixtures/expose/output-k8s.yaml
Charlie Drage 55b077ab04
cleanup: removes uneeded annotation when not using network policy (#1884)
#### What type of PR is this?

<!--
Add one of the following kinds:
/kind bug
/kind documentation
/kind feature
-->

/kind cleanup

#### What this PR does / why we need it:

Removes the network policy annotation which is not needed (we are not
generating network policy)

#### Which issue(s) this PR fixes:
<!--
*Automatically closes linked issue when PR is merged.
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
-->
Fixes https://github.com/kubernetes/kompose/issues/1759

#### Special notes for your reviewer:
2024-06-02 20:46:57 +02:00

117 lines
2.0 KiB
YAML

---
apiVersion: v1
kind: Service
metadata:
labels:
io.kompose.service: redis
name: redis
spec:
ports:
- name: "6379"
port: 6379
targetPort: 6379
selector:
io.kompose.service: redis
---
apiVersion: v1
kind: Service
metadata:
labels:
io.kompose.service: web
name: web
spec:
ports:
- name: "5000"
port: 5000
targetPort: 5000
selector:
io.kompose.service: web
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
io.kompose.service: redis
name: redis
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: redis
template:
metadata:
labels:
io.kompose.service: redis
spec:
containers:
- image: redis:3.0
name: redis
ports:
- containerPort: 6379
protocol: TCP
restartPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
io.kompose.service: web
name: web
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: web
template:
metadata:
labels:
io.kompose.service: web
spec:
containers:
- image: tuna/docker-counter23
name: web
ports:
- containerPort: 5000
protocol: TCP
restartPolicy: Always
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
labels:
io.kompose.service: web
name: web
spec:
ingressClassName: nginx
rules:
- host: batman.example.com
http:
paths:
- backend:
service:
name: web
port:
number: 5000
path: /dev
pathType: Prefix
- host: batwoman.example.com
http:
paths:
- backend:
service:
name: web
port:
number: 5000
path: /
pathType: Prefix
tls:
- hosts:
- batman.example.com
- batwoman.example.com
secretName: test-secret