20 lines
362 B
YAML
20 lines
362 B
YAML
|
|
---
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Service
|
||
|
|
metadata:
|
||
|
|
name: blorp-web
|
||
|
|
namespace: blorp-application
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/name: blorp
|
||
|
|
app.kubernetes.io/component: web
|
||
|
|
spec:
|
||
|
|
type: ClusterIP
|
||
|
|
ports:
|
||
|
|
- port: 80
|
||
|
|
targetPort: 80
|
||
|
|
protocol: TCP
|
||
|
|
name: http
|
||
|
|
selector:
|
||
|
|
app.kubernetes.io/name: blorp
|
||
|
|
app.kubernetes.io/component: web
|