14 lines
201 B
YAML
14 lines
201 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: web
|
|
namespace: my-app
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: web
|
|
ports:
|
|
- port: 80
|
|
targetPort: 5000
|
|
nodePort: 30080
|