Commit 1db0265c authored by Hardik Juneja's avatar Hardik Juneja

update schemas for software erp5

parent ac19d02c
...@@ -8,6 +8,14 @@ ...@@ -8,6 +8,14 @@
}, { }, {
"description": "Start allocating ports at this value, going upward" "description": "Start allocating ports at this value, going upward"
}] }]
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
} }
} }
} }
...@@ -35,6 +35,34 @@ ...@@ -35,6 +35,34 @@
"description": "Password of the initial/rescue user", "description": "Password of the initial/rescue user",
"type": "string" "type": "string"
}, },
"monitor-port": {
"title": "Monitor Port",
"description": "Allow to manually change the port on wich the apache server running monitoring interface is listening. The default value for the webrunner is different from the default value of the standalone stack-monitor server (default 9684)",
"type": "integer",
"minimum": 9683,
"exclusiveMinimum": true
},
"monitor-interface-url": {
"title": "Monitor Web Interface URL",
"description": "Give Url of HTML web interface that will be used to render this monitor instance.",
"type": "string",
"format": "uri",
"default": "https://monitor.app.officejs.com"
},
"monitor-cors-domains": {
"title": "Monitor CORS domains",
"description": "List of cors domains separated with space. Needed for ajax query on this monitor instance from a different domain.",
"type": "string",
"default": "monitor.app.officejs.com"
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
},
"developer-list": { "developer-list": {
"description": "List of logins which should get the Developper role (required to modify portal_components' content), defaulting to inituser-login's value", "description": "List of logins which should get the Developper role (required to modify portal_components' content), defaulting to inituser-login's value",
"items": { "items": {
...@@ -133,6 +161,14 @@ ...@@ -133,6 +161,14 @@
"description": "Start allocating ports at this value. Useful if one needs to make several partitions share the same port range (ie, several partitions bound to a single address)", "description": "Start allocating ports at this value. Useful if one needs to make several partitions share the same port range (ie, several partitions bound to a single address)",
"default": 2200 "default": 2200
}] }]
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
} }
}, },
"type": "object" "type": "object"
...@@ -236,6 +272,14 @@ ...@@ -236,6 +272,14 @@
}, },
"additionalProperties": {"type": "string"}, "additionalProperties": {"type": "string"},
"type": "object" "type": "object"
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
} }
}, },
"additionalProperties": {"type": "string"}, "additionalProperties": {"type": "string"},
......
...@@ -72,6 +72,22 @@ ...@@ -72,6 +72,22 @@
"description": "Jupyter notebook web UI access information", "description": "Jupyter notebook web UI access information",
"pattern": "^https://", "pattern": "^https://",
"type": "string" "type": "string"
},
"monitor-setup-url": {
"description": "Url to access the monitoring interface of your instance. Use this url to get the recovery code needed to set up your runner",
"type": "string"
},
"monitor-base-url": {
"description": "Base url for monitor",
"type": "string"
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
} }
}, },
"patternProperties": { "patternProperties": {
......
...@@ -13,6 +13,14 @@ ...@@ -13,6 +13,14 @@
"description": "If 0 use disk storage, otherwise use ram and limit data size to this many megabytes", "description": "If 0 use disk storage, otherwise use ram and limit data size to this many megabytes",
"default": 0, "default": 0,
"type": "integer" "type": "integer"
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
} }
} }
} }
...@@ -122,6 +122,14 @@ ...@@ -122,6 +122,14 @@
} }
}, },
"type": "object" "type": "object"
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
} }
} }
} }
...@@ -17,6 +17,14 @@ ...@@ -17,6 +17,14 @@
"description": "FileStorage file path, '%(zodb)s' occurrences are replaced with the path to partition's srv/zodb directory, and %(name)s with the export id", "description": "FileStorage file path, '%(zodb)s' occurrences are replaced with the path to partition's srv/zodb directory, and %(name)s with the export id",
"default": "%(zodb)s/%(name)s.fs", "default": "%(zodb)s/%(name)s.fs",
"type": "string" "type": "string"
},
"monitor-password": {
"description": "Password to access the monitor",
"type": "string"
},
"monitor-user": {
"description": "User to access the monitor",
"type": "string"
} }
}, },
"type": "object" "type": "object"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment