16 lines
357 B
YAML
16 lines
357 B
YAML
---
|
|
# Service for exposing Laravel
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: laravelio-service # logical name of the service, which will also become the DNS name of the service when it is created.
|
|
labels:
|
|
app: laravelio
|
|
tier: app
|
|
spec:
|
|
type: LoadBalancer
|
|
selector:
|
|
app: laravelio
|
|
ports:
|
|
- port: 30000
|
|
targetPort: 8000
|