You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/man/man1/oc-create-service-nodeport.1
+4
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,10 @@ Create a nodeport service with the specified name.
29
29
\fB\-\-no\-headers\fP=false
30
30
When using the default or custom\-column output format, don't print headers.
31
31
32
+
.PP
33
+
\fB\-\-node\-port\fP=0
34
+
Port used to expose the service on each node in a cluster.
35
+
32
36
.PP
33
37
\fB\-o\fP, \fB\-\-output\fP=""
34
38
Output format. One of: json|yaml|wide|name|custom\-columns=...|custom\-columns\-file=...|go\-template=...|go\-template\-file=...|jsonpath=...|jsonpath\-file=... See custom columns [
Copy file name to clipboardexpand all lines: docs/man/man1/openshift-cli-create-service-nodeport.1
+4
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,10 @@ Create a nodeport service with the specified name.
29
29
\fB\-\-no\-headers\fP=false
30
30
When using the default or custom\-column output format, don't print headers.
31
31
32
+
.PP
33
+
\fB\-\-node\-port\fP=0
34
+
Port used to expose the service on each node in a cluster.
35
+
32
36
.PP
33
37
\fB\-o\fP, \fB\-\-output\fP=""
34
38
Output format. One of: json|yaml|wide|name|custom\-columns=...|custom\-columns\-file=...|go\-template=...|go\-template\-file=...|jsonpath=...|jsonpath\-file=... See custom columns [
Copy file name to clipboardexpand all lines: docs/man/man1/openshift-kube-create-service-nodeport.1
+4
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,10 @@ Create a nodeport service with the specified name.
29
29
\fB\-\-no\-headers\fP=false
30
30
When using the default or custom\-column output format, don't print headers.
31
31
32
+
.PP
33
+
\fB\-\-node\-port\fP=0
34
+
Port used to expose the service on each node in a cluster.
35
+
32
36
.PP
33
37
\fB\-o\fP, \fB\-\-output\fP=""
34
38
Output format. One of: json|yaml|wide|name|custom\-columns=...|custom\-columns\-file=...|go\-template=...|go\-template\-file=...|jsonpath=...|jsonpath\-file=... See custom columns [
# This test validates the 'create service nodeport' command and its "--node-port" and "--tcp" options
15
+
os::cmd::expect_success_and_text 'oc create service nodeport mynodeport --tcp=8080:7777 --node-port=30000''service "mynodeport" created'
16
+
os::cmd::expect_failure_and_text 'oc create service nodeport mynodeport --tcp=8080:7777 --node-port=30000''provided port is already allocated'
17
+
os::cmd::expect_failure_and_text 'oc create service nodeport mynodeport --tcp=8080:7777 --node-port=300''provided port is not in the valid range. The range of valid ports is 30000-32767'
18
+
os::cmd::expect_success_and_text 'oc describe service mynodeport''NodePort\:.*30000'
19
+
os::cmd::expect_success_and_text 'oc describe service mynodeport''NodePort\:.*8080-7777'
0 commit comments