
* Includes BOSH-release containing needed dependencies * Includes script for automatic packing the tile * Manually tested * Tile deletion leads to deletion of Murano env containing LBaaS (it is implemented as a separate job) Change-Id: If48ce2e0cbc0b7712a520c01cd8f52529ccc23b5
57 lines
1.2 KiB
Python
57 lines
1.2 KiB
Python
import json
|
|
import time
|
|
import uuid
|
|
|
|
import requests
|
|
|
|
BROKER_URL = 'http://localhost:8080/v2'
|
|
|
|
instance_id = str(uuid.uuid4())
|
|
|
|
# Create LBaaS.
|
|
requests.put(
|
|
"%s/service_instances/%s" % (BROKER_URL, instance_id),
|
|
headers={'Content-Type': 'application/json'},
|
|
data=json.dumps({'service_id': 'io.murano.apps.lbaas.HAProxy'}),
|
|
auth=('user', 'password')
|
|
)
|
|
|
|
status = ''
|
|
answer = None
|
|
|
|
while status != 'succeeded':
|
|
time.sleep(20)
|
|
|
|
# Get status of provisioning.
|
|
resp = requests.get(
|
|
"%s/service_instances/%s/last_operation" % (BROKER_URL, instance_id),
|
|
auth=('user', 'password')
|
|
)
|
|
|
|
answer = resp.json()
|
|
|
|
status = answer['state']
|
|
print ("STATUS = %s" % status)
|
|
|
|
if status == 'failed':
|
|
print ("LBaaS deployment finished with errors.")
|
|
exit(1)
|
|
|
|
|
|
# Get LBaaS URL.
|
|
resp = requests.put(
|
|
"%s/service_instances/%s/service_bindings/%s" % (
|
|
BROKER_URL, instance_id, str(uuid.uuid4())
|
|
),
|
|
headers={'Content-Type': 'application/json'},
|
|
data=json.dumps(
|
|
{'service_id': 'io.murano.apps.lbaas.HAProxy'}
|
|
),
|
|
auth=('user', 'password')
|
|
)
|
|
|
|
url = resp.json()['credentials']['uri']
|
|
|
|
print(url)
|
|
print(instance_id)
|