murano-apps/Windows/ActiveDirectory/package/Classes/SecondaryController.yaml

42 lines
1.4 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.activeDirectory
std: io.murano
sys: io.murano.system
Name: SecondaryController
Extends: Controller
Methods:
initialize:
Body:
- $._domain: $.find(ActiveDirectory).require()
- $._environment: $.find(std:Environment).require()
deploy:
Body:
- $._environment.reporter.report($this, 'Creating VM for Secondary Controller')
- $.super($.deploy())
- $.host.joinDomain($._domain)
- $resources: new(sys:Resources)
- $._environment.reporter.report($this, 'Configuring Secondary Controller in')
- $template: $resources.json('CreateSecondaryDC.template').bind(dict(
domain => $._domain.name,
recoveryPassword => $.recoveryPassword,
domainAccountName => $._domain.adminAccountName,
domainPassword => $._domain.adminPassword
))
- $.host.agent.call($template, $resources, 1800)