Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions docs/clearwater.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ git clone -b master https://github.com/Orange-OpenSource/opnfv-cloudify-clearwat
Upload **blueprint** on the orchestrator :
```
cd opnfv-cloudify-clearwater
cfy blueprints upload -b clearwater -p openstack-blueprint.yaml
# cfy blueprints upload -b clearwater -p openstack-blueprint.yaml
cfy blueprints upload -b clearwater openstack-blueprint.yaml
```

### Create and launch deployment
Expand Down Expand Up @@ -60,12 +61,14 @@ Bellow an example of input.yaml file configurations:

Once the completed input file, we must **create** the deployment on orchestrator :
```
cfy deployments create -b clearwater -d clearwater-test --inputs inputs/inputs.yaml
# cfy deployments create -b clearwater -d clearwater-test --inputs inputs/inputs.yaml
cfy deployments create -b clearwater clearwater-test --inputs inputs/inputs.yaml
```

Then, you have to **launch** clearwater deployment :
```
cfy executions start -w install -d clearwater-test
# cfy executions start -w install -d clearwater-test
cfy executions start install -d clearwater-test
```

During the deployment many **logs** appears on console :
Expand Down Expand Up @@ -125,15 +128,17 @@ Before **scale** your deployment, create input file with this parameters :
vi scale.yaml
```
```
node_id: sprout
# node_id: sprout
scalable_entity_name: sprout
delta: 1
scale_compute: true
```
This parameters will create one sprout VM and add it on sprout cluster.

Then launch **scale** with this command :
```
cfy executions start -w scale -d clearwater-test -p scale.yaml
# cfy executions start -w scale -d clearwater-test -p scale.yaml
cfy executions start scale -d clearwater-test -p scale.yaml
```


Expand Down