13 lines
221 B
YAML
13 lines
221 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: web-service
|
|
namespace: my-app-namespace
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: web-app
|
|
ports:
|
|
- port: 80
|
|
targetPort: 3000
|
|
nodePort: 30007 |