Remove NodePort validation
NodePort port range can be changed on apiserver start. Operator should care about proper configuration. Change-Id: I56bc33be0e3894c8b311be251a078a1578001f34
This commit is contained in:
@@ -134,12 +134,6 @@ PORT_SCHEMA = {
|
||||
"maximum": 65535
|
||||
}
|
||||
|
||||
NODE_PORT_SCHEMA = {
|
||||
"type": "integer",
|
||||
"minimum": 30000,
|
||||
"maximum": 32767
|
||||
}
|
||||
|
||||
PROBE_SCHEMA_HTTP = {
|
||||
"type": "object",
|
||||
"additionalProperties": False,
|
||||
@@ -199,7 +193,7 @@ SERVICE_SCHEMA = {
|
||||
"required": ["cont"],
|
||||
"properties": {
|
||||
"cont": PORT_SCHEMA,
|
||||
'node': NODE_PORT_SCHEMA,
|
||||
'node': PORT_SCHEMA,
|
||||
"ingress": {
|
||||
"type": "string"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user