You can update a deployment policy using the CLI tool, REST API or the PPaaS Console as shown below:
Updating a deployment policy via the CLI
Overview
CLI command | update-deployment-policy |
Description | Update a deployment policy. |
Command format | update-deployment-policy -p <JSON_FILE_PATH> The path to the JSON file that defines the deployment policy needs to be defined as the |
Parameter definition
Short option | Long option | Description | Required | Example value |
---|---|---|---|---|
-p | --resource-path | Folder path of the JSON file where the deployment policy definition is defined. | Yes | <PRIVATE_PAAS_CARTRIDGES>/wso2am/1.9.0/samples/ |
Example
Update the deployment policy defined in the <PRIVATE_PAAS_CARTRIDGES>/wso2am/1.9.0/samples
file./deployment-policies/mock/deployment-policy-1.json
update-deployment-policy -p <PRIVATE_PAAS_CARTRIDGES>/wso2am/1.9.0/samples/deployment-policies/mock/deployment-policy-1.json
Sample output
Deployment policy updated successfully: [deployment-policy-id] deployment-policy-1
Updating a deployment policy via the REST API
Overview
Description | Update a deployment policy definition. |
Resource Path |
|
HTTP Method | PUT |
Request/Response Format |
|
Command format | curl -X PUT -H "Content-Type: application/json" -d @'<JSON_PAYLOAD>' -k -v -u <USERNAME>:<PASSWORD> https://<PRIVATE_PAAS_HOST>:<PRIVATE_PAAS_HTTPS_PORT>/api/deploymentPolicies
|
Example
Update the deployment policy defined in the <PRIVATE_PAAS_CARTRIDGES>/wso2am/1.9.0/samples/deployment-policies/mock/deployment-policy-1.json
file.
cd <PRIVATE_PAAS_CARTRIDGES>/wso2am/1.9.0/samples curl -X PUT -H "Content-Type: application/json" -d @'deployment-policies/mock/deployment-policy-1.json' -k -v -u admin:admin https://localhost:9443/api/deploymentPolicies
Sample output
> PUT /api/deploymentPolicies HTTP/1.1 > Host: localhost:9443 > Authorization: Basic YWRtaW46YWRtaW4= > User-Agent: curl/7.43.0 > Accept: */* > Content-Type: application/json > Content-Length: 432 > < HTTP/1.1 200 OK < Date: Mon, 05 Oct 2015 05:02:55 GMT < Content-Type: application/json < Transfer-Encoding: chunked < Server: WSO2 Carbon Server < {"status":"success","message":"Deployment policy updated successfully: [deployment-policy-id] deployment-policy-1"}
You will come across the following HTTP status codes while updating a deployment policy:
HTTP status code | 200, 500, 409 |
Location header URL |
|
Updating a deployment policy via the PPaaS Console
Updating a deployment policy via the UI editor
Follow the instructions below to update a deployment policy:
- Click Configurations on the home page.
- Click Deployment Policies.
- Hover your mouse pointer over the deployment policy definition you wish to update for the Edit button to appear and Click Edit.
- Update the deployment policy definition. For property definitions, see the Deployment Policy Resource Definition.
- Click SAVE.
Updating a deployment policy via the JSON editor
Follow the instructions below to update a deployment policy:
- Click Configurations on the home page.
- Click Deployment Policies.
- Hover your mouse pointer over the deployment policy definition you wish to update for the Edit button to appear and click EDIT.
- Click on the editor control to switch to the JSON editor. The JSON code format to update a deployment policy will appear.
- Optionally, check the Auto correct with schema option to ensure that you do not accidentally delete any mandatory fields from the deployment policy definition JSON code.
- Update the deployment policy definition using JSON. For property definitions, see the Deployment Policy Resource Definition.
- Click SAVE.
Sample deployment policy JSON
{ "id": "deployment-policy-1", "networkPartitions": [ { "id": "network-partition-mock", "partitionAlgo": "round-robin", "partitions": [ { "id": "partition-1", "partitionMax": 2 } ] } ] }