You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
462 B
16 lines
462 B
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-service
|
|
namespace: web-test
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: nginx-deployment
|
|
ports:
|
|
# By default and for convenience, the `targetPort` is set to the same value as the `port` field.
|
|
- port: 80
|
|
targetPort: 80
|
|
# Optional field
|
|
# By default and for convenience, the Kubernetes control plane will allocate a port from a range (default: 30000-32767)
|
|
nodePort: 30007
|