Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] fix spring-petclinic example #1229

Merged
merged 1 commit into from Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -2,7 +2,6 @@
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: admin-server
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -14,13 +13,10 @@ spec:
targetPort: 9090
selector:
io.kompose.service: admin-server
status:
loadBalancer: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: api-gateway
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -32,13 +28,10 @@ spec:
targetPort: 8080
selector:
io.kompose.service: api-gateway
status:
loadBalancer: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: config-server
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -50,13 +43,10 @@ spec:
targetPort: 8888
selector:
io.kompose.service: config-server
status:
loadBalancer: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: customers-service
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -68,13 +58,10 @@ spec:
targetPort: 8081
selector:
io.kompose.service: customers-service
status:
loadBalancer: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: discovery-server
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -86,13 +73,10 @@ spec:
targetPort: 8761
selector:
io.kompose.service: discovery-server
status:
loadBalancer: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: vets-service
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -104,13 +88,10 @@ spec:
targetPort: 8083
selector:
io.kompose.service: vets-service
status:
loadBalancer: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: visits-service
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -122,13 +103,10 @@ spec:
targetPort: 8082
selector:
io.kompose.service: visits-service
status:
loadBalancer: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: admin-server
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -138,37 +116,26 @@ spec:
selector:
matchLabels:
io.kompose.service: admin-server
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/spring-petclinic-default: "true"
io.kompose.service: admin-server
app.kubernetes.io/part-of: spring-petclinic
spec:
containers:
- command:
- ./dockerize
- -wait=tcp://discovery-server:8761
- -timeout=60s
- --
- java
- org.springframework.boot.loader.JarLauncher
image: springcommunity/spring-petclinic-admin-server
- image: springcommunity/spring-petclinic-admin-server
name: admin-server
ports:
- containerPort: 9090
resources:
limits:
memory: "536870912"
restartPolicy: Always
status: {}
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
creationTimestamp: null
name: spring-petclinic-default
spec:
ingress:
Expand All @@ -183,7 +150,6 @@ spec:
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: api-gateway
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -193,37 +159,25 @@ spec:
selector:
matchLabels:
io.kompose.service: api-gateway
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/spring-petclinic-default: "true"
io.kompose.service: api-gateway
app.kubernetes.io/part-of: spring-petclinic
spec:
containers:
- command:
- ./dockerize
- -wait=tcp://discovery-server:8761
- -timeout=60s
- --
- java
- org.springframework.boot.loader.JarLauncher
image: springcommunity/spring-petclinic-api-gateway
- image: springcommunity/spring-petclinic-api-gateway
name: api-gateway
ports:
- containerPort: 8080
resources:
limits:
memory: "536870912"
restartPolicy: Always
status: {}
memory: "512Mi"
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: config-server
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -233,10 +187,8 @@ spec:
selector:
matchLabels:
io.kompose.service: config-server
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/spring-petclinic-default: "true"
io.kompose.service: config-server
Expand All @@ -251,12 +203,10 @@ spec:
limits:
memory: "536870912"
restartPolicy: Always
status: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: customers-service
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -266,37 +216,26 @@ spec:
selector:
matchLabels:
io.kompose.service: customers-service
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/spring-petclinic-default: "true"
io.kompose.service: customers-service
app.kubernetes.io/part-of: spring-petclinic
spec:
containers:
- command:
- ./dockerize
- -wait=tcp://discovery-server:8761
- -timeout=60s
- --
- java
- org.springframework.boot.loader.JarLauncher
image: springcommunity/spring-petclinic-customers-service
- image: springcommunity/spring-petclinic-customers-service
name: customers-service
ports:
- containerPort: 8081
resources:
limits:
memory: "536870912"
memory: "512Mi"
restartPolicy: Always
status: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: discovery-server
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -306,37 +245,26 @@ spec:
selector:
matchLabels:
io.kompose.service: discovery-server
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/spring-petclinic-default: "true"
io.kompose.service: discovery-server
app.kubernetes.io/part-of: spring-petclinic
spec:
containers:
- command:
- ./dockerize
- -wait=tcp://config-server:8888
- -timeout=60s
- --
- java
- org.springframework.boot.loader.JarLauncher
image: springcommunity/spring-petclinic-discovery-server
- image: springcommunity/spring-petclinic-discovery-server
name: discovery-server
ports:
- containerPort: 8761
resources:
limits:
memory: "536870912"
memory: "512Mi"
restartPolicy: Always
status: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: vets-service
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -346,37 +274,26 @@ spec:
selector:
matchLabels:
io.kompose.service: vets-service
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/spring-petclinic-default: "true"
io.kompose.service: vets-service
app.kubernetes.io/part-of: spring-petclinic
spec:
containers:
- command:
- ./dockerize
- -wait=tcp://discovery-server:8761
- -timeout=60s
- --
- java
- org.springframework.boot.loader.JarLauncher
image: springcommunity/spring-petclinic-vets-service
- image: springcommunity/spring-petclinic-vets-service
name: vets-service
ports:
- containerPort: 8083
resources:
limits:
memory: "536870912"
memory: "512Mi"
restartPolicy: Always
status: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: visits-service
app.kubernetes.io/part-of: spring-petclinic
Expand All @@ -386,29 +303,19 @@ spec:
selector:
matchLabels:
io.kompose.service: visits-service
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/spring-petclinic-default: "true"
io.kompose.service: visits-service
app.kubernetes.io/part-of: spring-petclinic
spec:
containers:
- command:
- ./dockerize
- -wait=tcp://discovery-server:8761
- -timeout=60s
- --
- java
- org.springframework.boot.loader.JarLauncher
image: springcommunity/spring-petclinic-visits-service
- image: springcommunity/spring-petclinic-visits-service
name: visits-service
ports:
- containerPort: 8082
resources:
limits:
memory: "536870912"
memory: "512Mi"
restartPolicy: Always
status: {}