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:
Andrey Pavlov
2017-01-27 12:48:57 +03:00
parent b006719dd5
commit 714fff4f79

View File

@@ -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"
}