murano-apps/Guacamole/package/Classes/Guacamole.yaml

58 lines
1.9 KiB
YAML

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
Namespaces:
=: io.murano.apps
std: io.murano
sys: io.murano.system
srv: io.murano.apps.apache
Name: Guacamole
Extends: std:Application
Properties:
username:
Contract: $.string().notNull()
password:
Contract: $.string().notNull()
server:
Contract: $.class(srv:Tomcat).notNull()
Methods:
.init:
Body:
- $._environment: $.find(std:Environment).require()
deploy:
Body:
- If: not $.getAttr(deployed, false)
Then:
# Deploy Tomcat
- $._environment.reporter.report($this, 'Ensuring Tomcat is deployed')
- $.server.deploy()
# Deploy Guacamole
- $._environment.reporter.report($this, 'Deploying Guacamole')
- $resources: new(sys:Resources)
- $template: $resources.yaml('DeployGuacamole.template').bind(dict(
username => $.username,
password => $.password
))
- $.server.instance.agent.call($template, $resources)
- If: $.server.instance.assignFloatingIp
Then:
- $address: $.server.instance.floatingIpAddress
Else:
- $address: $.server.instance.ipAddresses[0]
- $._environment.reporter.report($this, 'Guacamole application is available at http://{1}:{2}/guacamole'.format($address, 8080))
- $.setAttr(deployed, true)