foreman_deployments 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/LICENSE +619 -0
- data/README.md +52 -0
- data/Rakefile +30 -0
- data/app/controllers/foreman_deployments/api/v2/base_controller.rb +25 -0
- data/app/controllers/foreman_deployments/api/v2/deployments_controller.rb +102 -0
- data/app/controllers/foreman_deployments/api/v2/stacks_controller.rb +52 -0
- data/app/controllers/foreman_deployments/create_resources_controller.rb +62 -0
- data/app/controllers/foreman_deployments/deployments_controller.rb +5 -0
- data/app/controllers/foreman_deployments/stacks_controller.rb +5 -0
- data/app/lib/foreman_deployments/base_dereference_visitor.rb +55 -0
- data/app/lib/foreman_deployments/config.rb +16 -0
- data/app/lib/foreman_deployments/config/array.rb +91 -0
- data/app/lib/foreman_deployments/config/configurator.rb +23 -0
- data/app/lib/foreman_deployments/config/hash.rb +81 -0
- data/app/lib/foreman_deployments/config/load_visitor.rb +23 -0
- data/app/lib/foreman_deployments/config/merge_visitor.rb +23 -0
- data/app/lib/foreman_deployments/config/save_visitor.rb +23 -0
- data/app/lib/foreman_deployments/inputs/base_input_definition.rb +39 -0
- data/app/lib/foreman_deployments/inputs/value.rb +25 -0
- data/app/lib/foreman_deployments/planner_visitor.rb +26 -0
- data/app/lib/foreman_deployments/registry.rb +67 -0
- data/app/lib/foreman_deployments/stack_definition.rb +37 -0
- data/app/lib/foreman_deployments/stack_parser.rb +121 -0
- data/app/lib/foreman_deployments/task_reference.rb +48 -0
- data/app/lib/foreman_deployments/tasks/base_action.rb +6 -0
- data/app/lib/foreman_deployments/tasks/base_definition.rb +72 -0
- data/app/lib/foreman_deployments/tasks/creation_task_definition.rb +68 -0
- data/app/lib/foreman_deployments/tasks/host_creation_task_definition.rb +44 -0
- data/app/lib/foreman_deployments/tasks/search_task_definition.rb +55 -0
- data/app/lib/foreman_deployments/tasks/stack_deploy_action.rb +10 -0
- data/app/lib/foreman_deployments/tasks/wait_until_built_task_definition.rb +65 -0
- data/app/lib/foreman_deployments/validation/dereference_visitor.rb +18 -0
- data/app/lib/foreman_deployments/validation/remove_ids_visitor.rb +59 -0
- data/app/lib/foreman_deployments/validation/validation_error.rb +12 -0
- data/app/lib/foreman_deployments/validation/validation_result.rb +26 -0
- data/app/lib/foreman_deployments/validation/validation_visitor.rb +20 -0
- data/app/lib/foreman_deployments/validation/validator.rb +29 -0
- data/app/models/foreman_deployments/concerns/belongs_to_single_taxonomy.rb +42 -0
- data/app/models/foreman_deployments/concerns/belongs_to_stack_taxonomy.rb +24 -0
- data/app/models/foreman_deployments/configuration.rb +26 -0
- data/app/models/foreman_deployments/deployment.rb +57 -0
- data/app/models/foreman_deployments/resource_models/create_resource.rb +18 -0
- data/app/models/foreman_deployments/stack.rb +20 -0
- data/app/views/foreman_deployments/api/v2/deployments/base.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/deployments/create.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/deployments/index.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/deployments/main.json.rabl +5 -0
- data/app/views/foreman_deployments/api/v2/deployments/merge_configuration.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/deployments/replace_configuration.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/deployments/run.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/deployments/show.json.rabl +11 -0
- data/app/views/foreman_deployments/api/v2/deployments/update.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/stacks/base.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/stacks/create.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/stacks/index.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/stacks/main.json.rabl +3 -0
- data/app/views/foreman_deployments/api/v2/stacks/show.json.rabl +7 -0
- data/app/views/foreman_deployments/api/v2/stacks/update.json.rabl +3 -0
- data/app/views/foreman_deployments/create_resources/new.html.erb +6 -0
- data/config/routes.rb +41 -0
- data/db/migrate/20150623140612_create_stacks.rb +10 -0
- data/db/migrate/20150814092932_create_deployment.rb +20 -0
- data/db/migrate/20150916133305_add_task_to_deployments.rb +5 -0
- data/db/migrate/20150917130618_add_taxonomy_to_deployments.rb +8 -0
- data/db/seeds.d/03-permissions.rb +14 -0
- data/doc/deployment_process.md +112 -0
- data/doc/design/capsule_stack.puml +51 -0
- data/doc/design/complete_stack.puml +17 -0
- data/doc/design/config_resource_overview.puml +15 -0
- data/doc/design/design.md +230 -0
- data/doc/design/diagrams/capsule_stack.png +0 -0
- data/doc/design/diagrams/capsule_stack.svg +1 -0
- data/doc/design/diagrams/complete_stack.png +0 -0
- data/doc/design/diagrams/complete_stack.svg +1 -0
- data/doc/design/diagrams/config_resource_overview.png +0 -0
- data/doc/design/diagrams/config_resource_overview.svg +1 -0
- data/doc/design/diagrams/ordered_resource_overview.png +0 -0
- data/doc/design/diagrams/ordered_resource_overview.svg +1 -0
- data/doc/design/diagrams/overview.png +0 -0
- data/doc/design/diagrams/overview.svg +1 -0
- data/doc/design/diagrams/overview_class.png +0 -0
- data/doc/design/diagrams/overview_class.svg +1 -0
- data/doc/design/diagrams/sat_stack.png +0 -0
- data/doc/design/diagrams/sat_stack.svg +1 -0
- data/doc/design/diagrams/solr_usecase.png +0 -0
- data/doc/design/diagrams/solr_usecase.svg +1 -0
- data/doc/design/examples.md +192 -0
- data/doc/design/generate-diagrams.sh +7 -0
- data/doc/design/implementation.md +128 -0
- data/doc/design/ordered_resource_overview.puml +15 -0
- data/doc/design/overview.puml +42 -0
- data/doc/design/overview_class.puml +64 -0
- data/doc/design/resources.md +134 -0
- data/doc/design/sat_stack.puml +37 -0
- data/doc/design/shared.puml +171 -0
- data/doc/design/solr_usecase.puml +189 -0
- data/doc/design/tasks.md +74 -0
- data/doc/design/user_interfaces.md +189 -0
- data/doc/introduction.md +84 -0
- data/doc/writing_stacks.md +102 -0
- data/lib/foreman_deployments.rb +7 -0
- data/lib/foreman_deployments/engine.rb +94 -0
- data/lib/foreman_deployments/monkey_patches.rb +9 -0
- data/lib/foreman_deployments/version.rb +3 -0
- data/lib/tasks/foreman_deployments_tasks.rake +22 -0
- data/locale/Makefile +62 -0
- data/test/factories/foreman_deployments.rb +70 -0
- data/test/functional/api/v2/deployments_controller_test.rb +318 -0
- data/test/functional/api/v2/stacks_controller_test.rb +140 -0
- data/test/test_plugin_helper.rb +14 -0
- data/test/unit/lib/config/array_test.rb +217 -0
- data/test/unit/lib/config/configurator_test.rb +66 -0
- data/test/unit/lib/config/hash_test.rb +178 -0
- data/test/unit/lib/inputs/value_test.rb +47 -0
- data/test/unit/lib/registry_test.rb +117 -0
- data/test/unit/lib/stack_definition_test.rb +54 -0
- data/test/unit/lib/stack_parser_test.rb +129 -0
- data/test/unit/lib/task_reference_test.rb +63 -0
- data/test/unit/lib/tasks/base_definition_test.rb +137 -0
- data/test/unit/lib/tasks/creation_task_definition_test.rb +57 -0
- data/test/unit/lib/tasks/host_creation_task_definition_test.rb +10 -0
- data/test/unit/lib/tasks/search_task_definition_test.rb +49 -0
- data/test/unit/lib/tasks/stack_deploy_action_test.rb +83 -0
- data/test/unit/lib/tasks/wait_until_built_task_definition_test.rb +71 -0
- data/test/unit/lib/validation/dereference_visitor_test.rb +48 -0
- data/test/unit/lib/validation/remove_ids_visitor_test.rb +90 -0
- data/test/unit/lib/validation/validation_result_test.rb +40 -0
- data/test/unit/lib/validation/validation_visitor_test.rb +67 -0
- data/test/unit/model/configuration_test.rb +88 -0
- data/test/unit/model/deployment_test.rb +159 -0
- data/test/unit/model/stack_test.rb +33 -0
- metadata +241 -0
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="680pt" style="width:536px;height:680px;" version="1.1" viewBox="0 0 536 680" width="536pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><rect fill="#FEFECE" filter="url(#f1)" height="50.0122" style="stroke: #A80036; stroke-width: 1.5;" width="167" x="6" y="23"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="80" x="49.5" y="34.7481">«TakeSubnet»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="153" x="13" y="51.5922">CapsuleProvisioningSubnet</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="7" x2="172" y1="57.0122" y2="57.0122"/><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="199" x="207" y="8.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="56" x="278.5" y="20.2481">«TakeOs»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="61" x="276" y="37.0922">CapsuleOs</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="208" x2="405" y1="42.5122" y2="42.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="187" x="213" y="56.0422">description: OS for the Capsule machine</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="59" x="213" y="68.4222">family: RHEL</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="73" x="213" y="80.8022">version: '>= 6.5'</text><rect fill="#FEFECE" filter="url(#f1)" height="66.7722" style="stroke: #A80036; stroke-width: 1.5;" width="200" x="325" y="312.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="66" x="392" y="324.2481">«TakeHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="137" x="356.5" y="341.0922">CapsuleSatelliteMachine</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="326" x2="524" y1="346.5122" y2="346.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="188" x="331" y="360.0422">description: The satellite master machine</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="38" x="331" y="372.4222">count: 1</text><rect fill="#FEFECE" filter="url(#f1)" height="103.9121" style="stroke: #A80036; stroke-width: 1.5;" width="249" x="73" y="148"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="66" x="164.5" y="159.7481">«TakeHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="93" x="151" y="176.5922">CapsuleMachine</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="74" x2="321" y1="182.0122" y2="182.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="67" x="79" y="195.5422">count: <input></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="171" x="79" y="207.9222">name: <template "capsule-#{index}"></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="237" x="79" y="220.3022">subnet: <reference to CapsuleProvisioningSubnet></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="139" x="79" y="232.6822">os: <reference to CapsuleOs></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="107" x="79" y="245.0622">activation_key: <input></text><rect fill="#FEFECE" filter="url(#f1)" height="54.3922" style="stroke: #A80036; stroke-width: 1.5;" width="186" x="104" y="319"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="90" x="152" y="330.7481">«ProvisionHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="97" x="148.5" y="347.5922">ProvisionCapsule</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="105" x2="289" y1="353.0122" y2="353.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="174" x="110" y="366.5422">host: <reference to CapsuleMachine></text><rect fill="#FEFECE" filter="url(#f1)" height="91.5322" style="stroke: #A80036; stroke-width: 1.5;" width="431" x="96" y="440"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="111" x="256" y="451.7481">«RemoteExecution»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="186" x="218.5" y="468.5922">GenerateAndDistributeCertificates</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="97" x2="526" y1="474.0122" y2="474.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="216" x="102" y="487.5422">hosts: <reference to CapsuleSatelliteMachine></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="419" x="102" y="499.9222">command: "<% hosts.map(&:name).each {|fqdn| `capsule-certs-generate --capsule-fqdn ..."</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="163" x="102" y="512.3022">params: [<references to capsules>]</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="113" x="102" y="524.6822">result: [<capsule hosts>]</text><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="266" x="178" y="592.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="111" x="255.5" y="604.2481">«RemoteExecution»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="78" x="272" y="621.0922">InstallCapsule</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="179" x2="443" y1="626.5122" y2="626.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="254" x="184" y="640.0422">host: <reference to GenerateAndDistributeCertificates></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="145" x="184" y="652.4222">command: "capsule-installer ..."</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="195" x="184" y="664.8022">parameters: [oauth_key, oauth_secret, ...]</text><path d="M106.834,73.1 C120.427,92.23 139.677,119.323 156.903,143.567 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="159.87,147.743,157.9182,138.0895,156.9741,143.667,151.3966,142.7229,159.87,147.743" style="stroke: #808080; stroke-width: 1.0;"/><path d="M277.646,87.539 C265.39,104.631 250.821,124.947 237.461,143.578 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="234.451,147.774,242.947,142.7923,237.3653,143.7111,236.4464,138.1294,234.451,147.774" style="stroke: #808080; stroke-width: 1.0;"/><path d="M197,252.297 C197,272.615 197,295.265 197,313.206 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="197,318.615,201,309.615,197,313.615,193,309.615,197,318.615" style="stroke: #808080; stroke-width: 1.0;"/><path d="M219.251,373.326 C233.708,391.08 252.988,414.757 270.142,435.823 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="273.319,439.724,270.7378,430.2194,270.1618,435.8468,264.5344,435.2708,273.319,439.724" style="stroke: #808080; stroke-width: 1.0;"/><path d="M397.694,379.533 C384.038,396.304 367.226,416.95 352.054,435.583 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="348.642,439.773,357.4266,435.3198,351.7992,435.8958,351.2232,430.2684,348.642,439.773" style="stroke: #808080; stroke-width: 1.0;"/><path d="M311,532.195 C311,549.76 311,569.729 311,587.1657 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="311,592.4903,315,583.4903,311,587.4903,307,583.4903,311,592.4903" style="stroke: #808080; stroke-width: 1.0;"/></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="1003pt" style="width:900px;height:1003px;" version="1.1" viewBox="0 0 900 1003" width="900pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><polygon fill="#FFFFFF" filter="url(#f1)" points="22,24,83,24,90,48.0039,407,48.0039,407,698,22,698,22,24" style="stroke: #000000; stroke-width: 2.0;"/><line style="stroke: #000000; stroke-width: 2.0;" x1="22" x2="90" y1="48.0039" y2="48.0039"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="55" x="25" y="40.7059">Satellite</text><polygon fill="#FFFFFF" filter="url(#f1)" points="431,208,493,208,500,232.0039,893,232.0039,893,996,431,996,431,208" style="stroke: #000000; stroke-width: 2.0;"/><line style="stroke: #000000; stroke-width: 2.0;" x1="431" x2="500" y1="232.0039" y2="232.0039"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="56" x="434" y="224.7059">Capsule</text><rect fill="#FEFECE" filter="url(#f1)" height="50.0122" style="stroke: #A80036; stroke-width: 1.5;" width="121" x="271" y="77"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="80" x="291.5" y="88.7481">«TakeSubnet»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="107" x="278" y="105.5922">ProvisioningSubnet</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="272" x2="391" y1="111.0122" y2="111.0122"/><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="198" x="38" y="62.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="56" x="109" y="74.2481">«TakeOs»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="59" x="107.5" y="91.0922">SatelliteOs</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="39" x2="235" y1="96.5122" y2="96.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="186" x="44" y="110.0422">description: OS for the Satellite machine</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="59" x="44" y="122.4222">family: RHEL</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="73" x="44" y="134.8022">version: '>= 6.5'</text><rect fill="#FEFECE" filter="url(#f1)" height="103.9121" style="stroke: #A80036; stroke-width: 1.5;" width="211" x="181" y="234"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="66" x="253.5" y="245.7481">«TakeHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="91" x="241" y="262.5922">SatelliteMachine</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="182" x2="391" y1="268.0122" y2="268.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="38" x="187" y="281.5422">count: 1</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="67" x="187" y="293.9222">name: <input></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="199" x="187" y="306.3022">subnet: <reference to ProvisioningSubnet></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="138" x="187" y="318.6822">os: <reference to SatelliteOs></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="107" x="187" y="331.0622">activation_key: <input></text><rect fill="#FEFECE" filter="url(#f1)" height="54.3922" style="stroke: #A80036; stroke-width: 1.5;" width="185" x="203" y="443"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="90" x="250.5" y="454.7481">«ProvisionHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="95" x="248" y="471.5922">ProvisionSatellite</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="204" x2="387" y1="477.0122" y2="477.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="173" x="209" y="490.5422">host: <reference to SatelliteMachine></text><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="185" x="203" y="602.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="111" x="240" y="614.2481">«RemoteExecution»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="76" x="257.5" y="631.0922">InstallSatellite</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="204" x2="387" y1="636.5122" y2="636.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="173" x="209" y="650.0422">host: <reference to SatelliteMachine></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="139" x="209" y="662.4222">command: "katello-installer ..."</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="123" x="209" y="674.8022">parameters: [password, ...]</text><rect fill="#FEFECE" filter="url(#f1)" height="50.0122" style="stroke: #A80036; stroke-width: 1.5;" width="167" x="680" y="261"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="80" x="723.5" y="272.7481">«TakeSubnet»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="153" x="687" y="289.5922">CapsuleProvisioningSubnet</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="681" x2="846" y1="295.0122" y2="295.0122"/><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="199" x="447" y="246.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="56" x="518.5" y="258.2481">«TakeOs»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="61" x="516" y="275.0922">CapsuleOs</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="448" x2="645" y1="280.5122" y2="280.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="187" x="453" y="294.0422">description: OS for the Capsule machine</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="59" x="453" y="306.4222">family: RHEL</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="73" x="453" y="318.8022">version: '>= 6.5'</text><rect fill="#FEFECE" filter="url(#f1)" height="66.7722" style="stroke: #A80036; stroke-width: 1.5;" width="200" x="447" y="608.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="66" x="514" y="620.2481">«TakeHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="137" x="478.5" y="637.0922">CapsuleSatelliteMachine</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="448" x2="646" y1="642.5122" y2="642.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="188" x="453" y="656.0422">description: The satellite master machine</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="38" x="453" y="668.4222">count: 1</text><rect fill="#FEFECE" filter="url(#f1)" height="103.9121" style="stroke: #A80036; stroke-width: 1.5;" width="249" x="495" y="418"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="66" x="586.5" y="429.7481">«TakeHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="93" x="573" y="446.5922">CapsuleMachine</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="496" x2="743" y1="452.0122" y2="452.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="67" x="501" y="465.5422">count: <input></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="171" x="501" y="477.9222">name: <template "capsule-#{index}"></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="237" x="501" y="490.3022">subnet: <reference to CapsuleProvisioningSubnet></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="139" x="501" y="502.6822">os: <reference to CapsuleOs></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="107" x="501" y="515.0622">activation_key: <input></text><rect fill="#FEFECE" filter="url(#f1)" height="54.3922" style="stroke: #A80036; stroke-width: 1.5;" width="186" x="682" y="615"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="90" x="730" y="626.7481">«ProvisionHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="97" x="726.5" y="643.5922">ProvisionCapsule</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="683" x2="867" y1="649.0122" y2="649.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="174" x="688" y="662.5422">host: <reference to CapsuleMachine></text><rect fill="#FEFECE" filter="url(#f1)" height="91.5322" style="stroke: #A80036; stroke-width: 1.5;" width="431" x="447" y="746"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="111" x="607" y="757.7481">«RemoteExecution»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="186" x="569.5" y="774.5922">GenerateAndDistributeCertificates</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="448" x2="877" y1="780.0122" y2="780.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="216" x="453" y="793.5422">hosts: <reference to CapsuleSatelliteMachine></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="419" x="453" y="805.9222">command: "<% hosts.map(&:name).each {|fqdn| `capsule-certs-generate --capsule-fqdn ..."</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="163" x="453" y="818.3022">params: [<references to capsules>]</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="113" x="453" y="830.6822">result: [<capsule hosts>]</text><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="266" x="529" y="900.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="111" x="606.5" y="912.2481">«RemoteExecution»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="78" x="623" y="929.0922">InstallCapsule</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="530" x2="794" y1="934.5122" y2="934.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="254" x="535" y="948.0422">host: <reference to GenerateAndDistributeCertificates></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="145" x="535" y="960.4222">command: "capsule-installer ..."</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="195" x="535" y="972.8022">parameters: [oauth_key, oauth_secret, ...]</text><path d="M324.837,127.199 C318.459,153.278 308.281,194.895 299.944,228.983 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="298.728,233.955,304.7504,226.162,299.9151,229.098,296.9792,224.2627,298.728,233.955" style="stroke: #808080; stroke-width: 1.0;"/><path d="M169.331,141.925 C190.133,167.614 217.476,201.38 240.462,229.766 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="243.821,233.913,241.2649,224.4016,240.6741,230.0275,235.0481,229.4367,243.821,233.913" style="stroke: #808080; stroke-width: 1.0;"/><path d="M288.555,338.235 C290.119,370.209 292.071,410.117 293.415,437.587 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="293.675,442.909,297.2304,433.7243,293.4307,437.915,289.24,434.1152,293.675,442.909" style="stroke: #808080; stroke-width: 1.0;"/><path d="M295,497.254 C295,524.028 295,565.353 295,597.004 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="295,602.396,299,593.396,295,597.396,291,593.396,295,602.396" style="stroke: #808080; stroke-width: 1.0;"/><path d="M743.279,311.199 C722.702,337.492 689.765,379.578 662.967,413.82 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="659.731,417.955,668.4279,413.3329,662.8127,414.0176,662.128,408.4023,659.731,417.955" style="stroke: #808080; stroke-width: 1.0;"/><path d="M561.84,325.925 C571.948,351.404 585.208,384.827 596.412,413.066 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="598.335,417.913,598.7341,408.0722,596.4911,413.2654,591.2979,411.0225,598.335,417.913" style="stroke: #808080; stroke-width: 1.0;"/><path d="M666.228,522.072 C692.447,550.979 724.189,585.977 746.597,610.684 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="750.112,614.559,747.0301,605.2048,746.7535,610.8548,741.1035,610.5783,750.112,614.559" style="stroke: #808080; stroke-width: 1.0;"/><path d="M754.537,669.164 C739.326,689.355 718.134,717.486 699.868,741.733 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="696.729,745.9,705.3397,741.1192,699.7379,741.9067,698.9504,736.3049,696.729,745.9" style="stroke: #808080; stroke-width: 1.0;"/><path d="M572.808,675.663 C587.77,695.179 606.896,720.125 623.597,741.909 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="626.685,745.937,624.3853,736.3604,623.6436,741.9684,618.0355,741.2267,626.685,745.937" style="stroke: #808080; stroke-width: 1.0;"/><path d="M662,838.017 C662,856.167 662,876.95 662,894.999 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="662,900.013,666,891.013,662,895.013,658,891.013,662,900.013" style="stroke: #808080; stroke-width: 1.0;"/><path d="M391.212,111.836 C460.088,124.841 574.726,151.931 663,200 C690.525,214.989 717.204,238.535 736.072,257.202 " fill="none" style="stroke: #FF0000; stroke-width: 1.0;"/><polygon fill="#FF0000" points="739.74,260.866,736.2008,251.675,736.203,257.3319,730.5462,257.3342,739.74,260.866" style="stroke: #FF0000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="85" x="647" y="185.889">provide subnet</text><path d="M360.807,338.068 C386.106,354.82 414.835,372.931 442,388 C459.064,397.465 477.412,406.824 495.603,415.644 " fill="none" style="stroke: #FF0000; stroke-width: 1.0;"/><polygon fill="#FF0000" points="500.224,417.875,493.8587,410.3595,495.7214,415.7009,490.3801,417.5636,500.224,417.875" style="stroke: #FF0000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="127" x="443" y="381.889">provide activation key</text><path d="M334.652,497.064 C377.438,526.267 445.818,572.939 493.379,605.402 " fill="none" style="stroke: #FF0000; stroke-width: 1.0;"/><polygon fill="#FF0000" points="497.627,608.301,492.448,599.9238,493.4971,605.4825,487.9384,606.5316,497.627,608.301" style="stroke: #FF0000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="144" x="445" y="565.889">provide satellite instance</text></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="727.9186pt" style="width:829px;height:727px;" version="1.1" viewBox="0 0 829 727" width="829.1091pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="1.30568356374808"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="2.61136712749616" dy="2.61136712749616" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="Helvetica Neue" font-size="11.7512" lengthAdjust="spacingAndGlyphs" textLength="158.6406" x="345.6797" y="11.1988">Configuration Resource Types</text><rect fill="#FEFECE" filter="url(#f1)" height="73.1767" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="103.8018" x="272.8879" y="600.7998"/><ellipse cx="287.6747" cy="611.2452" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M289.2048,608.4196 C288.5928,608.134 288.2052,608.0422 287.6339,608.0422 C285.9202,608.0422 284.6145,609.3989 284.6145,611.1738 L284.6145,611.9083 C284.6145,613.5914 285.9916,614.8257 287.8787,614.8257 C288.6744,614.8257 289.4292,614.6318 289.9189,614.2748 C290.2963,614.0096 290.5105,613.7138 290.5105,613.4588 C290.5105,613.1629 290.2555,612.9079 289.9495,612.9079 C289.8067,612.9079 289.6741,612.9589 289.5517,613.0813 C289.2558,613.3976 289.2558,613.3976 289.1334,613.4588 C288.858,613.6322 288.4092,613.7138 287.9093,613.7138 C286.5731,613.7138 285.7264,612.9997 285.7264,611.8879 L285.7264,611.1738 C285.7264,610.0109 286.5425,609.1541 287.6747,609.1541 C288.0522,609.1541 288.45,609.2561 288.756,609.4193 C289.0722,609.6029 289.1844,609.7457 289.2456,610.0109 C289.2864,610.2762 289.3068,610.3578 289.3986,610.4394 C289.4904,610.5312 289.6435,610.6026 289.7863,610.6026 C289.9597,610.6026 290.1331,610.5108 290.2453,610.368 C290.3167,610.266 290.3371,610.1436 290.3371,609.8681 L290.3371,608.9399 C290.3371,608.6543 290.3269,608.5727 290.2657,608.4706 C290.1637,608.2972 289.9801,608.2054 289.7863,608.2054 C289.5925,608.2054 289.4598,608.2666 289.317,608.4706 L289.2048,608.4196 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="71.8126" x="297.9243" y="613.8618">HostgroupResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="273.5407" x2="376.0369" y1="621.6907" y2="621.6907"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="37.8648" x="276.8049" y="631.1457">String name</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="94.6621" x="276.8049" y="651.5378">Parent is HostgroupResource</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="95.9677" x="276.8049" y="660.4281">or it's provided on Deployment</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="42.4347" x="276.8049" y="669.3185">configuration.</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="273.5407" x2="315.9754" y1="640.2489" y2="640.2489"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="315.9754" y="642.321">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="333.6022" x2="376.0369" y1="640.2489" y2="640.2489"/><rect fill="#FEFECE" filter="url(#f1)" height="82.067" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="101.8433" x="643.0492" y="294.617"/><ellipse cx="656.9547" cy="305.0624" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M658.4848,302.2368 C657.8727,301.9512 657.4851,301.8594 656.9139,301.8594 C655.2002,301.8594 653.8945,303.2161 653.8945,304.991 L653.8945,305.7255 C653.8945,307.4086 655.2716,308.6429 657.1587,308.6429 C657.9543,308.6429 658.7092,308.449 659.1988,308.092 C659.5763,307.8268 659.7905,307.531 659.7905,307.276 C659.7905,306.9802 659.5355,306.7251 659.2294,306.7251 C659.0866,306.7251 658.954,306.7761 658.8316,306.8985 C658.5358,307.2148 658.5358,307.2148 658.4134,307.276 C658.138,307.4494 657.6891,307.531 657.1893,307.531 C655.853,307.531 655.0064,306.8169 655.0064,305.7051 L655.0064,304.991 C655.0064,303.8281 655.8224,302.9713 656.9547,302.9713 C657.3321,302.9713 657.7299,303.0733 658.036,303.2365 C658.3522,303.4201 658.4644,303.5629 658.5256,303.8281 C658.5664,304.0934 658.5868,304.175 658.6786,304.2566 C658.7704,304.3484 658.9234,304.4198 659.0662,304.4198 C659.2396,304.4198 659.413,304.328 659.5252,304.1852 C659.5967,304.0832 659.6171,303.9608 659.6171,303.6853 L659.6171,302.7571 C659.6171,302.4715 659.6069,302.3899 659.5457,302.2879 C659.4436,302.1144 659.26,302.0226 659.0662,302.0226 C658.8724,302.0226 658.7398,302.0838 658.597,302.2879 L658.4848,302.2368 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="71.8126" x="667.0084" y="307.679">ParameterResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="643.702" x2="744.2396" y1="315.5079" y2="315.5079"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="37.8648" x="646.9662" y="324.963">String name</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="79.6467" x="646.9662" y="333.8533">String description # intent</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="94.0092" x="646.9662" y="342.7436">String default_value # optional</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="92.0507" x="646.9662" y="363.1357">Validations, like list of allowed</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="22.8495" x="646.9662" y="372.026">values.</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="643.702" x2="685.1575" y1="351.8468" y2="351.8468"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="685.1575" y="353.9189">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="702.7842" x2="744.2396" y1="351.8468" y2="351.8468"/><rect fill="#FEFECE" filter="url(#f1)" height="46.5057" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="129.9155" x="628.6866" y="464.3558"/><ellipse cx="638.4793" cy="474.8013" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M640.0094,471.9757 C639.3973,471.6901 639.0097,471.5983 638.4385,471.5983 C636.7248,471.5983 635.4191,472.955 635.4191,474.7299 L635.4191,475.4643 C635.4191,477.1474 636.7962,478.3817 638.6833,478.3817 C639.4789,478.3817 640.2338,478.1879 640.7234,477.8309 C641.1008,477.5657 641.315,477.2698 641.315,477.0148 C641.315,476.719 641.06,476.464 640.754,476.464 C640.6112,476.464 640.4786,476.515 640.3562,476.6374 C640.0604,476.9536 640.0604,476.9536 639.938,477.0148 C639.6625,477.1882 639.2137,477.2698 638.7139,477.2698 C637.3776,477.2698 636.5309,476.5558 636.5309,475.4439 L636.5309,474.7299 C636.5309,473.567 637.347,472.7102 638.4793,472.7102 C638.8567,472.7102 639.2545,472.8122 639.5605,472.9754 C639.8768,473.159 639.989,473.3018 640.0502,473.567 C640.091,473.8322 640.1114,473.9138 640.2032,473.9954 C640.295,474.0872 640.448,474.1587 640.5908,474.1587 C640.7642,474.1587 640.9376,474.0668 641.0498,473.924 C641.1212,473.822 641.1416,473.6996 641.1416,473.4242 L641.1416,472.4959 C641.1416,472.2103 641.1314,472.1287 641.0702,472.0267 C640.9682,471.8533 640.7846,471.7615 640.5908,471.7615 C640.397,471.7615 640.2644,471.8227 640.1216,472.0267 L640.0094,471.9757 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="109.0246" x="647.619" y="477.4179">HostgroupParameterResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="629.3395" x2="757.9493" y1="485.2468" y2="485.2468"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="89.4393" x="632.6037" y="506.2035">Turns into GroupParameter.</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="629.3395" x2="684.831" y1="494.9147" y2="494.9147"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="684.831" y="496.9868">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="702.4578" x2="757.9493" y1="494.9147" y2="494.9147"/><rect fill="#FEFECE" filter="url(#f1)" height="46.5057" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="135.7911" x="453.725" y="464.0294"/><ellipse cx="463.5177" cy="474.4749" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M465.0478,471.6493 C464.4357,471.3637 464.0481,471.2719 463.4769,471.2719 C461.7632,471.2719 460.4575,472.6286 460.4575,474.4035 L460.4575,475.1379 C460.4575,476.821 461.8346,478.0553 463.7217,478.0553 C464.5173,478.0553 465.2722,477.8615 465.7618,477.5045 C466.1392,477.2392 466.3534,476.9434 466.3534,476.6884 C466.3534,476.3926 466.0984,476.1376 465.7924,476.1376 C465.6496,476.1376 465.517,476.1886 465.3946,476.311 C465.0988,476.6272 465.0988,476.6272 464.9764,476.6884 C464.7009,476.8618 464.2521,476.9434 463.7523,476.9434 C462.416,476.9434 461.5693,476.2294 461.5693,475.1175 L461.5693,474.4035 C461.5693,473.2406 462.3854,472.3837 463.5177,472.3837 C463.8951,472.3837 464.2929,472.4857 464.5989,472.649 C464.9152,472.8326 465.0274,472.9754 465.0886,473.2406 C465.1294,473.5058 465.1498,473.5874 465.2416,473.669 C465.3334,473.7608 465.4864,473.8322 465.6292,473.8322 C465.8026,473.8322 465.976,473.7404 466.0882,473.5976 C466.1596,473.4956 466.18,473.3732 466.18,473.0978 L466.18,472.1695 C466.18,471.8839 466.1698,471.8023 466.1086,471.7003 C466.0066,471.5269 465.823,471.4351 465.6292,471.4351 C465.4354,471.4351 465.3028,471.4963 465.16,471.7003 L465.0478,471.6493 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="114.9002" x="472.6575" y="477.0915">DeploymentParameterResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="454.3779" x2="588.8633" y1="484.9203" y2="484.9203"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="107.0661" x="457.6421" y="505.8771">Turns into DeploymentParameter.</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="454.3779" x2="512.8072" y1="494.5882" y2="494.5882"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="512.8072" y="496.6603">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="530.4339" x2="588.8633" y1="494.5882" y2="494.5882"/><rect fill="#FEFECE" filter="url(#f1)" height="82.067" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="123.3871" x="54.8387" y="109.8627"/><ellipse cx="64.6313" cy="120.3082" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M66.1614,117.4826 C65.5494,117.197 65.1618,117.1052 64.5905,117.1052 C62.8768,117.1052 61.5711,118.4619 61.5711,120.2368 L61.5711,120.9712 C61.5711,122.6544 62.9482,123.8886 64.8353,123.8886 C65.631,123.8886 66.3858,123.6948 66.8755,123.3378 C67.2529,123.0726 67.4671,122.7768 67.4671,122.5217 C67.4671,122.2259 67.2121,121.9709 66.9061,121.9709 C66.7633,121.9709 66.6307,122.0219 66.5083,122.1443 C66.2124,122.4605 66.2124,122.4605 66.09,122.5217 C65.8146,122.6952 65.3658,122.7768 64.866,122.7768 C63.5297,122.7768 62.683,122.0627 62.683,120.9508 L62.683,120.2368 C62.683,119.0739 63.4991,118.2171 64.6313,118.2171 C65.0088,118.2171 65.4066,118.3191 65.7126,118.4823 C66.0288,118.6659 66.141,118.8087 66.2022,119.0739 C66.243,119.3391 66.2634,119.4207 66.3552,119.5024 C66.4471,119.5942 66.6001,119.6656 66.7429,119.6656 C66.9163,119.6656 67.0897,119.5738 67.2019,119.4309 C67.2733,119.3289 67.2937,119.2065 67.2937,118.9311 L67.2937,118.0029 C67.2937,117.7172 67.2835,117.6356 67.2223,117.5336 C67.1203,117.3602 66.9367,117.2684 66.7429,117.2684 C66.5491,117.2684 66.4165,117.3296 66.2736,117.5336 L66.1614,117.4826 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="102.4962" x="73.7711" y="122.9248">ParameterOverrideResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="55.4916" x2="177.573" y1="130.7537" y2="130.7537"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="31.9892" x="58.7558" y="140.2087">String key</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="87.4808" x="58.7558" y="149.0991">String value # optional, ERB</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="73.1183" x="58.7558" y="169.4911">If value is not present it</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="75.0768" x="58.7558" y="178.3814">needs to be supplied on</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="80.9524" x="58.7558" y="187.2718">deployment configuration.</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="55.4916" x2="107.7189" y1="158.2022" y2="158.2022"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="107.7189" y="160.2743">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="125.3456" x2="177.573" y1="158.2022" y2="158.2022"/><rect fill="#FEFECE" filter="url(#f1)" height="99.8477" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="139.0553" x="225.2304" y="286.13"/><ellipse cx="242.3675" cy="296.5755" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M243.8976,293.7499 C243.2856,293.4643 242.8979,293.3725 242.3267,293.3725 C240.613,293.3725 239.3073,294.7292 239.3073,296.5041 L239.3073,297.2385 C239.3073,298.9216 240.6844,300.1559 242.5715,300.1559 C243.3672,300.1559 244.122,299.9621 244.6117,299.6051 C244.9891,299.3399 245.2033,299.044 245.2033,298.789 C245.2033,298.4932 244.9483,298.2382 244.6423,298.2382 C244.4994,298.2382 244.3668,298.2892 244.2444,298.4116 C243.9486,298.7278 243.9486,298.7278 243.8262,298.789 C243.5508,298.9624 243.102,299.044 242.6021,299.044 C241.2658,299.044 240.4192,298.33 240.4192,297.2181 L240.4192,296.5041 C240.4192,295.3412 241.2352,294.4844 242.3675,294.4844 C242.7449,294.4844 243.1428,294.5864 243.4488,294.7496 C243.765,294.9332 243.8772,295.076 243.9384,295.3412 C243.9792,295.6064 243.9996,295.688 244.0914,295.7696 C244.1832,295.8614 244.3362,295.9328 244.479,295.9328 C244.6525,295.9328 244.8259,295.841 244.9381,295.6982 C245.0095,295.5962 245.0299,295.4738 245.0299,295.1984 L245.0299,294.2701 C245.0299,293.9845 245.0197,293.9029 244.9585,293.8009 C244.8565,293.6275 244.6729,293.5357 244.479,293.5357 C244.2852,293.5357 244.1526,293.5969 244.0098,293.8009 L243.8976,293.7499 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="101.8433" x="253.1394" y="299.1921">ComputeResourceResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="225.8833" x2="363.6329" y1="307.021" y2="307.021"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="33.9478" x="229.1475" y="316.476">String type</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="69.8541" x="229.1475" y="325.3663">Boolean image_based</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="76.3825" x="229.1475" y="334.2567">String image_url nullable</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="131.2212" x="229.1475" y="354.6487">Each ComputeResourceResource allows</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="117.5115" x="229.1475" y="363.539">particular ComputeResource type for</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="100.5376" x="229.1475" y="372.4294">a given HostResource. It has to</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="120.7757" x="229.1475" y="381.3197">contain image_url when image_based.</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="225.8833" x2="285.9447" y1="343.3599" y2="343.3599"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="285.9447" y="345.432">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="303.5714" x2="363.6329" y1="343.3599" y2="343.3599"/><rect fill="#FEFECE" filter="url(#f1)" height="73.1767" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="101.1905" x="69.2012" y="299.1869"/><ellipse cx="78.9939" cy="309.6323" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M80.524,306.8067 C79.9119,306.5211 79.5243,306.4293 78.9531,306.4293 C77.2393,306.4293 75.9337,307.786 75.9337,309.5609 L75.9337,310.2954 C75.9337,311.9785 77.3107,313.2128 79.1979,313.2128 C79.9935,313.2128 80.7484,313.0189 81.238,312.6619 C81.6154,312.3967 81.8296,312.1009 81.8296,311.8459 C81.8296,311.55 81.5746,311.295 81.2686,311.295 C81.1258,311.295 80.9932,311.346 80.8708,311.4684 C80.575,311.7847 80.575,311.7847 80.4525,311.8459 C80.1771,312.0193 79.7283,312.1009 79.2285,312.1009 C77.8922,312.1009 77.0455,311.3868 77.0455,310.275 L77.0455,309.5609 C77.0455,308.398 77.8616,307.5412 78.9939,307.5412 C79.3713,307.5412 79.7691,307.6432 80.0751,307.8064 C80.3913,307.99 80.5036,308.1328 80.5648,308.398 C80.6056,308.6633 80.626,308.7449 80.7178,308.8265 C80.8096,308.9183 80.9626,308.9897 81.1054,308.9897 C81.2788,308.9897 81.4522,308.8979 81.5644,308.7551 C81.6358,308.6531 81.6562,308.5307 81.6562,308.2552 L81.6562,307.327 C81.6562,307.0414 81.646,306.9597 81.5848,306.8577 C81.4828,306.6843 81.2992,306.5925 81.1054,306.5925 C80.9116,306.5925 80.779,306.6537 80.6362,306.8577 L80.524,306.8067 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="80.2995" x="88.1336" y="312.2489">PuppetClassResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="69.8541" x2="169.7389" y1="320.0778" y2="320.0778"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="37.8648" x="73.1183" y="329.5328">String name</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="65.937" x="73.1183" y="338.4232">\# of the class to add</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="62.02" x="73.1183" y="358.8152">possibly allot to limit</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="69.8541" x="73.1183" y="367.7055">puppet class versions</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="69.8541" x2="110.9831" y1="347.5264" y2="347.5264"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="110.9831" y="349.5985">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="128.6098" x2="169.7389" y1="347.5264" y2="347.5264"/><rect fill="#FEFECE" filter="url(#f1)" height="64.2864" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="98.5791" x="468.0876" y="303.7567"/><ellipse cx="477.8802" cy="314.2022" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M479.4103,311.3766 C478.7982,311.091 478.4106,310.9992 477.8394,310.9992 C476.1257,310.9992 474.82,312.3559 474.82,314.1308 L474.82,314.8653 C474.82,316.5484 476.1971,317.7826 478.0842,317.7826 C478.8798,317.7826 479.6347,317.5888 480.1243,317.2318 C480.5018,316.9666 480.716,316.6708 480.716,316.4158 C480.716,316.1199 480.4609,315.8649 480.1549,315.8649 C480.0121,315.8649 479.8795,315.9159 479.7571,316.0383 C479.4613,316.3546 479.4613,316.3546 479.3389,316.4158 C479.0635,316.5892 478.6146,316.6708 478.1148,316.6708 C476.7785,316.6708 475.9319,315.9567 475.9319,314.8449 L475.9319,314.1308 C475.9319,312.9679 476.7479,312.1111 477.8802,312.1111 C478.2576,312.1111 478.6554,312.2131 478.9615,312.3763 C479.2777,312.5599 479.3899,312.7027 479.4511,312.9679 C479.4919,313.2332 479.5123,313.3148 479.6041,313.3964 C479.6959,313.4882 479.8489,313.5596 479.9917,313.5596 C480.1651,313.5596 480.3385,313.4678 480.4507,313.325 C480.5222,313.223 480.5426,313.1005 480.5426,312.8251 L480.5426,311.8969 C480.5426,311.6112 480.5324,311.5296 480.4712,311.4276 C480.3691,311.2542 480.1855,311.1624 479.9917,311.1624 C479.7979,311.1624 479.6653,311.2236 479.5225,311.4276 L479.4103,311.3766 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="77.6882" x="487.02" y="316.8188">SubnetTypeResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="468.7404" x2="566.0138" y1="324.6477" y2="324.6477"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="37.8648" x="472.0046" y="334.1027">String name</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="38.5177" x="472.0046" y="354.4948">like Staypuft</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="45.0461" x="472.0046" y="363.3851">network types</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="468.7404" x2="508.5637" y1="343.2059" y2="343.2059"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="508.5637" y="345.278">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="526.1905" x2="566.0138" y1="343.2059" y2="343.2059"/><rect fill="#FEFECE" filter="url(#f1)" height="64.2864" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="86.1751" x="513.7865" y="119.0025"/><ellipse cx="523.5791" cy="129.448" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M525.1092,126.6224 C524.4972,126.3368 524.1095,126.245 523.5383,126.245 C521.8246,126.245 520.5189,127.6017 520.5189,129.3766 L520.5189,130.111 C520.5189,131.7941 521.896,133.0284 523.7831,133.0284 C524.5788,133.0284 525.3336,132.8346 525.8233,132.4776 C526.2007,132.2124 526.4149,131.9165 526.4149,131.6615 C526.4149,131.3657 526.1599,131.1107 525.8539,131.1107 C525.711,131.1107 525.5784,131.1617 525.456,131.2841 C525.1602,131.6003 525.1602,131.6003 525.0378,131.6615 C524.7624,131.8349 524.3136,131.9165 523.8137,131.9165 C522.4774,131.9165 521.6308,131.2025 521.6308,130.0906 L521.6308,129.3766 C521.6308,128.2137 522.4468,127.3569 523.5791,127.3569 C523.9565,127.3569 524.3544,127.4589 524.6604,127.6221 C524.9766,127.8057 525.0888,127.9485 525.15,128.2137 C525.1908,128.4789 525.2112,128.5605 525.303,128.6421 C525.3948,128.7339 525.5478,128.8053 525.6906,128.8053 C525.8641,128.8053 526.0375,128.7135 526.1497,128.5707 C526.2211,128.4687 526.2415,128.3463 526.2415,128.0709 L526.2415,127.1426 C526.2415,126.857 526.2313,126.7754 526.1701,126.6734 C526.0681,126.5 525.8845,126.4082 525.6906,126.4082 C525.4968,126.4082 525.3642,126.4694 525.2214,126.6734 L525.1092,126.6224 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="65.2842" x="532.7189" y="132.0646">InterfaceResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="514.4393" x2="599.3088" y1="139.8935" y2="139.8935"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="25.4608" x="517.7035" y="149.3485">String ip</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="77.6882" x="517.7035" y="169.7405">creates interface without</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="58.1029" x="517.7035" y="178.6309">Host to reserve IP</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="514.4393" x2="548.0607" y1="158.4517" y2="158.4517"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="548.0607" y="160.5238">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="565.6874" x2="599.3088" y1="158.4517" y2="158.4517"/><rect fill="#FEFECE" filter="url(#f1)" height="58.0074" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="87.4808" x="325.768" y="122.2667"/><ellipse cx="342.6114" cy="132.7122" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M344.1415,129.8866 C343.5294,129.601 343.1418,129.5092 342.5706,129.5092 C340.8569,129.5092 339.5512,130.8659 339.5512,132.6408 L339.5512,133.3752 C339.5512,135.0583 340.9283,136.2926 342.8154,136.2926 C343.611,136.2926 344.3659,136.0988 344.8555,135.7418 C345.2329,135.4766 345.4471,135.1808 345.4471,134.9257 C345.4471,134.6299 345.1921,134.3749 344.8861,134.3749 C344.7433,134.3749 344.6107,134.4259 344.4883,134.5483 C344.1925,134.8645 344.1925,134.8645 344.0701,134.9257 C343.7946,135.0992 343.3458,135.1808 342.846,135.1808 C341.5097,135.1808 340.663,134.4667 340.663,133.3548 L340.663,132.6408 C340.663,131.4779 341.4791,130.6211 342.6114,130.6211 C342.9888,130.6211 343.3866,130.7231 343.6926,130.8863 C344.0089,131.0699 344.1211,131.2127 344.1823,131.4779 C344.2231,131.7431 344.2435,131.8247 344.3353,131.9063 C344.4271,131.9982 344.5801,132.0696 344.7229,132.0696 C344.8963,132.0696 345.0697,131.9778 345.1819,131.8349 C345.2533,131.7329 345.2737,131.6105 345.2737,131.3351 L345.2737,130.4069 C345.2737,130.1212 345.2635,130.0396 345.2023,129.9376 C345.1003,129.7642 344.9167,129.6724 344.7229,129.6724 C344.5291,129.6724 344.3965,129.7336 344.2537,129.9376 L344.1415,129.8866 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="50.9217" x="353.318" y="135.3288">HostResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="326.4209" x2="412.596" y1="143.1577" y2="143.1577"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="79.6467" x="329.6851" y="152.6127">String name # "db-%02d"</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="39.1705" x="329.6851" y="161.5031">Integere min</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="41.7819" x="329.6851" y="170.3934">Integere max</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="326.4209" x2="412.596" y1="175.0514" y2="175.0514"/><rect fill="#FEFECE" filter="url(#f1)" height="90.9574" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="122.7343" x="700.4992" y="105.2928"/><ellipse cx="710.2919" cy="115.7383" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M711.822,112.9127 C711.2099,112.6271 710.8223,112.5353 710.2511,112.5353 C708.5373,112.5353 707.2317,113.892 707.2317,115.6669 L707.2317,116.4014 C707.2317,118.0845 708.6088,119.3187 710.4959,119.3187 C711.2915,119.3187 712.0464,119.1249 712.536,118.7679 C712.9134,118.5027 713.1276,118.2069 713.1276,117.9519 C713.1276,117.656 712.8726,117.401 712.5666,117.401 C712.4238,117.401 712.2912,117.452 712.1688,117.5744 C711.873,117.8906 711.873,117.8906 711.7506,117.9519 C711.4751,118.1253 711.0263,118.2069 710.5265,118.2069 C709.1902,118.2069 708.3435,117.4928 708.3435,116.381 L708.3435,115.6669 C708.3435,114.504 709.1596,113.6472 710.2919,113.6472 C710.6693,113.6472 711.0671,113.7492 711.3731,113.9124 C711.6893,114.096 711.8016,114.2388 711.8628,114.504 C711.9036,114.7692 711.924,114.8509 712.0158,114.9325 C712.1076,115.0243 712.2606,115.0957 712.4034,115.0957 C712.5768,115.0957 712.7502,115.0039 712.8624,114.8611 C712.9338,114.759 712.9542,114.6366 712.9542,114.3612 L712.9542,113.433 C712.9542,113.1473 712.944,113.0657 712.8828,112.9637 C712.7808,112.7903 712.5972,112.6985 712.4034,112.6985 C712.2096,112.6985 712.077,112.7597 711.9342,112.9637 L711.822,112.9127 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="101.8433" x="719.4316" y="118.3549">ConnectParameterResource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="701.1521" x2="822.5806" y1="126.1838" y2="126.1838"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="73.1183" x="704.4163" y="147.1405">Possibly allow to define</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="80.2995" x="704.4163" y="156.0309">a transformation function.</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="107.7189" x="704.4163" y="164.9212">Only resource allowing to connect</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="90.745" x="704.4163" y="173.8115">resources form child stacks.</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="92.7035" x="704.4163" y="182.7019">ERB is inserted to destination</text><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="101.1905" x="704.4163" y="191.5922">to propagate value from source.</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="701.1521" x2="753.053" y1="135.8517" y2="135.8517"/><text fill="#000000" font-family="Helvetica Neue" font-size="7.1813" lengthAdjust="spacingAndGlyphs" textLength="17.6267" x="753.053" y="137.9238">notes</text><line style="stroke: #A80036; stroke-width: 0.65284178187404; stroke-dasharray: 1.0,2.0;" x1="770.6797" x2="822.5806" y1="135.8517" y2="135.8517"/><rect fill="#FEFECE" filter="url(#f1)" height="31.3364" style="stroke: #A80036; stroke-width: 0.9792626728110599;" width="55.4916" x="342.0891" y="19.7706"/><ellipse cx="351.8817" cy="30.216" fill="#ADD1B2" rx="7.1813" ry="7.1813" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><path d="M353.4118,27.3905 C352.7998,27.1048 352.4122,27.013 351.8409,27.013 C350.1272,27.013 348.8215,28.3697 348.8215,30.1446 L348.8215,30.8791 C348.8215,32.5622 350.1986,33.7965 352.0857,33.7965 C352.8814,33.7965 353.6362,33.6027 354.1259,33.2456 C354.5033,32.9804 354.7175,32.6846 354.7175,32.4296 C354.7175,32.1338 354.4625,31.8787 354.1565,31.8787 C354.0137,31.8787 353.881,31.9297 353.7586,32.0522 C353.4628,32.3684 353.4628,32.3684 353.3404,32.4296 C353.065,32.603 352.6162,32.6846 352.1163,32.6846 C350.78,32.6846 349.9334,31.9706 349.9334,30.8587 L349.9334,30.1446 C349.9334,28.9818 350.7494,28.1249 351.8817,28.1249 C352.2591,28.1249 352.657,28.2269 352.963,28.3901 C353.2792,28.5737 353.3914,28.7165 353.4526,28.9818 C353.4934,29.247 353.5138,29.3286 353.6056,29.4102 C353.6974,29.502 353.8504,29.5734 353.9933,29.5734 C354.1667,29.5734 354.3401,29.4816 354.4523,29.3388 C354.5237,29.2368 354.5441,29.1144 354.5441,28.839 L354.5441,27.9107 C354.5441,27.6251 354.5339,27.5435 354.4727,27.4415 C354.3707,27.268 354.1871,27.1762 353.9933,27.1762 C353.7994,27.1762 353.6668,27.2374 353.524,27.4415 L353.4118,27.3905 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="7.8341" lengthAdjust="spacingAndGlyphs" textLength="34.6006" x="361.0215" y="32.8326">Resource</text><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="342.7419" x2="396.9278" y1="40.6615" y2="40.6615"/><line style="stroke: #A80036; stroke-width: 0.9792626728110599;" x1="342.7419" x2="396.9278" y1="45.8842" y2="45.8842"/><path d="M550.0512,183.1736 C543.1076,215.9241 532.3735,266.5539 525.1969,300.4018 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="524.514,303.6236,528.2873,298.4174,525.191,300.4303,523.1781,297.3341,524.514,303.6236" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="22.1966" x="539.9002" y="242.97">where</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="537.5742" y="196.5857">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="4.5699" x="527.2044" y="296.1054">1</text><path d="M637.5483,510.7265 C567.5513,539.0971 449.0115,587.1423 379.8201,615.1864 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="376.7674,616.4236,383.1936,616.6364,379.7925,615.1973,381.2316,611.7962,376.7674,616.4236" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="23.5023" x="558.1797" y="552.417">will be</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="32.6421" x="553.6098" y="562.9238">added to</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="610.4049" y="517.8504">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="14.3625" x="381.7779" y="617.1395">0..1</text><path d="M117.5748,191.5372 C118.1219,222.4877 118.8714,264.9172 119.4159,295.7353 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="119.4746,299.0563,121.9815,293.1354,119.4168,295.7926,116.7596,293.2279,119.4746,299.0563" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="34.6006" x="119.47" y="237.7473">overrides</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="6.5284" x="133.5061" y="248.2541">in</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="107.8543" y="205.1055">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="4.5699" x="119.7082" y="291.5344">1</text><path d="M145.0543,372.4279 C183.8637,429.5306 258.4046,539.2048 298.3232,597.9384 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="300.1975,600.6966,299.0554,594.3691,298.3631,597.9967,294.7355,597.3043,300.1975,600.6966" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="23.5023" x="251.9969" y="484.5215">will be</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="32.6421" x="247.427" y="495.0283">added to</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="141.8003" y="385.6249">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="4.5699" x="294.3923" y="593.1939">1</text><path d="M392.6641,179.8598 C418.9253,212.5991 461.7328,265.9677 489.8109,300.9717 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="491.9744,303.6699,490.3348,297.4527,489.9318,301.1237,486.2609,300.7208,491.9744,303.6699" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="44.3932" x="448.5023" y="242.97">connects to</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="390.7874" y="193.611">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="480.9697" y="296.1626">0..*</text><path d="M330.3987,179.7279 C315.8037,192.8383 300.8993,209.6868 293.126,228.6799 C286.2652,245.4443 284.9106,264.9577 285.8644,282.698 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="286.0687,285.989,288.3108,279.9628,285.8663,282.7311,283.0981,280.2866,286.0687,285.989" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="105.1075" x="293.7788" y="242.97">allowed ComputeResources</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="307.3378" y="190.8476">1..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="281.1353" y="278.4837">1..*</text><path d="M721.7035,196.1567 C714.6071,206.2614 708.1114,217.3597 703.7634,228.6799 C696.2362,248.2815 693.4355,271.3294 692.6586,291.0107 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="692.5411,294.3917,695.3506,288.6083,692.652,291.1294,690.1309,288.4308,692.5411,294.3917" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="25.4608" x="704.4163" y="242.97">source</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="702.1596" y="209.4121">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="4.5699" x="692.9903" y="287.0393">1</text><path d="M751.1467,196.1097 C746.4789,213.8128 740.525,234.1658 733.7942,252.1822 C728.9435,265.1581 722.846,278.8691 716.8921,291.3495 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="715.3775,294.4949,720.2775,290.3317,716.7923,291.5532,715.5708,288.068,715.3775,294.4949" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="41.129" x="741.6283" y="242.97">destination</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="14.3625" x="737.686" y="209.4392">0..1</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="4.5699" x="721.1674" y="287.0535">1</text><path d="M385.1558,179.7736 C392.038,194.0382 399.3368,211.7903 402.8034,228.6799 C404.9036,238.9119 403.199,241.744 402.8034,252.1822 C400.3356,317.3163 402.9744,334.2196 391.7051,398.4188 C379.1992,469.6628 354.4369,550.2809 338.8856,597.3012 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="337.7823,600.6281,342.1108,595.8735,338.8101,597.5299,337.1537,594.2291,337.7823,600.6281" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="47.6575" x="388.4409" y="427.0714">provisions in</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="380.4019" y="193.5086">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="4.5699" x="341.8491" y="593.0635">1</text><path d="M380.2137,622.1882 C399.5548,621.9517 415.2074,627.0085 415.2074,637.3589 C415.2074,648.308 397.691,653.3335 376.8222,652.4353 " fill="none" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><polygon fill="#A80036" points="376.8222,622.2825,382.7679,624.73,380.0852,622.192,382.6232,619.5093,376.8222,622.2825" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="45.0461" x="472.0046" y="615.7427">be parent of</text><polygon fill="#FBFB77" filter="url(#f1)" points="418.4716,625.3427,418.4716,663.2075,567.9724,663.2075,567.9724,631.8711,561.4439,625.3427,418.4716,625.3427" style="stroke: #A80036; stroke-width: 0.65284178187404;"/><line style="stroke: #A80036; stroke-width: 0.65284178187404;" x1="561.4439" x2="561.4439" y1="625.3427" y2="631.8711"/><line style="stroke: #A80036; stroke-width: 0.65284178187404;" x1="567.9724" x2="561.4439" y1="631.8711" y2="631.8711"/><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="126.6513" x="422.3886" y="636.695">Foreign keys cannot be stored on</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="101.1905" x="422.3886" y="647.2018">target HostgroupResource.</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="135.7911" x="422.3886" y="657.7087">It would prevent Stack share-ability.</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="13.0568" x="381.9086" y="626.094">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="8.4869" lengthAdjust="spacingAndGlyphs" textLength="14.3625" x="381.8474" y="659.8561">0..1</text><path d="M328.7731,37.1466 C248.2535,41.3013 72.5497,54.4743 26.7665,91.5832 C4.9999,109.2262 3.9171,122.3203 3.9171,150.3389 C3.9171,150.3389 3.9171,150.3389 3.9171,487.2053 C3.9171,545.837 181.7792,600.3552 272.7945,624.4148 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="328.7098,32.5728,341.9735,36.5029,329.155,41.7034,328.7098,32.5728" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M369.5084,64.4928 C369.5084,82.1653 369.5084,104.6465 369.5084,122.2602 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="364.9386,64.3205,369.5084,51.2637,374.0783,64.3205,364.9386,64.3205" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M409.9481,39.1978 C474.3,45.9867 595.9016,62.3731 626.7281,91.5832 C655.9702,119.2924 677.8065,232.4403 687.8537,294.5119 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="409.4793,43.7436,396.952,37.8752,410.4044,34.6508,409.4793,43.7436" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M693.9708,389.4683 C693.9708,415.0382 693.9708,444.3038 693.9708,464.2246 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="689.4009,389.3665,693.9708,376.3097,698.5407,389.3665,689.4009,389.3665" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M637.797,385.1113 C607.639,411.6134 571.8803,443.0379 548.0783,463.9543 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="634.9598,381.5206,647.7842,376.3345,640.9927,388.3859,634.9598,381.5206" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M328.8997,39.0614 C295.877,43.2572 248.813,52.145 211.5207,70.6922 C191.6456,80.5769 172.4397,95.5061 156.5821,109.821 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="328.4094,34.5176,341.905,37.5579,329.4592,43.5967,328.4094,34.5176" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M330.0004,50.9248 C309.7134,60.3597 285.681,74.0061 268.318,91.5832 C226.6249,133.7913 235.6132,158.2794 204.9923,209.0947 C186.3452,240.04 163.4546,273.9924 146.1471,298.9479 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="328.2658,46.6951,342.0551,45.5963,331.9603,55.0547,328.2658,46.6951" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M331.0587,57.2907 C318.6292,66.2973 306.0751,77.867 298.3487,91.5832 C264.4871,151.6968 272.3604,234.06 282.5897,286.0863 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="328.6725,53.388,342.0591,49.8999,333.7699,60.9747,328.6725,53.388" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M406.2262,58.9013 C418.2294,67.9653 430.8233,79.1596 440.0154,91.5832 C473.4095,136.7154 460.3488,159.3442 486.3671,209.0947 C491.2151,218.365 495.5578,218.9591 499.424,228.6799 C509.0064,252.7724 513.5684,281.8715 515.7391,303.6484 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="403.434,62.5226,395.4844,51.2016,408.7586,55.0939,403.434,62.5226" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M409.8345,43.2285 C431.6871,48.666 458.5038,57.384 479.8387,70.6922 C500.082,83.3195 518.7226,102.4517 532.5949,118.8733 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="408.6561,47.6469,396.9624,40.2554,410.7132,38.7415,408.6561,47.6469" style="stroke: #808080; stroke-width: 0.65284178187404;"/><path d="M410.2268,37.3842 C480.5196,41.219 621.4368,51.1311 666.5515,70.6922 C685.3141,78.826 703.2085,91.8972 718.3283,105.1512 " fill="none" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="none" points="409.9585,41.947,397.1596,36.6975,410.4384,32.8209,409.9585,41.947" style="stroke: #808080; stroke-width: 0.65284178187404;"/><polygon fill="#DDDDDD" points="304.5507,698.726,304.5507,727.8844,544.7965,727.8844,544.7965,698.726,304.5507,698.726" style="stroke: #000000; stroke-width: 0.65284178187404;"/><text fill="#000000" font-family="Helvetica Neue" font-size="9.1398" lengthAdjust="spacingAndGlyphs" textLength="120.7757" x="308.4677" y="710.7004">All types share a single table.</text><text fill="#000000" font-family="Helvetica Neue" font-size="9.1398" lengthAdjust="spacingAndGlyphs" textLength="232.4117" x="308.4677" y="722.0154">It's using STI. Plugins can add another implementations.</text></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="676.9025pt" style="width:820px;height:676px;" version="1.1" viewBox="0 0 820 676" width="820.8467pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="1.8220793140407288"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="3.6441586280814575" dy="3.6441586280814575" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="Helvetica Neue" font-size="16.3987" lengthAdjust="spacingAndGlyphs" textLength="184.03" x="332.985" y="15.6279">Ordered Resource Types</text><rect fill="#FEFECE" filter="url(#f1)" height="77.3051" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="211.3612" x="283.3333" y="28.0453"/><ellipse cx="360.9995" cy="42.622" fill="#A9DCDF" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M362.8927,44.2732 L363.2486,45.17 L362.8927,45.17 C362.4799,45.17 362.3803,45.1843 362.2379,45.2839 C362.0101,45.4262 361.8678,45.6825 361.8678,45.9529 C361.8678,46.1949 361.9959,46.4227 362.1952,46.565 C362.3233,46.6789 362.5084,46.7216 362.8927,46.7216 L365.0422,46.7216 C365.3696,46.7216 365.5689,46.6932 365.697,46.6078 C365.9248,46.4796 366.0671,46.2092 366.0671,45.9529 C366.0671,45.6967 365.939,45.469 365.7397,45.3266 C365.5831,45.1985 365.4408,45.17 365.0137,45.17 L361.9247,37.6966 L358.5795,37.6966 C358.1667,37.6966 358.0528,37.7109 357.9105,37.7963 C357.6827,37.9529 357.5404,38.2091 357.5404,38.4653 C357.5404,38.7216 357.6685,38.9493 357.8678,39.1059 C358.0244,39.2056 358.1809,39.234 358.5795,39.234 L359.5617,39.234 L357.156,45.17 C356.7717,45.17 356.6293,45.1843 356.487,45.2839 C356.2592,45.4262 356.1169,45.6825 356.1169,45.9529 C356.1169,46.4654 356.4585,46.7216 357.1418,46.7216 L359.2059,46.7216 C359.5333,46.7216 359.7325,46.6932 359.8464,46.6078 C360.0884,46.4796 360.2165,46.2092 360.2165,45.9529 C360.2165,45.6967 360.1027,45.469 359.9034,45.3124 C359.7468,45.1985 359.6187,45.17 359.2059,45.17 L358.85,45.17 L359.2059,44.2732 L362.8927,44.2732 Z M362.2521,42.7216 L359.818,42.7216 L361.0422,39.7465 L362.2521,42.7216 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="48.2851" x="379.6758" y="46.421">Resource</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="284.2444" x2="493.7835" y1="57.1986" y2="57.1986"/><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="200.4287" x="288.7996" y="86.4437">A Foreman object to be configured or created</text><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="143.0332" x="288.7996" y="98.8502">to form an Deployment instance.</text><line style="stroke: #A80036; stroke-width: 0.9110396570203644; stroke-dasharray: 1.0,2.0;" x1="284.2444" x2="376.7149" y1="70.6901" y2="70.6901"/><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="24.5981" x="376.7149" y="73.5817">notes</text><line style="stroke: #A80036; stroke-width: 0.9110396570203644; stroke-dasharray: 1.0,2.0;" x1="401.313" x2="493.7835" y1="70.6901" y2="70.6901"/><rect fill="#FEFECE" filter="url(#f1)" height="64.8986" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="251.4469" x="263.2905" y="221.1857"/><ellipse cx="364.6436" cy="235.7624" fill="#DA70D6" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M366.5369,237.4136 L366.8928,238.3104 L366.5369,238.3104 C366.1241,238.3104 366.0244,238.3247 365.8821,238.4243 C365.6543,238.5667 365.512,238.8229 365.512,239.0933 C365.512,239.3353 365.6401,239.5631 365.8394,239.7055 C365.9675,239.8193 366.1525,239.862 366.5369,239.862 L368.6864,239.862 C369.0138,239.862 369.2131,239.8336 369.3412,239.7482 C369.5689,239.62 369.7113,239.3496 369.7113,239.0933 C369.7113,238.8371 369.5832,238.6094 369.3839,238.467 C369.2273,238.3389 369.0849,238.3104 368.6579,238.3104 L365.5689,230.8371 L362.2237,230.8371 C361.8109,230.8371 361.697,230.8513 361.5546,230.9367 C361.3269,231.0933 361.1845,231.3495 361.1845,231.6057 C361.1845,231.862 361.3126,232.0897 361.5119,232.2463 C361.6685,232.346 361.8251,232.3744 362.2237,232.3744 L363.2059,232.3744 L360.8002,238.3104 C360.4158,238.3104 360.2735,238.3247 360.1311,238.4243 C359.9034,238.5667 359.761,238.8229 359.761,239.0933 C359.761,239.6058 360.1027,239.862 360.7859,239.862 L362.85,239.862 C363.1774,239.862 363.3767,239.8336 363.4906,239.7482 C363.7326,239.62 363.8607,239.3496 363.8607,239.0933 C363.8607,238.8371 363.7468,238.6094 363.5475,238.4528 C363.3909,238.3389 363.2628,238.3104 362.85,238.3104 L362.4941,238.3104 L362.85,237.4136 L366.5369,237.4136 Z M365.8963,235.862 L363.4621,235.862 L364.6863,232.8869 L365.8963,235.862 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="40.9968" x="383.3199" y="239.5614">Ordered</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="264.2015" x2="513.8264" y1="250.339" y2="250.339"/><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="240.5145" x="268.7567" y="279.5841">Resources that are ordered and executed via dynflow.</text><line style="stroke: #A80036; stroke-width: 0.9110396570203644; stroke-dasharray: 1.0,2.0;" x1="264.2015" x2="376.7149" y1="263.8305" y2="263.8305"/><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="24.5981" x="376.7149" y="266.7222">notes</text><line style="stroke: #A80036; stroke-width: 0.9110396570203644; stroke-dasharray: 1.0,2.0;" x1="401.313" x2="513.8264" y1="263.8305" y2="263.8305"/><rect fill="#FEFECE" filter="url(#f1)" height="51.0293" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="131.1897" x="5.4662" y="378.3401"/><ellipse cx="19.1318" cy="396.5664" fill="#008000" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M21.2671,392.6233 C20.413,392.2247 19.8721,392.0966 19.0749,392.0966 C16.6834,392.0966 14.8613,393.9899 14.8613,396.4668 L14.8613,397.4917 C14.8613,399.8405 16.7831,401.5629 19.4165,401.5629 C20.5269,401.5629 21.5803,401.2924 22.2635,400.7942 C22.7902,400.4241 23.0892,400.0113 23.0892,399.6554 C23.0892,399.2426 22.7333,398.8867 22.3062,398.8867 C22.1069,398.8867 21.9219,398.9579 21.7511,399.1287 C21.3383,399.57 21.3383,399.57 21.1674,399.6554 C20.7831,399.8974 20.1568,400.0113 19.4592,400.0113 C17.5945,400.0113 16.4129,399.0148 16.4129,397.4632 L16.4129,396.4668 C16.4129,394.844 17.5517,393.6482 19.1318,393.6482 C19.6585,393.6482 20.2137,393.7906 20.6407,394.0184 C21.082,394.2746 21.2386,394.4739 21.324,394.844 C21.381,395.2141 21.4094,395.328 21.5375,395.4419 C21.6657,395.57 21.8792,395.6696 22.0785,395.6696 C22.3205,395.6696 22.5625,395.5415 22.7191,395.3422 C22.8187,395.1999 22.8472,395.029 22.8472,394.6447 L22.8472,393.3493 C22.8472,392.9507 22.8329,392.8369 22.7475,392.6945 C22.6052,392.4525 22.3489,392.3244 22.0785,392.3244 C21.808,392.3244 21.623,392.4098 21.4237,392.6945 L21.2671,392.6233 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="53.7513" x="56.0289" y="393.5982">«Ordered»</text><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" lengthAdjust="spacingAndGlyphs" textLength="102.0364" x="31.8864" y="407.1218">ChildStackResource</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="6.3773" x2="135.7449" y1="414.7928" y2="414.7928"/><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="6.3773" x2="135.7449" y1="422.0811" y2="422.0811"/><rect fill="#FEFECE" filter="url(#f1)" height="84.6045" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="169.4534" x="191.3183" y="362.8524"/><ellipse cx="206.6238" cy="381.0787" fill="#008000" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M208.759,377.1357 C207.9049,376.7371 207.364,376.609 206.5669,376.609 C204.1754,376.609 202.3533,378.5022 202.3533,380.9791 L202.3533,382.004 C202.3533,384.3528 204.275,386.0752 206.9085,386.0752 C208.0188,386.0752 209.0722,385.8048 209.7555,385.3065 C210.2822,384.9364 210.5811,384.5236 210.5811,384.1677 C210.5811,383.7549 210.2252,383.3991 209.7982,383.3991 C209.5989,383.3991 209.4139,383.4702 209.243,383.641 C208.8302,384.0823 208.8302,384.0823 208.6594,384.1677 C208.2751,384.4097 207.6487,384.5236 206.9512,384.5236 C205.0864,384.5236 203.9049,383.5272 203.9049,381.9756 L203.9049,380.9791 C203.9049,379.3563 205.0437,378.1606 206.6238,378.1606 C207.1505,378.1606 207.7057,378.3029 208.1327,378.5307 C208.574,378.7869 208.7306,378.9862 208.816,379.3563 C208.8729,379.7264 208.9014,379.8403 209.0295,379.9542 C209.1576,380.0823 209.3711,380.1819 209.5704,380.1819 C209.8124,380.1819 210.0544,380.0538 210.211,379.8545 C210.3107,379.7122 210.3391,379.5414 210.3391,379.157 L210.3391,377.8616 C210.3391,377.4631 210.3249,377.3492 210.2395,377.2068 C210.0971,376.9648 209.8409,376.8367 209.5704,376.8367 C209.3,376.8367 209.1149,376.9221 208.9156,377.2068 L208.759,377.1357 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="53.7513" x="261.1951" y="378.1106">«Ordered»</text><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" lengthAdjust="spacingAndGlyphs" textLength="136.6559" x="219.7428" y="391.6341">ParameterUpdateResource</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="192.2294" x2="359.8607" y1="399.3051" y2="399.3051"/><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="57.3955" x="196.7846" y="412.4996">Staring value</text><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="158.5209" x="196.7846" y="440.9567">possibly ERB to compute new value</text><line style="stroke: #A80036; stroke-width: 0.9110396570203644; stroke-dasharray: 1.0,2.0;" x1="192.2294" x2="263.746" y1="425.2031" y2="425.2031"/><text fill="#000000" font-family="Helvetica Neue" font-size="10.0214" lengthAdjust="spacingAndGlyphs" textLength="24.5981" x="263.746" y="428.0947">notes</text><line style="stroke: #A80036; stroke-width: 0.9110396570203644; stroke-dasharray: 1.0,2.0;" x1="288.3441" x2="359.8607" y1="425.2031" y2="425.2031"/><rect fill="#FEFECE" filter="url(#f1)" height="51.0293" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="133.9228" x="436.388" y="379.2511"/><ellipse cx="450.0536" cy="397.4775" fill="#008000" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M452.1888,393.5344 C451.3347,393.1358 450.7938,393.0077 449.9967,393.0077 C447.6052,393.0077 445.7831,394.9009 445.7831,397.3778 L445.7831,398.4027 C445.7831,400.7515 447.7048,402.4739 450.3383,402.4739 C451.4486,402.4739 452.502,402.2035 453.1853,401.7053 C453.712,401.3351 454.0109,400.9223 454.0109,400.5665 C454.0109,400.1536 453.655,399.7978 453.228,399.7978 C453.0287,399.7978 452.8436,399.8689 452.6728,400.0398 C452.26,400.481 452.26,400.481 452.0892,400.5665 C451.7048,400.8084 451.0785,400.9223 450.381,400.9223 C448.5162,400.9223 447.3347,399.9259 447.3347,398.3743 L447.3347,397.3778 C447.3347,395.755 448.4735,394.5593 450.0536,394.5593 C450.5803,394.5593 451.1355,394.7016 451.5625,394.9294 C452.0038,395.1856 452.1604,395.3849 452.2458,395.755 C452.3027,396.1251 452.3312,396.239 452.4593,396.3529 C452.5874,396.481 452.8009,396.5807 453.0002,396.5807 C453.2422,396.5807 453.4842,396.4525 453.6408,396.2533 C453.7405,396.1109 453.7689,395.9401 453.7689,395.5557 L453.7689,394.2604 C453.7689,393.8618 453.7547,393.7479 453.6693,393.6055 C453.5269,393.3635 453.2707,393.2354 453.0002,393.2354 C452.7298,393.2354 452.5447,393.3208 452.3454,393.6055 L452.1888,393.5344 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="53.7513" x="488.3173" y="394.5093">«Ordered»</text><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" lengthAdjust="spacingAndGlyphs" textLength="104.7696" x="462.8081" y="408.0328">PuppetRunResource</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="437.299" x2="569.3998" y1="415.7038" y2="415.7038"/><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="437.299" x2="569.3998" y1="422.9921" y2="422.9921"/><rect fill="#FEFECE" filter="url(#f1)" height="51.0293" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="165.8092" x="646.8382" y="379.2511"/><ellipse cx="660.5038" cy="397.4775" fill="#008000" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M662.639,393.5344 C661.7849,393.1358 661.244,393.0077 660.4468,393.0077 C658.0553,393.0077 656.2333,394.9009 656.2333,397.3778 L656.2333,398.4027 C656.2333,400.7515 658.155,402.4739 660.7885,402.4739 C661.8988,402.4739 662.9522,402.2035 663.6355,401.7053 C664.1621,401.3351 664.4611,400.9223 664.4611,400.5665 C664.4611,400.1536 664.1052,399.7978 663.6782,399.7978 C663.4789,399.7978 663.2938,399.8689 663.123,400.0398 C662.7102,400.481 662.7102,400.481 662.5394,400.5665 C662.155,400.8084 661.5287,400.9223 660.8312,400.9223 C658.9664,400.9223 657.7849,399.9259 657.7849,398.3743 L657.7849,397.3778 C657.7849,395.755 658.9237,394.5593 660.5038,394.5593 C661.0304,394.5593 661.5856,394.7016 662.0127,394.9294 C662.4539,395.1856 662.6105,395.3849 662.6959,395.755 C662.7529,396.1251 662.7814,396.239 662.9095,396.3529 C663.0376,396.481 663.2511,396.5807 663.4504,396.5807 C663.6924,396.5807 663.9344,396.4525 664.091,396.2533 C664.1906,396.1109 664.2191,395.9401 664.2191,395.5557 L664.2191,394.2604 C664.2191,393.8618 664.2048,393.7479 664.1194,393.6055 C663.9771,393.3635 663.7209,393.2354 663.4504,393.2354 C663.1799,393.2354 662.9949,393.3208 662.7956,393.6055 L662.639,393.5344 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="53.7513" x="714.7106" y="394.5093">«Ordered»</text><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" lengthAdjust="spacingAndGlyphs" textLength="136.6559" x="673.2583" y="408.0328">RemoteExecutionResource</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="647.7492" x2="811.7363" y1="415.7038" y2="415.7038"/><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="647.7492" x2="811.7363" y1="422.9921" y2="422.9921"/><rect fill="#FEFECE" filter="url(#f1)" height="43.7299" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="100.2144" x="566.6667" y="557.8149"/><ellipse cx="580.3323" cy="572.3915" fill="#ADD1B2" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M582.4675,568.4484 C581.6134,568.0498 581.0725,567.9217 580.2753,567.9217 C577.8838,567.9217 576.0618,569.815 576.0618,572.2919 L576.0618,573.3168 C576.0618,575.6656 577.9835,577.388 580.617,577.388 C581.7273,577.388 582.7807,577.1175 583.464,576.6193 C583.9907,576.2492 584.2896,575.8364 584.2896,575.4805 C584.2896,575.0677 583.9337,574.7118 583.5067,574.7118 C583.3074,574.7118 583.1223,574.783 582.9515,574.9538 C582.5387,575.3951 582.5387,575.3951 582.3679,575.4805 C581.9835,575.7225 581.3572,575.8364 580.6597,575.8364 C578.7949,575.8364 577.6134,574.8399 577.6134,573.2883 L577.6134,572.2919 C577.6134,570.6691 578.7522,569.4733 580.3323,569.4733 C580.859,569.4733 581.4141,569.6157 581.8412,569.8434 C582.2825,570.0997 582.439,570.299 582.5245,570.6691 C582.5814,571.0392 582.6099,571.1531 582.738,571.2669 C582.8661,571.3951 583.0796,571.4947 583.2789,571.4947 C583.5209,571.4947 583.7629,571.3666 583.9195,571.1673 C584.0191,571.025 584.0476,570.8541 584.0476,570.4698 L584.0476,569.1744 C584.0476,568.7758 584.0334,568.6619 583.948,568.5196 C583.8056,568.2776 583.5494,568.1495 583.2789,568.1495 C583.0084,568.1495 582.8234,568.2349 582.6241,568.5196 L582.4675,568.4484 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" lengthAdjust="spacingAndGlyphs" textLength="71.0611" x="593.0868" y="576.043">HostResource</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="567.5777" x2="665.97" y1="586.9681" y2="586.9681"/><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="567.5777" x2="665.97" y1="594.2565" y2="594.2565"/><rect fill="#FEFECE" filter="url(#f1)" height="43.7299" style="stroke: #A80036; stroke-width: 1.3665594855305465;" width="129.3676" x="211.3612" y="557.8149"/><ellipse cx="225.0268" cy="572.3915" fill="#ADD1B2" rx="10.0214" ry="10.0214" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><path d="M227.162,568.4484 C226.3079,568.0498 225.767,567.9217 224.9699,567.9217 C222.5784,567.9217 220.7563,569.815 220.7563,572.2919 L220.7563,573.3168 C220.7563,575.6656 222.678,577.388 225.3115,577.388 C226.4218,577.388 227.4752,577.1175 228.1585,576.6193 C228.6852,576.2492 228.9841,575.8364 228.9841,575.4805 C228.9841,575.0677 228.6282,574.7118 228.2012,574.7118 C228.0019,574.7118 227.8169,574.783 227.646,574.9538 C227.2332,575.3951 227.2332,575.3951 227.0624,575.4805 C226.6781,575.7225 226.0517,575.8364 225.3542,575.8364 C223.4894,575.8364 222.3079,574.8399 222.3079,573.2883 L222.3079,572.2919 C222.3079,570.6691 223.4467,569.4733 225.0268,569.4733 C225.5535,569.4733 226.1087,569.6157 226.5357,569.8434 C226.977,570.0997 227.1336,570.299 227.219,570.6691 C227.2759,571.0392 227.3044,571.1531 227.4325,571.2669 C227.5606,571.3951 227.7741,571.4947 227.9734,571.4947 C228.2154,571.4947 228.4574,571.3666 228.614,571.1673 C228.7137,571.025 228.7421,570.8541 228.7421,570.4698 L228.7421,569.1744 C228.7421,568.7758 228.7279,568.6619 228.6425,568.5196 C228.5001,568.2776 228.2439,568.1495 227.9734,568.1495 C227.703,568.1495 227.5179,568.2349 227.3186,568.5196 L227.162,568.4484 Z "/><text fill="#000000" font-family="Helvetica Neue" font-size="10.9325" lengthAdjust="spacingAndGlyphs" textLength="100.2144" x="237.7814" y="576.043">ParameterResource</text><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="212.2722" x2="339.8178" y1="586.9681" y2="586.9681"/><line style="stroke: #A80036; stroke-width: 1.3665594855305465;" x1="212.2722" x2="339.8178" y1="594.2565" y2="594.2565"/><path d="M389.0139,124.211 C389.0139,155.9899 389.0139,194.3201 389.0139,220.9616 " fill="none" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><polygon fill="none" points="382.6367,124.1372,389.0139,105.9164,395.3912,124.1372,382.6367,124.1372" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><path d="M266.5192,292.1557 C228.8277,306.0181 187.8764,323.1548 152.1436,342.8095 C134.0804,352.7453 115.5918,366.349 100.8393,378.1925 " fill="none" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><polygon fill="none" points="264.5586,286.0845,283.8617,285.9206,268.8742,298.0866,264.5586,286.0845" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><path d="M353.7494,300.7368 C338.9614,320.5337 321.9022,343.3707 307.5424,362.5946 " fill="none" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><polygon fill="none" points="348.766,296.7519,364.7794,285.9707,358.9842,304.3855,348.766,296.7519" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><path d="M424.682,300.5191 C444.3687,326.4554 468.0566,357.6631 484.3524,379.1318 " fill="none" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><polygon fill="none" points="419.5757,304.34,413.6393,285.9707,429.7356,296.6289,419.5757,304.34" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><path d="M490.0236,292.7643 C527.2852,307.7636 569.6685,325.4469 607.6635,342.8095 C632.3071,354.0709 659.211,367.588 681.4759,379.1181 " fill="none" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><polygon fill="none" points="487.5702,298.6514,473.0218,285.9625,492.3076,286.8088,487.5702,298.6514" style="stroke: #808080; stroke-width: 0.9110396570203644;"/><path d="M520.4742,430.57 C541.8235,463.628 578.615,520.5953 600.0107,553.7238 " fill="none" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><polygon fill="#A80036" points="602.5416,557.6424,601.1544,548.7776,600.0702,553.8159,595.0319,552.7318,602.5416,557.6424" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="12.7546" x="572.1329" y="504.8735">on</text><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="18.2208" x="515.1198" y="448.838">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="6.3773" x="595.1127" y="547.1443">1</text><path d="M713.0735,430.57 C691.7242,463.628 654.9327,520.5953 633.537,553.7238 " fill="none" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><polygon fill="#A80036" points="631.0061,557.6424,638.5158,552.7318,633.4775,553.8159,632.3933,548.7776,631.0061,557.6424" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="12.7546" x="674.1693" y="504.8735">on</text><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="18.2208" x="687.566" y="448.9774">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="6.3773" x="642.1945" y="547.296">1</text><path d="M276.045,447.1035 C276.045,480.0786 276.045,524.8362 276.045,552.9871 " fill="none" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><polygon fill="#A80036" points="276.045,557.7005,279.6892,549.5011,276.045,553.1453,272.4009,549.5011,276.045,557.7005" style="stroke: #A80036; stroke-width: 0.9110396570203644;"/><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="41.9078" x="276.9561" y="504.8735">updates</text><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="18.2208" x="262.0236" y="465.9054">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="11.8435" lengthAdjust="spacingAndGlyphs" textLength="6.3773" x="276.898" y="547.1443">1</text><polygon fill="#DDDDDD" points="256.9132,636.1643,256.9132,676.8548,592.1758,676.8548,592.1758,636.1643,256.9132,636.1643" style="stroke: #000000; stroke-width: 0.9110396570203644;"/><text fill="#000000" font-family="Helvetica Neue" font-size="12.7546" lengthAdjust="spacingAndGlyphs" textLength="168.5423" x="262.3794" y="652.8745">All types share a single table.</text><text fill="#000000" font-family="Helvetica Neue" font-size="12.7546" lengthAdjust="spacingAndGlyphs" textLength="324.3301" x="262.3794" y="668.6646">It's using STI. Plugins can add another implementations.</text></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="628.6902pt" style="width:686px;height:628px;" version="1.1" viewBox="0 0 686 628" width="686.9023pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.9106029106029108"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="5.8212058212058215" dy="5.8212058212058215" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><rect fill="#FEFECE" filter="url(#f1)" height="165.2" style="stroke: #A80036; stroke-width: 2.182952182952183;" width="285.2391" x="8.7318" y="11.6424"/><text fill="#000000" font-family="sans-serif" font-size="17.4636" lengthAdjust="spacingAndGlyphs" textLength="43.659" x="129.5218" y="31.196">Stack</text><line style="stroke: #A80036; stroke-width: 2.182952182952183;" x1="10.1871" x2="292.5156" y1="39.0837" y2="39.0837"/><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="241.58" x="17.4636" y="58.7739">Composable pieces of infrastructure</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="237.2141" x="17.4636" y="76.7906">templates. The instructions needed</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="228.4823" x="17.4636" y="94.8072">to assemble a set of resources for</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="231.3929" x="17.4636" y="112.8238">a specific purpose, e.g. Database,</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="267.7755" x="17.4636" y="130.8404">Load balancer, Neutron networked, etc.</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="248.8565" x="17.4636" y="148.857">Stacks are composed from tasks and</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="235.7588" x="17.4636" y="166.8736">define relationships between them.</text><rect fill="#FEFECE" filter="url(#f1)" height="129.1668" style="stroke: #A80036; stroke-width: 2.182952182952183;" width="283.7838" x="10.1871" y="486.7983"/><text fill="#000000" font-family="sans-serif" font-size="17.4636" lengthAdjust="spacingAndGlyphs" textLength="96.0499" x="104.0541" y="506.3519">Deployment</text><line style="stroke: #A80036; stroke-width: 2.182952182952183;" x1="11.6424" x2="292.5156" y1="514.2397" y2="514.2397"/><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="266.3202" x="18.9189" y="533.9299">The result of performing the instructions</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="266.3202" x="18.9189" y="551.9465">in a stack, taking in saved configuration</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="237.2141" x="18.9189" y="569.9631">and any necessary input from user.</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="219.7505" x="18.9189" y="587.9797">It's a composition of created and</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="192.0998" x="18.9189" y="605.9963">configured Foreman objects.</text><rect fill="#FEFECE" filter="url(#f1)" height="75.117" style="stroke: #A80036; stroke-width: 2.182952182952183;" width="267.7755" x="17.4636" y="293.9709"/><text fill="#000000" font-family="sans-serif" font-size="17.4636" lengthAdjust="spacingAndGlyphs" textLength="107.6923" x="97.5052" y="313.5244">Configuration</text><line style="stroke: #A80036; stroke-width: 2.182952182952183;" x1="18.9189" x2="283.7838" y1="321.4122" y2="321.4122"/><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="250.3119" x="26.1954" y="341.1024">Holds configuration for a stack, which</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="218.2952" x="26.1954" y="359.119">can be applied to a deployment.</text><rect fill="#FEFECE" filter="url(#f1)" height="93.1336" style="stroke: #A80036; stroke-width: 2.182952182952183;" width="279.4179" x="394.3867" y="504.9896"/><text fill="#000000" font-family="sans-serif" font-size="17.4636" lengthAdjust="spacingAndGlyphs" textLength="114.9688" x="476.6112" y="524.5432">DeployedTask</text><line style="stroke: #A80036; stroke-width: 2.182952182952183;" x1="395.842" x2="672.3493" y1="532.4309" y2="532.4309"/><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="227.027" x="403.1185" y="552.1211">Holds results of deployed tasks to</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="234.3035" x="403.1185" y="570.1377">enable viewing the resources used</text><text fill="#000000" font-family="sans-serif" font-size="14.553" lengthAdjust="spacingAndGlyphs" textLength="261.9543" x="403.1185" y="588.1544">or created by the deployment in future.</text><path d="M293.9956,69.3204 C323.611,71.9807 344.9064,80.4054 344.9064,94.5946 C344.9064,107.5642 327.1139,115.7183 301.438,119.0553 " fill="none" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><polygon fill="#A80036" points="293.9956,119.8688,307.648,124.2334,301.2291,119.0787,306.3838,112.6599,293.9956,119.8688" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="101.8711" x="375.4678" y="71.1482">has children</text><polygon fill="#FBFB77" filter="url(#f1)" points="352.183,92.5485,352.183,130.3863,494.8025,130.3863,494.8025,107.1015,480.2495,92.5485,352.183,92.5485" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><line style="stroke: #A80036; stroke-width: 1.4553014553014554;" x1="480.2495" x2="480.2495" y1="92.5485" y2="107.1015"/><line style="stroke: #A80036; stroke-width: 1.4553014553014554;" x1="494.8025" x2="480.2495" y1="107.1015" y2="107.1015"/><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="112.0582" x="360.9148" y="117.8547">acyclic graph</text><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="29.106" x="305.8431" y="80.853">0..*</text><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="29.106" x="305.3889" y="132.6639">0..*</text><path d="M151.3514,185.0387 C151.3514,222.7237 151.3514,264.4356 151.3514,293.7293 " fill="none" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><polygon fill="#A80036" points="151.3514,177.5599,145.5301,190.6576,151.3514,184.8364,157.1726,190.6576,151.3514,177.5599" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="171.7256" x="152.8067" y="241.4185">has configuration for</text><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="29.106" x="129.211" y="206.2948">0..*</text><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="29.106" x="143.187" y="276.9997">0..*</text><path d="M151.3514,377.4615 C151.3514,409.0401 151.3514,451.5262 151.3514,486.6208 " fill="none" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><polygon fill="#A80036" points="151.3514,370.0861,145.5301,383.1838,151.3514,377.3626,157.1726,383.1838,151.3514,370.0861" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="218.2952" x="152.8067" y="433.5183">deploys with configuration</text><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="10.1871" x="138.0686" y="398.6736">1</text><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="29.106" x="142.764" y="470.0018">0..*</text><path d="M300.1632,551.5593 C331.4522,551.5593 362.7412,551.5593 394.0316,551.5593 " fill="none" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><polygon fill="#A80036" points="292.6378,551.5593,305.7356,557.3805,299.9143,551.5593,305.7356,545.738,292.6378,551.5593" style="stroke: #A80036; stroke-width: 1.4553014553014554;"/><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="10.1871" x="305.5052" y="563.573">1</text><text fill="#000000" font-family="sans-serif" font-size="18.9189" lengthAdjust="spacingAndGlyphs" textLength="29.106" x="353.7724" y="550.5474">0..*</text></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="759.1379pt" style="width:836px;height:759px;" version="1.1" viewBox="0 0 836 759" width="836.8103pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.9310344827586206"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="5.862068965517241" dy="5.862068965517241" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="Helvetica Neue" font-size="26.3793" lengthAdjust="spacingAndGlyphs" textLength="183.1897" x="333.4052" y="25.1393">Class Overview</text><rect fill="#FEFECE" filter="url(#f1)" height="111.9304" style="stroke: #A80036; stroke-width: 2.1982758620689653;" width="315.0862" x="439.6552" y="193.8643"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.5862" lengthAdjust="spacingAndGlyphs" textLength="96.7241" x="548.8362" y="213.5551">Deployment</text><line style="stroke: #A80036; stroke-width: 2.1982758620689653;" x1="441.1207" x2="753.2759" y1="221.4982" y2="221.4982"/><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="268.1897" x="448.4483" y="241.3267">The result of performing the instructions</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="271.1207" x="448.4483" y="259.4697">in a stack, taking in any necessary input</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="269.6552" x="448.4483" y="277.6128">parameters from user. It's a composition</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="297.5" x="448.4483" y="295.7559">of created and configured Foreman objects.</text><rect fill="#FEFECE" filter="url(#f1)" height="130.0735" style="stroke: #A80036; stroke-width: 2.1982758620689653;" width="287.2414" x="11.7241" y="423.2177"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.5862" lengthAdjust="spacingAndGlyphs" textLength="43.9655" x="133.3621" y="442.9085">Stack</text><line style="stroke: #A80036; stroke-width: 2.1982758620689653;" x1="13.1897" x2="297.5" y1="450.8517" y2="450.8517"/><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="243.2759" x="20.5172" y="470.6801">Composable pieces of infrastructure</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="238.8793" x="20.5172" y="488.8232">templates. The instructions needed</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="230.0862" x="20.5172" y="506.9663">to assemble a set of resources for</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="233.0172" x="20.5172" y="525.1094">a specific purpose, e.g. Database,</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="269.6552" x="20.5172" y="543.2524">Load balancer, Neutron networked, etc.</text><rect fill="#FEFECE" filter="url(#f1)" height="75.6443" style="stroke: #A80036; stroke-width: 2.1982758620689653;" width="326.8103" x="155.3448" y="671.6229"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.5862" lengthAdjust="spacingAndGlyphs" textLength="77.6724" x="279.9138" y="691.3137">Resource</text><line style="stroke: #A80036; stroke-width: 2.1982758620689653;" x1="156.8103" x2="480.6897" y1="699.2568" y2="699.2568"/><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="309.2241" x="164.1379" y="719.0853">A Foreman object to be configured or created</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="219.8276" x="164.1379" y="737.2284">to form an Deployment instance.</text><rect fill="#FEFECE" filter="url(#f1)" height="57.5012" style="stroke: #A80036; stroke-width: 2.1982758620689653;" width="193.4483" x="586.2069" y="681.1488"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.5862" lengthAdjust="spacingAndGlyphs" textLength="134.8276" x="615.5172" y="700.8396">AForemanObject</text><line style="stroke: #A80036; stroke-width: 2.1982758620689653;" x1="587.6724" x2="778.1897" y1="708.7827" y2="708.7827"/><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="175.8621" x="595" y="728.6111">E.g. Host, Hostgroup, etc.</text><rect fill="#FEFECE" filter="url(#f1)" height="57.5012" style="stroke: #A80036; stroke-width: 2.1982758620689653;" width="271.1207" x="461.6379" y="45.1143"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.5862" lengthAdjust="spacingAndGlyphs" textLength="205.1724" x="494.6121" y="64.8051">DeploymentConfiguration</text><line style="stroke: #A80036; stroke-width: 2.1982758620689653;" x1="463.1034" x2="731.2931" y1="72.7482" y2="72.7482"/><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="253.5345" x="470.431" y="92.5767">Holds configuration for a deployment.</text><rect fill="#FEFECE" filter="url(#f1)" height="111.9304" style="stroke: #A80036; stroke-width: 2.1982758620689653;" width="293.1034" x="8.7931" y="193.8643"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.5862" lengthAdjust="spacingAndGlyphs" textLength="203.7069" x="53.4914" y="213.5551">SavedStackConfiguration</text><line style="stroke: #A80036; stroke-width: 2.1982758620689653;" x1="10.2586" x2="300.431" y1="221.4982" y2="221.4982"/><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="215.431" x="17.5862" y="241.3267">Stores pre-saved configurations</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="253.5345" x="17.5862" y="259.4697">for a stack. It can be cloned to create</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="275.5172" x="17.5862" y="277.6128">a new deployment based on the existing</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="92.3276" x="17.5862" y="295.7559">configuration.</text><rect fill="#FEFECE" filter="url(#f1)" height="111.9304" style="stroke: #A80036; stroke-width: 2.1982758620689653;" width="281.3793" x="542.2414" y="432.7436"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.5862" lengthAdjust="spacingAndGlyphs" textLength="212.5" x="576.681" y="452.4344">DeployedAForemanObject</text><line style="stroke: #A80036; stroke-width: 2.1982758620689653;" x1="543.7069" x2="822.1552" y1="460.3775" y2="460.3775"/><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="123.1034" x="551.0345" y="480.206">Association entity.</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="263.7931" x="551.0345" y="498.3491">Represents AForemanObject deployed</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="233.0172" x="551.0345" y="516.4921">in given Deployment fulfilling given</text><text fill="#000000" font-family="Helvetica Neue" font-size="14.6552" lengthAdjust="spacingAndGlyphs" textLength="68.8793" x="551.0345" y="534.6352">Resource.</text><path d="M596.4655,102.3383 C596.4655,124.7578 596.4655,156.8013 596.4655,185.272 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="596.4655,193.196,602.3276,180.0063,596.4655,185.8684,590.6034,180.0063,596.4655,193.196" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="10.2586" x="582.3519" y="132.3631">1</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="10.2586" x="597.4025" y="176.5705">1</text><path d="M155.3448,305.5601 C155.3448,338.3907 155.3448,380.2268 155.3448,415.597 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="155.3448,423.0419,161.2069,409.8522,155.3448,415.7143,149.4828,409.8522,155.3448,423.0419" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="132.6162" y="335.8618">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="10.2586" x="156.3074" y="406.305">1</text><path d="M493.5994,305.2597 C430.7126,339.3139 349.7721,383.1446 282.8375,419.3927 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="275.9921,423.099,290.3817,421.9724,282.4354,419.6094,284.7983,411.6631,275.9921,423.099" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="65.9483" x="403.0172" y="369.5637">deploys</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="411.5375" y="336.1813">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="311.3914" y="409.9957">1..*</text><path d="M298.9904,466.1632 C328.8137,468.5066 350.2586,475.9309 350.2586,488.4332 C350.2586,499.8613 332.3412,507.0453 306.4851,509.9866 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="298.9904,510.7032,312.6793,515.2799,306.2846,510.004,311.5605,503.6092,298.9904,510.7032" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="102.5862" x="381.0345" y="464.8223">has children</text><polygon fill="#FBFB77" filter="url(#f1)" points="357.5862,486.3727,357.5862,524.4762,501.2069,524.4762,501.2069,501.0279,486.5517,486.3727,357.5862,486.3727" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><line style="stroke: #A80036; stroke-width: 1.4655172413793103;" x1="486.5517" x2="486.5517" y1="486.3727" y2="501.0279"/><line style="stroke: #A80036; stroke-width: 1.4655172413793103;" x1="501.2069" x2="486.5517" y1="501.0279" y2="501.0279"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="112.8448" x="366.3793" y="511.8566">acyclic graph</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="310.5506" y="477.9185">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="310.882" y="523.5966">0..*</text><path d="M215.2009,569.8588 C236.2678,598.517 259.4053,629.9922 278.3867,655.8154 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="289.9057,671.484,286.8168,657.3847,285.5656,665.58,277.3704,664.3288,289.9057,671.484" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><line style="stroke: #A80036; stroke-width: 1.4655172413793103;" x1="285.5656" x2="278.6212" y1="665.58" y2="656.1334"/><polygon fill="#A80036" points="203.7113,554.2291,204.1964,564.786,214.1277,568.3985,213.6426,557.8417,203.7113,554.2291" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="130.431" x="256.4655" y="618.7016">is composed of</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="10.2586" x="206.2506" y="583.0146">1</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="266.4686" y="654.3672">1..*</text><path d="M574.3479,554.2804 C517.8303,588.5545 449.9358,629.728 398.2235,661.0876 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="381.3466,671.3222,395.6642,669.4948,387.612,667.5224,389.5845,659.4702,381.3466,671.3222" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><line style="stroke: #A80036; stroke-width: 1.4655172413793103;" x1="387.612" x2="397.6366" y1="667.5224" y2="661.4433"/><polygon fill="#A80036" points="590.8482,544.2753,580.2899,543.8218,575.8104,553.3934,586.3687,553.847,590.8482,544.2753" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="516.5955" y="574.8701">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="10.2586" x="429.2228" y="654.7366">1</text><path d="M623.3328,323.7809 C633.7395,352.5329 645.6307,385.3839 656.0403,414.1418 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="662.6366,432.364,665.1558,422.1007,656.651,415.8278,654.1317,426.0911,662.6366,432.364" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="616.738,305.5601,615.7146,319.9575,619.2318,312.4503,626.7389,315.9675,616.738,305.5601" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><line style="stroke: #A80036; stroke-width: 1.4655172413793103;" x1="619.2318" x2="623.2222" y1="312.4503" y2="323.4754"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="10.2586" x="612.0346" y="335.6542">1</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="646.3941" y="415.6351">0..*</text><path d="M682.931,563.4296 C682.931,595.9421 682.931,633.052 682.931,661.7608 " fill="none" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><polygon fill="#A80036" points="682.931,680.9947,688.7931,667.8051,682.931,673.6671,677.069,667.8051,682.931,680.9947" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><line style="stroke: #A80036; stroke-width: 1.4655172413793103;" x1="682.931" x2="682.931" y1="673.6671" y2="661.9429"/><polygon fill="#A80036" points="682.931,544.2753,677.069,553.0684,682.931,561.8615,688.7931,553.0684,682.931,544.2753" style="stroke: #A80036; stroke-width: 1.4655172413793103;"/><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="29.3103" x="660.2027" y="574.5498">0..*</text><text fill="#000000" font-family="Helvetica Neue" font-size="19.0517" lengthAdjust="spacingAndGlyphs" textLength="10.2586" x="684.4567" y="664.0384">1</text></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="514pt" style="width:368px;height:514px;" version="1.1" viewBox="0 0 368 514" width="368pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><rect fill="#FEFECE" filter="url(#f1)" height="50.0122" style="stroke: #A80036; stroke-width: 1.5;" width="121" x="6" y="23"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="80" x="26.5" y="34.7481">«TakeSubnet»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="107" x="13" y="51.5922">ProvisioningSubnet</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="7" x2="126" y1="57.0122" y2="57.0122"/><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="198" x="161" y="8.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="56" x="232" y="20.2481">«TakeOs»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="59" x="230.5" y="37.0922">SatelliteOs</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="162" x2="358" y1="42.5122" y2="42.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="186" x="167" y="56.0422">description: OS for the Satellite machine</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="59" x="167" y="68.4222">family: RHEL</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="73" x="167" y="80.8022">version: '>= 6.5'</text><rect fill="#FEFECE" filter="url(#f1)" height="103.9121" style="stroke: #A80036; stroke-width: 1.5;" width="211" x="58" y="148"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="66" x="130.5" y="159.7481">«TakeHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="91" x="118" y="176.5922">SatelliteMachine</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="59" x2="268" y1="182.0122" y2="182.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="38" x="64" y="195.5422">count: 1</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="67" x="64" y="207.9222">name: <input></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="199" x="64" y="220.3022">subnet: <reference to ProvisioningSubnet></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="138" x="64" y="232.6822">os: <reference to SatelliteOs></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="107" x="64" y="245.0622">activation_key: <input></text><rect fill="#FEFECE" filter="url(#f1)" height="54.3922" style="stroke: #A80036; stroke-width: 1.5;" width="185" x="71" y="312"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="90" x="118.5" y="323.7481">«ProvisionHost»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="95" x="116" y="340.5922">ProvisionSatellite</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="72" x2="255" y1="346.0122" y2="346.0122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="173" x="77" y="359.5422">host: <reference to SatelliteMachine></text><rect fill="#FEFECE" filter="url(#f1)" height="79.1522" style="stroke: #A80036; stroke-width: 1.5;" width="185" x="71" y="426.5"/><text fill="#000000" font-family="sans-serif" font-size="12" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="111" x="108" y="438.2481">«RemoteExecution»</text><text fill="#000000" font-family="sans-serif" font-size="12" lengthAdjust="spacingAndGlyphs" textLength="76" x="125.5" y="455.0922">InstallSatellite</text><line style="stroke: #A80036; stroke-width: 1.5;" x1="72" x2="255" y1="460.5122" y2="460.5122"/><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="173" x="77" y="474.0422">host: <reference to SatelliteMachine></text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="139" x="77" y="486.4222">command: "katello-installer ..."</text><text fill="#000000" font-family="sans-serif" font-size="10" lengthAdjust="spacingAndGlyphs" textLength="123" x="77" y="498.8022">parameters: [password, ...]</text><path d="M82.0176,73.1 C94.1753,92.151 111.373,119.1 126.795,143.266 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="129.652,147.743,128.1813,138.0046,126.9618,143.5284,121.438,142.3089,129.652,147.743" style="stroke: #808080; stroke-width: 1.0;"/><path d="M234.768,87.539 C223.952,104.487 211.114,124.606 199.306,143.108 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="196.328,147.774,204.542,142.3399,199.0182,143.5594,197.7987,138.0356,196.328,147.774" style="stroke: #808080; stroke-width: 1.0;"/><path d="M163,252.154 C163,270.426 163,290.406 163,306.591 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="163,311.926,167,302.926,163,306.926,159,302.926,163,311.926" style="stroke: #808080; stroke-width: 1.0;"/><path d="M163,366.245 C163,382.234 163,402.835 163,421.1601 " fill="none" style="stroke: #808080; stroke-width: 1.0;"/><polygon fill="#808080" points="163,426.2627,167,417.2627,163,421.2627,159,417.2627,163,426.2627" style="stroke: #808080; stroke-width: 1.0;"/></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="1361.1845pt" style="width:3453px;height:1361px;" version="1.1" viewBox="0 0 3453 1361" width="3453.791pt"><defs><filter height="300%" id="f1" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.6405130139569972"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="5.2810260279139944" dy="5.2810260279139944" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="Helvetica Neue" font-size="23.7646" lengthAdjust="spacingAndGlyphs" textLength="104.3003" x="1697.8499" y="22.6475">Solr stack</text><polygon fill="#FFFFFF" filter="url(#f1)" points="39.6077,766.1235,266.6918,766.1235,275.9336,797.8149,1588.2686,797.8149,1588.2686,1352.3174,39.6077,1352.3174,39.6077,766.1235" style="stroke: #000000; stroke-width: 2.6405130139569972;"/><line style="stroke: #000000; stroke-width: 2.6405130139569972;" x1="39.6077" x2="275.9336" y1="797.8149" y2="797.8149"/><text fill="#000000" font-family="Helvetica Neue" font-size="18.4836" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="219.1626" x="43.5685" y="788.1797">zookeeper_server_stack</text><polygon fill="#FFFFFF" filter="url(#f1)" points="1666.1637,766.1235,1895.8883,766.1235,1905.1301,797.8149,3444.5492,797.8149,3444.5492,1344.3959,1666.1637,1344.3959,1666.1637,766.1235" style="stroke: #000000; stroke-width: 2.6405130139569972;"/><line style="stroke: #000000; stroke-width: 2.6405130139569972;" x1="1666.1637" x2="1905.1301" y1="797.8149" y2="797.8149"/><text fill="#000000" font-family="Helvetica Neue" font-size="18.4836" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="221.8031" x="1670.1245" y="788.1797">solr_single_shard_stack</text><rect fill="#FEFECE" filter="url(#f1)" height="153.5354" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="318.1818" x="396.077" y="980.0051"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="235.0057" x="437.665" y="995.5156">«MachineRestrictionsResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="174.2739" x="468.0309" y="1017.7541">zk_machine_restrictions</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="397.3972" x2="712.9385" y1="1024.9099" y2="1024.9099"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="51.49" x="403.9985" y="1042.773">CPU = 1</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="91.0977" x="403.9985" y="1059.1178">memory = 4GB</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="40.928" x="403.9985" y="1075.4625">NOTE:</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="281.2146" x="403.9985" y="1091.8073">This resource is not part of the current design.</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="302.3387" x="403.9985" y="1108.152">The machine requirements can be solved multiple</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="34.3267" x="403.9985" y="1124.4968">ways.</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="184.8359" x="336.6654" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="361.0902" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="38.2874" x="409.9396" y="1261.3414">zk_id</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="337.9857" x2="520.1811" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="66.0128" x="344.5869" y="1286.3603">name = 'id'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="168.9928" x="344.5869" y="1302.7051">value = "<%= @host.id %>"</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="149.189" x="1408.7137" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="1415.315" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="52.8103" x="1456.9031" y="1261.3414">zk_ring</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1410.0339" x2="1556.5824" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="99.0192" x="1416.6352" y="1286.3603">name = 'servers'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="56.771" x="1416.6352" y="1302.7051">value = []</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="186.1562" x="567.7103" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="592.7952" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="85.8167" x="617.88" y="1261.3414">zk_client_ip</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="569.0306" x2="752.5462" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="126.7446" x="575.6318" y="1286.3603">name = 'zk_client_ip'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="170.3131" x="575.6318" y="1302.7051">value = "$::ipaddress_eth0"</text><rect fill="#FEFECE" filter="url(#f1)" height="66.0289" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="176.9144" x="759.1475" y="1023.5736"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="163.7118" x="765.7488" y="1039.084">«HostgroupResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="69.9736" x="812.6179" y="1061.3226">zk_server</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="760.4677" x2="934.7416" y1="1068.4784" y2="1068.4784"/><rect fill="#FEFECE" filter="url(#f1)" height="71.8117" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="158.4308" x="996.7937" y="826.8553"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="121.4636" x="1015.2773" y="842.3658">«HostResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="139.9472" x="1006.0355" y="864.6044">zk_server_instance</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="998.1139" x2="1153.9042" y1="871.7602" y2="871.7602"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="58.0913" x="1004.7152" y="889.6232">count = 4</text><rect fill="#FEFECE" filter="url(#f1)" height="71.8117" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="187.4764" x="982.2708" y="1020.933"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="174.2739" x="988.8721" y="1036.4435">«SybnetTypeResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="73.9344" x="1039.0419" y="1058.6821">zk_subnet</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="983.5911" x2="1168.427" y1="1065.8379" y2="1065.8379"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="128.0649" x="990.1924" y="1083.7009">name = 'provisioning'</text><rect fill="#FEFECE" filter="url(#f1)" height="66.0289" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="191.4372" x="1215.9562" y="1023.5736"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="170.3131" x="1226.5183" y="1039.084">«PuppetRunResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="172.9536" x="1225.198" y="1061.3226">zk_server_instance_run</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1217.2765" x2="1406.0732" y1="1068.4784" y2="1068.4784"/><rect fill="#FEFECE" filter="url(#f1)" height="104.5012" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="331.3844" x="798.7552" y="1215.6709"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="176.9144" x="875.9902" y="1231.1814">«PuppetclassResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="147.8687" x="890.513" y="1253.4199">zk_zookeeper_class</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="800.0754" x2="1128.8193" y1="1260.5757" y2="1260.5757"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="120.1433" x="806.6767" y="1278.4388">name = 'zookeeper'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="315.5413" x="806.6767" y="1294.7835">source = https://github.com/deric/puppet-zookeeper</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="184.8359" x="806.6767" y="1311.1283">client_ip => $::ipaddress_eth0</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="188.7967" x="1175.0283" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="1201.4334" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="170.3131" x="1184.2701" y="1261.3414">zk_install_java_params</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1176.3485" x2="1362.5047" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="122.7839" x="1182.9498" y="1286.3603">name = 'install_java'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="77.8951" x="1182.9498" y="1302.7051">value = 'true'</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="208.6005" x="81.8559" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="118.163" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="190.1169" x="91.0977" y="1261.3414">zk_java_pacakge_params</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="83.1762" x2="289.1362" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="141.2674" x="89.7774" y="1286.3603">name = 'java_package'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="192.7575" x="89.7774" y="1302.7051">value = 'openjdk-7-jre-headless'</text><rect fill="#FEFECE" filter="url(#f1)" height="153.5354" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="318.1818" x="2000.1886" y="980.0051"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="235.0057" x="2041.7767" y="995.5156">«MachineRestrictionsResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="97.699" x="2110.43" y="1017.7541">solr_machine</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2001.5089" x2="2317.0502" y1="1024.9099" y2="1024.9099"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="51.49" x="2008.1101" y="1042.773">CPU = 4</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="99.0192" x="2008.1101" y="1059.1178">memory = 16GB</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="40.928" x="2008.1101" y="1075.4625">NOTE:</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="281.2146" x="2008.1101" y="1091.8073">This resource is not part of the current design.</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="302.3387" x="2008.1101" y="1108.152">The machine requirements can be solved multiple</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="34.3267" x="2008.1101" y="1124.4968">ways.</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="190.1169" x="1697.8499" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="1724.9151" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="88.4572" x="1748.6797" y="1261.3414">solr_zk_ring</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1699.1701" x2="1886.6465" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="99.0192" x="1705.7714" y="1286.3603">name = 'servers'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="174.2739" x="1705.7714" y="1302.7051">value =["$::ipaddress_eth0"]</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="149.189" x="2996.9823" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="3003.5836" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="114.8623" x="3014.1456" y="1261.3414">solr_client_fqdn</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2998.3025" x2="3144.851" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="122.7839" x="3004.9038" y="1286.3603">name = 'client_fqdn'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="133.3459" x="3004.9038" y="1302.7051">value = '$::fqdn_eth0'</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="211.241" x="3191.06" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="135.9864" x="3228.6873" y="1239.1029">«ParamResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="76.5749" x="3258.3931" y="1261.3414">solr_home</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="3192.3802" x2="3400.9808" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="132.0257" x="3198.9815" y="1286.3603">name = 'home_folder'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="195.398" x="3198.9815" y="1302.7051">value = '/home/lukasz/solr-4.2.1'</text><rect fill="#FEFECE" filter="url(#f1)" height="66.0289" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="176.9144" x="2363.2591" y="1023.5736"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="163.7118" x="2369.8604" y="1039.084">«HostgroupResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="80.5356" x="2411.4485" y="1061.3226">solr_server</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2364.5794" x2="2538.8533" y1="1068.4784" y2="1068.4784"/><rect fill="#FEFECE" filter="url(#f1)" height="71.8117" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="168.9928" x="2367.2199" y="826.8553"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="121.4636" x="2390.9845" y="842.3658">«HostResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="150.5092" x="2376.4617" y="864.6044">solr_server_instance</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2368.5402" x2="2534.8925" y1="871.7602" y2="871.7602"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="58.0913" x="2375.1415" y="889.6232">count = 1</text><rect fill="#FEFECE" filter="url(#f1)" height="71.8117" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="187.4764" x="2586.3825" y="1020.933"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="174.2739" x="2592.9838" y="1036.4435">«SybnetTypeResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="84.4964" x="2637.8725" y="1058.6821">solr_subnet</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2587.7028" x2="2772.5387" y1="1065.8379" y2="1065.8379"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="128.0649" x="2594.304" y="1083.7009">name = 'provisioning'</text><rect fill="#FEFECE" filter="url(#f1)" height="66.0289" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="201.9992" x="2820.0679" y="1023.5736"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="170.3131" x="2835.911" y="1039.084">«PuppetRunResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="183.5157" x="2829.3097" y="1061.3226">solr_server_instance_run</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2821.3882" x2="3020.7469" y1="1068.4784" y2="1068.4784"/><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="264.0513" x="1934.1758" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="176.9144" x="1977.7442" y="1239.1029">«PuppetclassResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="76.5749" x="2027.914" y="1261.3414">java_class</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1935.496" x2="2196.9068" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="153.1498" x="1942.0973" y="1286.3603">name = 'puppetlabs-java'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="248.2082" x="1942.0973" y="1302.7051">source = 'https://github.com/puppetlabs/'</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="377.5934" x="2244.4361" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="176.9144" x="2344.7756" y="1239.1029">«PuppetclassResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="93.7382" x="2386.3636" y="1261.3414">tomcat_class</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2245.7563" x2="2620.7092" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="168.9928" x="2252.3576" y="1286.3603">name = 'puppetlabs-tomcat'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="361.7503" x="2252.3576" y="1302.7051">source = 'https://github.com/puppetlabs/puppetlabs-tomcat'</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="282.5349" x="2668.2384" y="1223.5924"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="176.9144" x="2721.0487" y="1239.1029">«PuppetclassResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="124.1041" x="2747.4538" y="1261.3414">solr_install_class</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2669.5587" x2="2949.453" y1="1268.4973" y2="1268.4973"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="114.8623" x="2676.1599" y="1286.3603">name = 'solr-shard'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="266.6918" x="2676.1599" y="1302.7051">source = 'https://github.com/needs/creating'</text><rect fill="#FEFECE" filter="url(#f1)" height="66.0289" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="179.5549" x="1289.8906" y="39.9825"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="166.3523" x="1296.4919" y="55.4929">«ChildStackResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="157.1105" x="1301.1128" y="77.7315">zookeeper_childstack</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1291.2109" x2="1468.1252" y1="84.8873" y2="84.8873"/><rect fill="#FEFECE" filter="url(#f1)" height="66.0289" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="228.4044" x="1552.6217" y="39.9825"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="166.3523" x="1583.6477" y="55.4929">«ChildStackResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="209.9208" x="1561.8634" y="77.7315">solr_single_shard_childstack</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1553.9419" x2="1779.7058" y1="84.8873" y2="84.8873"/><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="310.2603" x="1493.2101" y="212.2759"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="188.7967" x="1553.9419" y="227.7864">«ParamUpdateResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="167.6726" x="1564.504" y="250.025">update_zk_ring_param</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1494.5304" x2="1802.1501" y1="257.1808" y2="257.1808"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="99.0192" x="1501.1316" y="275.0438">name = 'servers'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="294.4172" x="1501.1316" y="291.3886">value = '<%= hosts_in('zk_server').map(&:ip) %>'</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="310.2603" x="1662.2029" y="407.6739"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="188.7967" x="1722.9347" y="423.1844">«ParamUpdateResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="203.3195" x="1715.6733" y="445.4229">update_solr_zk_ring_param</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1663.5232" x2="1971.143" y1="452.5787" y2="452.5787"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="99.0192" x="1670.1245" y="470.4418">name = 'servers'</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="294.4172" x="1670.1245" y="486.7866">value = '<%= hosts_in('zk_server').map(&:ip) %>'</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="314.221" x="1546.0204" y="603.0719"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="170.3131" x="1617.9743" y="618.5823">«PuppetRunResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="182.1954" x="1612.0332" y="640.8209">zk_server_instance_run2</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="1547.3406" x2="1858.9212" y1="647.9767" y2="647.9767"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="36.9672" x="1553.9419" y="665.8398">NOTE</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="298.378" x="1553.9419" y="682.1845">Scond run to propagate the updated parameters</text><rect fill="#FEFECE" filter="url(#f1)" height="88.1564" style="stroke: #A80036; stroke-width: 1.9803847604677478;" width="314.221" x="2103.1686" y="603.0719"/><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" font-style="italic" lengthAdjust="spacingAndGlyphs" textLength="170.3131" x="2175.1226" y="618.5823">«PuppetRunResource»</text><text fill="#000000" font-family="Helvetica Neue" font-size="15.8431" lengthAdjust="spacingAndGlyphs" textLength="192.7575" x="2163.9004" y="640.8209">solr_server_instance_run2</text><line style="stroke: #A80036; stroke-width: 1.9803847604677478;" x1="2104.4889" x2="2416.0694" y1="647.9767" y2="647.9767"/><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="36.9672" x="2111.0902" y="665.8398">NOTE</text><text fill="#000000" font-family="Helvetica Neue" font-size="13.2026" lengthAdjust="spacingAndGlyphs" textLength="298.378" x="2111.0902" y="682.1845">Scond run to propagate the updated parameters</text><path d="M1028.0441,903.2586 C986.0771,938.9187 925.8721,990.0747 886.7529,1023.3148 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1033.5826,898.5519,1021.108,902.221,1028.5519,902.8261,1027.9468,910.2701,1033.5826,898.5519" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M869.1156,1095.6913 C887.6388,1129.3684 914.5272,1178.2561 934.9185,1215.3329 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="865.7582,1089.5864,866.8544,1102.5431,868.9383,1095.3712,876.1102,1097.455,865.7582,1089.5864" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M797.2567,1094.0132 C778.3638,1107.2277 756.3763,1121.6475 735.3829,1133.1549 C654.2386,1177.6343 628.5319,1177.4904 543.9457,1215.0108 C536.7226,1218.215 529.2605,1221.5619 521.768,1224.9483 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="803.017,1089.9561,790.2619,1092.4835,797.6208,1093.7585,796.3458,1101.1173,803.017,1089.9561" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M892.166,1093.666 C911.4879,1108.0119 935.0347,1123.315 958.5062,1133.1549 C1136.4887,1207.7705 1203.1748,1150.1782 1384.9491,1215.0108 C1392.7518,1217.7965 1400.6997,1221.1354 1408.5157,1224.7648 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="886.8321,1089.6498,893.1505,1101.0145,892.1066,1093.6193,899.5018,1092.5753,886.8321,1089.6498" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M813.6978,1094.7842 C781.6156,1130.9329 733.4685,1185.1835 699.6581,1223.2808 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="818.3108,1089.5864,806.4733,1094.967,813.9286,1094.5233,814.3723,1101.9786,818.3108,1089.5864" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M896.7935,1093.7254 C915.5688,1107.0428 937.5128,1121.6052 958.5062,1133.1549 C1040.0558,1178.0172 1065.9764,1177.7412 1151.2637,1215.0108 C1158.8459,1218.3246 1166.6922,1221.7837 1174.5662,1225.2758 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="891.0741,1089.6379,897.6718,1100.8428,896.4452,1093.4757,903.8123,1092.2491,891.0741,1089.6379" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M802.4413,1093.6317 C782.8791,1107.9723 759.0617,1123.2807 735.3829,1133.1549 C558.8553,1206.7684 496.0072,1159.7541 312.9008,1215.0108 C304.5713,1217.5245 296.0398,1220.3948 287.5347,1223.4696 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="807.8425,1089.6168,795.1557,1092.467,802.5446,1093.5549,801.4567,1100.9437,807.8425,1089.6168" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M990.0524,898.6535 C878.2122,939.5802 845.3629,939.2461 735.3829,980.0051 C728.029,982.7301 720.5353,985.5845 712.9887,988.5221 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="996.4808,896.2876,983.5057,895.4356,990.2857,898.5676,987.1537,905.3477,996.4808,896.2876" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1124.8321,902.8229 C1168.0336,938.5002 1230.3206,989.94 1270.735,1023.3148 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1119.6607,898.5519,1125.4576,910.1912,1124.7498,902.7564,1132.1847,902.0486,1119.6607,898.5519" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1076.0091,905.2865 C1076.0091,939.9063 1076.0091,988.1036 1076.0091,1020.7231 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1076.0091,898.5519,1070.728,910.4342,1076.0091,905.1532,1081.2901,910.4342,1076.0091,898.5519" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2451.7163,905.4608 C2451.7163,940.9981 2451.7163,990.7533 2451.7163,1023.3148 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2451.7163,898.5519,2446.4353,910.4342,2451.7163,905.1532,2456.9974,910.4342,2451.7163,898.5519" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2401.1769,1093.8191 C2382.5877,1106.8817 2361.1203,1121.2541 2340.8148,1133.1549 C2284.2418,1166.3131 2218.3346,1198.8205 2165.2735,1223.5871 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2406.854,1089.8108,2394.1026,1092.3564,2401.4633,1093.6209,2400.1988,1100.9816,2406.854,1089.8108" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2448.2177,1096.5771 C2445.049,1132.7073 2440.4149,1185.808 2437.1275,1223.2808 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2448.825,1089.5864,2442.5263,1100.962,2448.2484,1096.1624,2453.048,1101.8846,2448.825,1089.5864" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2503.7212,1093.6132 C2522.4425,1106.5306 2543.8966,1120.8606 2563.9381,1133.1549 C2615.9562,1165.0602 2675.9883,1198.0481 2723.676,1223.3891 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2498.0045,1089.6537,2504.7466,1100.7723,2503.4248,1093.4217,2510.7754,1092.0999,2498.0045,1089.6537" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2407.1577,1093.6792 C2387.8423,1108.0277 2364.2889,1123.3282 2340.8148,1133.1549 C2161.722,1208.1137 2097.003,1157.0145 1911.7314,1215.0108 C1903.7571,1217.506 1895.6111,1220.3829 1887.5047,1223.4802 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2412.4915,1089.663,2399.8257,1092.6051,2407.2223,1093.6394,2406.188,1101.0359,2412.4915,1089.663" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2497.3972,1093.93 C2516.871,1108.1558 2540.4904,1123.3005 2563.9381,1133.1549 C2735.4923,1205.2369 2799.6831,1151.3757 2974.5379,1215.0108 C2981.8917,1217.6856 2989.3512,1220.8582 2996.7182,1224.3014 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2492.0238,1089.9468,2498.4121,1101.2723,2497.3226,1093.8837,2504.7112,1092.7942,2492.0238,1089.9468" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2496.1166,1093.9393 C2515.7356,1108.4951 2539.7906,1123.8801 2563.9381,1133.1549 C2690.5243,1181.768 3037.6726,1179.7797 3168.6156,1215.0108 C3177.6726,1217.4479 3186.9408,1220.3684 3196.1562,1223.5673 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2490.7035,1089.861,2497.005,1101.2351,2495.9721,1093.8383,2503.3688,1092.8054,2490.7035,1089.861" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2391.8427,902.1483 C2358.0045,924.553 2314.5549,953.3293 2274.3399,979.9576 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2397.6122,898.3248,2384.7882,900.4751,2392.1063,901.9665,2390.6149,909.2845,2397.6122,898.3248" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2542.7084,898.5453 C2655.3395,938.1147 2691.1845,930.7397 2797.6235,980.0051 C2823.8438,992.1396 2851.2788,1008.825 2873.5515,1023.5234 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2536.2392,896.2493,2545.6728,905.1983,2542.4608,898.4559,2549.2032,895.2438,2536.2392,896.2493" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2499.536,903.1411 C2540.4376,937.8916 2598.7401,987.4249 2637.9253,1020.7231 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2494.1362,898.5519,2499.7617,910.275,2499.1631,902.8305,2506.6076,902.2319,2494.1362,898.5519" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1574.8944,300.8295 C1528.1177,335.4281 1476.0468,388.2384 1476.0468,451.9025 C1476.0468,451.9025 1476.0468,451.9025 1476.0468,1056.58 C1476.0468,1111.261 1478.278,1173.8636 1480.1528,1216.636 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1480.4564,1223.3257,1485.2051,1211.2208,1480.1635,1216.7309,1474.6534,1211.6894,1480.4564,1223.3257" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1860.5715,496.2618 C1892.5217,533.3782 1930.215,589.4297 1930.215,647.3005 C1930.215,647.3005 1930.215,647.3005 1930.215,1056.58 C1930.215,1119.8374 1886.3957,1179.039 1848.2667,1218.5794 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1843.6458,1223.3033,1855.7218,1218.4816,1848.2539,1218.5765,1848.159,1211.1086,1843.6458,1223.3033" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1545.5715,691.3653 C1481.8427,707.5094 1407.2614,724.2939 1338.7401,734.4374 C1299.4902,740.2478 1195.2625,725.8636 1160.5055,744.9994 C1130.4247,761.5607 1108.3804,793.9268 1094.3646,820.5036 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1091.3214,826.4249,1101.448,818.2683,1094.3375,820.553,1092.0529,813.4425,1091.3214,826.4249" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M2309.3663,691.5819 C2326.556,707.8382 2345.6337,726.7403 2361.9389,744.9994 C2383.3799,769.0096 2405.3489,797.6843 2422.1954,820.6977 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="2426.3542,826.4197,2423.6066,813.7102,2422.4591,821.09,2415.0792,819.9425,2426.3542,826.4197" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1352.9857,112.5213 C1331.3467,148.4574 1304.4134,203.7708 1304.4134,256.5045 C1304.4134,256.5045 1304.4134,256.5045 1304.4134,647.3005 C1304.4134,785.9129 159.2955,647.5381 60.7318,744.9994 C54.4851,751.1756 50.0351,758.5822 46.9551,766.6305 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1356.6824,106.4825,1345.9695,113.8522,1353.2321,112.1103,1354.974,119.3728,1356.6824,106.4825" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1786.4523,85.8838 C2025.8016,113.1735 2538.8533,180.5304 2538.8533,256.5045 C2538.8533,256.5045 2538.8533,256.5045 2538.8533,647.3005 C2538.8533,845.067 3285.0094,603.7412 3423.4251,744.9994 C3429.4323,751.1347 3433.7627,758.4132 3436.7861,766.2952 " fill="none" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><polygon fill="#A80036" points="1779.8114,85.1286,1791.031,91.7012,1786.3715,85.8645,1792.2083,81.205,1779.8114,85.1286" style="stroke: #A80036; stroke-width: 1.3202565069784986;"/><path d="M1433.891,110.1185 C1476.9445,139.5958 1537.2671,180.8987 1582.8555,212.1201 " fill="none" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><polygon fill="#808080" points="1428.2007,106.2224,1435.0147,117.297,1433.6452,109.9551,1440.9871,108.5857,1428.2007,106.2224" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.1633" lengthAdjust="spacingAndGlyphs" textLength="88.4572" x="1523.576" y="163.94">depends on</text><path d="M1662.1237,113.0441 C1659.1796,142.2825 1655.1924,181.918 1652.1558,212.1201 " fill="none" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><polygon fill="#808080" points="1662.8103,106.2224,1656.3635,117.5147,1662.1478,112.7903,1666.8722,118.5747,1662.8103,106.2224" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.1633" lengthAdjust="spacingAndGlyphs" textLength="88.4572" x="1660.8827" y="163.94">depends on</text><path d="M1690.6281,306.166 C1717.6009,337.357 1752.0992,377.2433 1778.1875,407.4019 " fill="none" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><polygon fill="#808080" points="1686.0336,300.8427,1689.8043,313.287,1690.3487,305.8384,1697.7973,306.3828,1686.0336,300.8427" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.1633" lengthAdjust="spacingAndGlyphs" textLength="88.4572" x="1744.0588" y="359.338">depends on</text><path d="M1787.5877,501.9508 C1769.5002,533.0837 1746.4353,572.7667 1728.9947,602.7999 " fill="none" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><polygon fill="#808080" points="1790.9147,496.2407,1780.3819,503.8655,1787.6005,501.9497,1789.5163,509.1683,1790.9147,496.2407" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.1633" lengthAdjust="spacingAndGlyphs" textLength="88.4572" x="1767.8235" y="554.736">depends on</text><path d="M1923.7722,499.0753 C1995.4885,530.6664 2089.2927,571.9838 2159.636,602.9689 " fill="none" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><polygon fill="#808080" points="1917.3293,496.2407,1926.0768,505.8615,1923.3711,498.9003,1930.3322,496.1946,1917.3293,496.2407" style="stroke: #808080; stroke-width: 1.3202565069784986;"/><text fill="#000000" font-family="Helvetica Neue" font-size="17.1633" lengthAdjust="spacingAndGlyphs" textLength="88.4572" x="2066.2014" y="554.736">depends on</text></g></svg>
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
# Examples and usecases
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Satellite 6 master and capsule installation
|
|
5
|
+
|
|
6
|
+
Deploy one Satellite 6 instance with N capsules.
|
|
7
|
+
|
|
8
|
+
The whole deployment can be split to 3 subproblems:
|
|
9
|
+
|
|
10
|
+
1. provision and configure Satellite 6 machine
|
|
11
|
+
2. provision and configure capsules
|
|
12
|
+
3. pair them together
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Satellite 6
|
|
16
|
+
|
|
17
|
+
1. provision the machine
|
|
18
|
+
2. get content & install Satellite 6
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
[svg version of the diagram](diagrams/sat_stack.svg) for better readability
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
#### Stack definition
|
|
27
|
+
```yaml
|
|
28
|
+
ProvisioningSubnet: !!selectResource
|
|
29
|
+
resource: 'Subnet'
|
|
30
|
+
description: Subnet to provision the Satellite on
|
|
31
|
+
|
|
32
|
+
SatelliteOs: !!selectResource
|
|
33
|
+
resource: 'Os'
|
|
34
|
+
description: OS for the Satellite machine
|
|
35
|
+
constraints:
|
|
36
|
+
family: RHEL
|
|
37
|
+
version: '>= 6.5'
|
|
38
|
+
|
|
39
|
+
SatelliteMachine: !!createOrSelectResource
|
|
40
|
+
resource: Host
|
|
41
|
+
description: The satellite machine
|
|
42
|
+
count: 1 # default value
|
|
43
|
+
parameters:
|
|
44
|
+
name: !!input
|
|
45
|
+
data_type: string
|
|
46
|
+
interfaces:
|
|
47
|
+
- primary: true
|
|
48
|
+
subnet: !!reference
|
|
49
|
+
object: 'ProvisioningSubnet'
|
|
50
|
+
field: 'result.subnet'
|
|
51
|
+
os: !!reference
|
|
52
|
+
object: 'SatelliteOs'
|
|
53
|
+
field: 'result.os'
|
|
54
|
+
activation_key: !!select
|
|
55
|
+
resource: 'ActivationKey'
|
|
56
|
+
|
|
57
|
+
ProvisionSatellite: !!provisionHost
|
|
58
|
+
hosts: !!reference
|
|
59
|
+
object: 'SatelliteMachine'
|
|
60
|
+
field: 'result.hosts'
|
|
61
|
+
|
|
62
|
+
InstallSatellite: !!remoteExecution
|
|
63
|
+
hosts: !!reference
|
|
64
|
+
object: 'SatelliteMachine'
|
|
65
|
+
field: 'result.hosts'
|
|
66
|
+
command: 'katello-installer ...'
|
|
67
|
+
parameters:
|
|
68
|
+
password: !!input
|
|
69
|
+
data_type: string
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
## Capsule
|
|
74
|
+
|
|
75
|
+
1. provision the machine
|
|
76
|
+
2. generate certificates on the Satellite machine
|
|
77
|
+
3. transport the certs to the Capsule machine
|
|
78
|
+
4. get content & install Capsule (requires the certs and oauth credentials)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+

|
|
82
|
+
|
|
83
|
+
[svg version of the diagram](diagrams/capsule_stack.svg) for better readability
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
#### Stack definition
|
|
87
|
+
```yaml
|
|
88
|
+
ProvisioningSubnet: !!selectResource
|
|
89
|
+
resource: Subnet
|
|
90
|
+
description: Subnet to provision the Capsules on
|
|
91
|
+
|
|
92
|
+
CapsuleOs: !!selectResource
|
|
93
|
+
resource: Os
|
|
94
|
+
description: OS for the Capsule machine
|
|
95
|
+
constraints:
|
|
96
|
+
family: RHEL
|
|
97
|
+
version: '>= 6.5'
|
|
98
|
+
|
|
99
|
+
CapsuleMachine: !!createOrSelectResource
|
|
100
|
+
description: The capsule machine
|
|
101
|
+
resource: Host
|
|
102
|
+
count: !!input
|
|
103
|
+
data_type: integer
|
|
104
|
+
validate: '> 0'
|
|
105
|
+
parameters:
|
|
106
|
+
name: !!template
|
|
107
|
+
template: 'capsule-{index}'
|
|
108
|
+
interfaces:
|
|
109
|
+
- primary: true
|
|
110
|
+
subnet: !!reference
|
|
111
|
+
object: 'ProvisioningSubnet'
|
|
112
|
+
field: 'result.subnet'
|
|
113
|
+
os: !!reference
|
|
114
|
+
object: 'CapsuleOs'
|
|
115
|
+
field: 'result.os'
|
|
116
|
+
activation_key: !!select
|
|
117
|
+
resource: 'ActivationKey'
|
|
118
|
+
|
|
119
|
+
ProvisionCapsule: !!provisionHost
|
|
120
|
+
hosts: !!reference
|
|
121
|
+
object: 'CapsuleMachine'
|
|
122
|
+
field: 'result.hosts'
|
|
123
|
+
|
|
124
|
+
SatelliteMachine: !!selectResource
|
|
125
|
+
description: The satellite master machine
|
|
126
|
+
resource: Host
|
|
127
|
+
count: 1
|
|
128
|
+
|
|
129
|
+
GenerateAndDistributeCertificates: !!remoteExecution
|
|
130
|
+
hosts: !!reference
|
|
131
|
+
object: 'SatelliteMachine'
|
|
132
|
+
field: 'result.hosts'
|
|
133
|
+
command: \"<% hosts.map(&:name).each {|fqdn| `capsule-certs-generate --capsule-fqdn ...\"
|
|
134
|
+
params:
|
|
135
|
+
capsules: !!reference
|
|
136
|
+
object: ProvisionCapsule
|
|
137
|
+
field: result.hosts
|
|
138
|
+
result:
|
|
139
|
+
hosts: '<% hosts %>'
|
|
140
|
+
|
|
141
|
+
InstallCapsule: !!remoteExecution
|
|
142
|
+
hosts: !!reference
|
|
143
|
+
object: 'GenerateAndDistributeCertificates'
|
|
144
|
+
field: 'result.hosts'
|
|
145
|
+
command: 'capsule-installer ...'
|
|
146
|
+
parameters:
|
|
147
|
+
oauth_key: !!input
|
|
148
|
+
type: string
|
|
149
|
+
oauth_secret: !!input
|
|
150
|
+
type: string
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
## Coupling Satellite and Capsule stacks
|
|
155
|
+
|
|
156
|
+
Encapsulating stack will update the substack tasks to:
|
|
157
|
+
- use the same subnet
|
|
158
|
+
- capsule should be registered against the satellite
|
|
159
|
+
- use the same activation key
|
|
160
|
+
|
|
161
|
+
This feature will be available in future versions. In the first release one will need to describe both processes in one stack.
|
|
162
|
+
|
|
163
|
+

|
|
164
|
+
|
|
165
|
+
[svg version of the diagram](diagrams/complete_stack.svg) for better readability
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
#### Stack definition
|
|
169
|
+
```yaml
|
|
170
|
+
SatelliteStack: !!stack
|
|
171
|
+
name: Satellite
|
|
172
|
+
|
|
173
|
+
CapsuleStack: !!stack
|
|
174
|
+
name: Capsule
|
|
175
|
+
|
|
176
|
+
CapsuleStack:SatelliteMachine: !!override
|
|
177
|
+
activation_key: !!reference
|
|
178
|
+
object: 'SatelliteStack:SatelliteMachine'
|
|
179
|
+
value: 'result.host.activation_key'
|
|
180
|
+
|
|
181
|
+
CapsuleStack:ProvisioningSubnet: !!override
|
|
182
|
+
subnet: !!reference
|
|
183
|
+
object: 'SatelliteStack:ProvisioningSubnet'
|
|
184
|
+
value: 'result.subnet'
|
|
185
|
+
|
|
186
|
+
CapsuleStack:SatelliteMachine: !!override
|
|
187
|
+
host: !!reference
|
|
188
|
+
object: 'SatelliteStack:ProvisionSatellite'
|
|
189
|
+
value: 'result.host'
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
More capsules can be added later by running the Capsule stack again
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# Implementation details
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Stack definition
|
|
5
|
+
* defined in a simple json
|
|
6
|
+
* the structure is currently very flat, we should think of something more nested to avoid repeating the foreign keys
|
|
7
|
+
* example stack definition:
|
|
8
|
+
```
|
|
9
|
+
{
|
|
10
|
+
"stacks": [
|
|
11
|
+
{
|
|
12
|
+
"id": "db",
|
|
13
|
+
"name": "db"
|
|
14
|
+
}
|
|
15
|
+
// other stacks
|
|
16
|
+
],
|
|
17
|
+
"param_resources": [
|
|
18
|
+
{
|
|
19
|
+
"id": "db_password",
|
|
20
|
+
"stack": "db",
|
|
21
|
+
"name": "db_password",
|
|
22
|
+
"hostgroup_resource": "db"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "db_api_url",
|
|
26
|
+
"stack": "db",
|
|
27
|
+
"name": "db_api_url",
|
|
28
|
+
// pseudo code, computes the url for other stacks to use
|
|
29
|
+
"default_value": "<%= compute_url() %>",
|
|
30
|
+
"hostgroup_resource": "db"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"param_override_resources": [
|
|
34
|
+
{
|
|
35
|
+
"id": "password_override",
|
|
36
|
+
"stack": "db",
|
|
37
|
+
"name": "password_override",
|
|
38
|
+
"key": "$postgress::password",
|
|
39
|
+
// just pseudo code
|
|
40
|
+
"value": "<%= get_param('db', 'db_hostgroup', 'db_password') %>",
|
|
41
|
+
"hostgroup_resource": "db"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"hostgroup_resources": [
|
|
45
|
+
{
|
|
46
|
+
"id": "db",
|
|
47
|
+
"stack": "db"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"host_resources": [
|
|
51
|
+
{
|
|
52
|
+
"id": "db",
|
|
53
|
+
"stack": "db",
|
|
54
|
+
"min": 1,
|
|
55
|
+
"max": 1,
|
|
56
|
+
"hostgroup_resource": "db"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"puppet_class_resources": [
|
|
60
|
+
{
|
|
61
|
+
"id": "postgres",
|
|
62
|
+
"name": "postgres",
|
|
63
|
+
"stack": "db",
|
|
64
|
+
"hostgroup_resource": "db"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"puppet_run_resources": [
|
|
68
|
+
{
|
|
69
|
+
"id": "db1",
|
|
70
|
+
"host_resource": "db"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "db2",
|
|
74
|
+
"host_resource": "db",
|
|
75
|
+
"depends_on": "db1"
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
```
|
|
80
|
+
* DSL conversion tool can be created, example dsl:
|
|
81
|
+
```ruby
|
|
82
|
+
require 'foreman/deployments/dsl'
|
|
83
|
+
|
|
84
|
+
Foreman::Deployments::DSL.define do
|
|
85
|
+
stack :db do
|
|
86
|
+
hostgroup :db do
|
|
87
|
+
param :db_password
|
|
88
|
+
param(:db_api_url) { default_value "<%= compute_url() %>" }
|
|
89
|
+
override :password_override do
|
|
90
|
+
name "password_override"
|
|
91
|
+
key "$postgress::password"
|
|
92
|
+
value "<%= get_param('db', 'db_hostgroup', 'db_password') %>"
|
|
93
|
+
end
|
|
94
|
+
puppetclass :postgres
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
host :db do
|
|
98
|
+
count 1..1
|
|
99
|
+
puppet_run(:db1) >> puppet_run(:db2)
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Deployment
|
|
106
|
+
* resources implemented as STI
|
|
107
|
+
|
|
108
|
+
## Deployment configuration
|
|
109
|
+
* belongs to stack and deployment (the second can be nil when it is saved preconfiguration)
|
|
110
|
+
* can be implementad as STI or as filters that only synthesize hash to json
|
|
111
|
+
* configurable resources provide their ResourceConfig class
|
|
112
|
+
* each ResourceConfig defines how to clone itself (blanking fields that are not clonable)
|
|
113
|
+
|
|
114
|
+
## Deploying the deployment
|
|
115
|
+
* validation before the deployment starts
|
|
116
|
+
* check whether the puppet classes are present in the environments
|
|
117
|
+
* 3 main dynflow actions:
|
|
118
|
+
* provision all hosts
|
|
119
|
+
* consists of actions for provisioning a single host
|
|
120
|
+
* will run in parallel
|
|
121
|
+
* run the ordered resources
|
|
122
|
+
* dependent on the previous one
|
|
123
|
+
* consists of actions for each of the ordered resources
|
|
124
|
+
* each ordered resource class returns an apipie action to execute the resource
|
|
125
|
+
* apipie takes care or computing the correct order for them
|
|
126
|
+
* enable puppet
|
|
127
|
+
* dependent on the previous one
|
|
128
|
+
* enable puppet runs for all the hots
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
@startuml
|
|
2
|
+
|
|
3
|
+
scale 700 width
|
|
4
|
+
|
|
5
|
+
object Stack {
|
|
6
|
+
Composable pieces of infrastructure
|
|
7
|
+
templates. The instructions needed
|
|
8
|
+
to assemble a set of resources for
|
|
9
|
+
a specific purpose, e.g. Database,
|
|
10
|
+
Load balancer, Neutron networked, etc.
|
|
11
|
+
Stacks are composed from tasks and
|
|
12
|
+
define relationships between them.
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
object Deployment {
|
|
16
|
+
The result of performing the instructions
|
|
17
|
+
in a stack, taking in saved configuration
|
|
18
|
+
and any necessary input from user.
|
|
19
|
+
It's a composition of created and
|
|
20
|
+
configured Foreman objects.
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
object Configuration {
|
|
24
|
+
Holds configuration for a stack, which
|
|
25
|
+
can be applied to a deployment.
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
object DeployedTask {
|
|
29
|
+
Holds results of deployed tasks to
|
|
30
|
+
enable viewing the resources used
|
|
31
|
+
or created by the deployment in future.
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Stack "0..*" --> "0..*" Stack : has children
|
|
36
|
+
note on link: acyclic graph
|
|
37
|
+
Configuration "0..*" -up-> "0..*" Stack : has configuration for
|
|
38
|
+
Deployment "0..*" -up-> "1" Configuration : deploys with configuration
|
|
39
|
+
DeployedTask "0..*" -left-> "1" Deployment
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@enduml
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
@startuml
|
|
2
|
+
|
|
3
|
+
title Class Overview
|
|
4
|
+
scale 850 width
|
|
5
|
+
|
|
6
|
+
!include shared.puml
|
|
7
|
+
FONT
|
|
8
|
+
|
|
9
|
+
object Deployment {
|
|
10
|
+
The result of performing the instructions
|
|
11
|
+
in a stack, taking in any necessary input
|
|
12
|
+
parameters from user. It's a composition
|
|
13
|
+
of created and configured Foreman objects.
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
object Stack {
|
|
17
|
+
Composable pieces of infrastructure
|
|
18
|
+
templates. The instructions needed
|
|
19
|
+
to assemble a set of resources for
|
|
20
|
+
a specific purpose, e.g. Database,
|
|
21
|
+
Load balancer, Neutron networked, etc.
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
object Resource {
|
|
25
|
+
A Foreman object to be configured or created
|
|
26
|
+
to form an Deployment instance.
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
object AForemanObject {
|
|
30
|
+
E.g. Host, Hostgroup, etc.
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
object DeploymentConfiguration {
|
|
34
|
+
Holds configuration for a deployment.
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
object SavedStackConfiguration {
|
|
38
|
+
Stores pre-saved configurations
|
|
39
|
+
for a stack. It can be cloned to create
|
|
40
|
+
a new deployment based on the existing
|
|
41
|
+
configuration.
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
DeploymentConfiguration "1" --> "1" Deployment
|
|
45
|
+
SavedStackConfiguration "0..*" --> "1" Stack
|
|
46
|
+
Deployment "0..*" --> "1..*" Stack : deploys
|
|
47
|
+
Stack "0..*" --> "0..*" Stack : has children
|
|
48
|
+
note on link: acyclic graph
|
|
49
|
+
|
|
50
|
+
Stack "1" *--> "1..*" Resource : is composed of
|
|
51
|
+
|
|
52
|
+
object DeployedAForemanObject {
|
|
53
|
+
Association entity.
|
|
54
|
+
Represents AForemanObject deployed
|
|
55
|
+
in given Deployment fulfilling given
|
|
56
|
+
Resource.
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
DeployedAForemanObject "0..*" *--> "1" Resource
|
|
60
|
+
DeployedAForemanObject "0..*" *-up-> "1" Deployment
|
|
61
|
+
DeployedAForemanObject "0..*" *--> "1" AForemanObject
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
@enduml
|