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/creating-manifest/basic-configs.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -374,15 +374,15 @@ The *startService* flag works only for custom dockers and for dockerized templat
374
374
375
375
The service doesn’t start as it is not added to autoload in the following cases:
376
376
377
-
- the [RestartContainersByGroup](http://apidoc.devapps.jelastic.com/5.4-private/#!/api/environment.Control-method-RestartContainersByGroup) or [RestartContainer](http://apidoc.devapps.jelastic.com/5.4-private/#!/api/environment.Control-method-RestartContainer) methods are called through the API
377
+
- the [RestartNodes](https://docs.jelastic.com/api/#!/api/environment.Control-method-RestartNodes)method is called through the API
378
378
379
379
- the environment is stopped/started
380
380
381
381
- the environment is cloned
382
382
383
383
- the environment is created with *startServiceOnCreation=false*
384
384
385
-
- the Restart button is pressed at the dashboard calling the [RestartContainersByGroup](http://apidoc.devapps.jelastic.com/5.4-private/#!/api/environment.Control-method-RestartContainersByGroup) and [RestartContainer](http://apidoc.devapps.jelastic.com/5.4-private/#!/api/environment.Control-method-RestartContainer) API methods (only for managed dockerized containers)
385
+
- the Restart button is pressed at the dashboard calling the [RestartNodes](https://docs.jelastic.com/api/#!/api/environment.Control-method-RestartNodes) API method (only for managed dockerized containers)
386
386
387
387
388
388
You can force adding the service to autoload by calling the *ExecDockerRunCmd* method
@@ -394,7 +394,7 @@ The service starts if:
394
394
395
395
- the container is scaled (starts at the newly added nodes)
396
396
397
-
- the Restart button is pressed at the dashboard calling the [RestartNodesByGroup](http://apidoc.devapps.jelastic.com/5.4-private/#!/api/environment.Control-method-RestartNodesByGroup) and [RestartNodeById](http://apidoc.devapps.jelastic.com/5.4-private/#!/api/environment.Control-method-RestartNodeById) API methods (only for native Docker containers)
397
+
- the Restart button is pressed at the dashboard calling the [RestartNodes](https://docs.jelastic.com/api/#!/api/environment.Control-method-RestartNodes) API method (only for native Docker containers)
398
398
399
399
<!-- end of startService section -->
400
400
@@ -1338,7 +1338,7 @@ success: text.txt
1338
1338
```
1339
1339
@@!
1340
1340
1341
-
In the example above the text *text.txt* will be displayed in success email notification and in success window in Virtuozzo Application Platform dashboard when JPS installation will be finished. If URL **https://example.com/text.txt** has any content then that content will be displayed.
1341
+
In the example above the text *text.txt* will be displayed in success email notification and in success window in Virtuozzo Application Platform dashboard when JPS installation will be finished. If URL `https://example.com/text.txt` has any content then that content will be displayed.
1342
1342
1343
1343
The Cloud Scripting engine also supports a `${baseUrl}` placeholder. It can be used throughout the users’ customs scripts (within the <ahref="../actions/#cmd"target="_blank">*cmd*</a> and <ahref="../actions/#script"target="_blank">*script*</a> actions).
Copy file name to clipboardExpand all lines: docs/creating-manifest/events.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1718,7 +1718,7 @@ The event is executed after swapping the external domain names between two envir
1718
1718
- `result`- result code. The successful action result is '0'
1719
1719
1720
1720
### onBeforeSwapExtIps
1721
-
The event is executed before swapping the external IPs between two environments via [API](https://docs.jelastic.com/api/#!/api/environment.Binder-method-SwapExtIps) or [Jelastic CLI](https://docs.jelastic.com/cli-ip-swap).
1721
+
The event is executed before swapping the external IPs between two environments via [API](https://docs.jelastic.com/api/#!/api/environment.Binder-method-SwapExtIps) or [Virtuozzo Application Platform CLI](https://www.virtuozzo.com/application-platform-docs/cli-ip-swap/).
1722
1722
1723
1723
**Event Placeholders:**
1724
1724
@@ -1734,7 +1734,7 @@ The event is executed before swapping the external IPs between two environments
1734
1734
- `source`- “string” error description
1735
1735
1736
1736
### onAfterSwapExtIps
1737
-
The event is executed after swapping the external IPs between two environments via [API](https://docs.jelastic.com/api/#!/api/environment.Binder-method-SwapExtIps) or [Jelastic CLI](https://docs.jelastic.com/cli-ip-swap).
1737
+
The event is executed after swapping the external IPs between two environments via [API](https://docs.jelastic.com/api/#!/api/environment.Binder-method-SwapExtIps) or [Virtuozzo Application Platform CLI](https://www.virtuozzo.com/application-platform-docs/cli-ip-swap/).
Copy file name to clipboardExpand all lines: docs/creating-manifest/visual-settings.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ You can use the parameters from the following example to fetch your input data.
21
21
```yaml
22
22
settings:
23
23
prepopulate: URL
24
+
submitUnchanged: boolean
24
25
fields:
25
26
- showIf: object
26
27
type: string
@@ -45,6 +46,7 @@ settings:
45
46
{
46
47
"settings": {
47
48
"prepopulate": "URL",
49
+
"submitUnchanged": "boolean",
48
50
"fields": [
49
51
{
50
52
"showIf": "object",
@@ -74,6 +76,7 @@ settings:
74
76
where:
75
77
76
78
-`prepopulate`*[optional]* - link to a script, that will fetch default field values
79
+
-`submitUnchanged`*[optional]* - allows (*true*) or forbids (*false*) the user to submit via the add-on’s input fields the same values as were provided the previous time. Default value is *'false'*
77
80
-`fields` - array of fields that will be displayed in a custom form
78
81
-`showIf` - shows/hides field by condition
79
82
-`type`*[optional]* - input field type. The default value is *'string'*. Possible values:
0 commit comments