Created
November 9, 2016 19:25
-
-
Save dougbtv/6d1e63acd9e037899fc4d0a684669e60 to your computer and use it in GitHub Desktop.
doug's customization for oooq for an openshift-ansible deploy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# We run tempest in this topology instead of ping test. | |
# We set introspection to true and use only the minimal amount of nodes | |
# for this job, but test all defaults otherwise. | |
control_memory: 8192 | |
compute_memory: 12288 | |
undercloud_memory: 16384 | |
compute_vcpu: 4 | |
compute_disk: 100 | |
step_introspect: true | |
# Define a single controller node and a single compute node. | |
overcloud_nodes: | |
- name: control_0 | |
flavor: control | |
- name: compute_0 | |
flavor: compute | |
- name: compute_1 | |
flavor: compute | |
- name: compute_2 | |
flavor: compute | |
# Tell tripleo how we want things done. | |
extra_args: >- | |
--compute-scale 3 | |
--neutron-network-type vxlan | |
--neutron-tunnel-types vxlan | |
--ntp-server pool.ntp.org | |
network_isolation: true | |
# This enables TLS for the undercloud which will also make haproxy bind to the | |
# configured public-vip and admin-vip. | |
undercloud_generate_service_certificate: True | |
# If `test_tempest` is `true`, run tempests tests, otherwise do not | |
# run them. | |
tempest_config: false | |
test_ping: true | |
run_tempest: false | |
tempest_workers: 4 | |
# options below direct automatic doc generation by tripleo-collect-logs | |
artcl_gen_docs: true | |
artcl_create_docs_payload: | |
included_deployment_scripts: | |
- undercloud-install | |
- overcloud-custom-tht-script | |
- overcloud-prep-flavors | |
- overcloud-prep-images | |
- overcloud-prep-network | |
- overcloud-deploy | |
- overcloud-deploy-post | |
- overcloud-validate | |
included_static_docs: | |
- env-setup-virt | |
table_of_contents: | |
- env-setup-virt | |
- undercloud-install | |
- overcloud-custom-tht-script | |
- overcloud-prep-flavors | |
- overcloud-prep-images | |
- overcloud-prep-network | |
- overcloud-deploy | |
- overcloud-deploy-post | |
- overcloud-validate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment