├── .github ├── stale.yml └── workflows │ └── ansible-lint.yml ├── 3_nets_multi_hypervisor_5039ms.yml ├── Dockerfile ├── LICENSE ├── README.md ├── TODO ├── add_undercloud_to_inventory.yml ├── ansible.cfg ├── badfish └── dell-hosts ├── bootstrap.yml ├── browbeat.yml ├── ci ├── all_osp13.yml ├── ocp_install_vars.yml ├── ocp_jetpack_vars.yml ├── osp_api.yml └── run_jetpack.sh ├── cleanup.yml ├── common.yml ├── composable.yml ├── composable_prepare_nic_configs.yml ├── docs ├── Makefile └── source │ ├── conf.py │ ├── contribution.rst │ ├── index.rst │ ├── introduction.rst │ ├── playbooks.rst │ ├── requirements.rst │ └── usage.rst ├── external.yml ├── group_vars └── all.yml ├── hammer ├── Dockerfile └── foreman.yml.j2 ├── install_idm_server.yml ├── introspect.yml ├── jetpack_container.sh ├── main.yml ├── ocp_cleanup.yml ├── ocp_on_osp.yml ├── overcloud-node-growvols.yml ├── overcloud.yml ├── post.yml ├── post_introspect.yml ├── prepare_nic_configs.yml ├── prepare_undercloud.yml ├── scale_compute_vms.yml ├── scale_compute_vms_deploy.yml ├── scale_compute_vms_prepare.yml ├── scaleout.yml ├── scripts ├── README.md ├── cleanup_bridges.yml ├── generate_ansible_inventory.py ├── get_nvme_details.sh └── infrared_osp16_1.sh ├── set_boot_order.yml ├── setup_undercloud.yml ├── tag.yml ├── tasks ├── baremetal_deployment_prepare_for_scaleout.yaml ├── composable_prepare_nic_configs_for_scaleout.yml ├── copykeys.yml ├── create_external_network.yml ├── create_flavors.yml ├── create_ocp_infra_nodes.yml ├── create_project_and_user.yml ├── delete_introspection_failed_nodes.yml ├── delete_ocp_cluster.yml ├── get_interpreter.yml ├── get_ocp_binaries.yml ├── install_ocp_cluster.yml ├── install_os.yml ├── install_packages.yml ├── load_instackenv.yml ├── manila.yml ├── new_roles_for_scaleout.yml ├── prepare_deploy_limit_str_for_scaleout.yaml ├── provisioning_baremetal_nodes.yml ├── replace_nic_names.yml ├── set_boot_mode.yml ├── set_boot_order_director.yml ├── set_masquerade.yml ├── set_root_hints.yml ├── setup_infrared.yml ├── undercloud_tls_e_config.yml ├── update_network_environment_for_scaleout.yaml ├── update_nodes_data_for_scaleout.yaml └── wait_after_node_reboot.yml ├── templates ├── 3_nets_multi_hypervisor.yml.j2 ├── 4_nets_multi_hypervisor.yml.j2 ├── RHEL.repo.j2 ├── baremetal_deployment.yaml.j2 ├── baremetal_deployment_for_scaleout.yaml.j2 ├── ceph-storage.j2.j2 ├── ceph-storage.yaml.j2 ├── cluster-monitoring-config.yml.j2 ├── composable_roles_overcloud_deploy.sh.j2 ├── compute.j2.j2 ├── compute.yaml.j2 ├── compute_vms.yaml.j2 ├── compute_vms_4nics.yaml.j2 ├── controller.j2.j2 ├── controller.yaml.j2 ├── firstboot-nvme.yaml.j2 ├── firstboot-wipe-disks.yaml.j2 ├── firstboot.yaml.j2.j2 ├── install-config.yaml.j2 ├── internal.yml.j2 ├── inventory.j2 ├── master-etcd.ign.json.j2 ├── metalsmith_node_data.yaml.j2 ├── network-environment.yaml.j2 ├── network-environment_v2.yaml.j2 ├── network_data_v2.yaml.j2 ├── nodes_data.yml.j2 ├── osd-spec.yml.j2 ├── osp-infra-node-machineset.yml.j2 ├── osp-workload-node-machineset.yml.j2 ├── osp10_compute.yaml.j2 ├── osp10_controller.yaml.j2 ├── overcloud-templates.yml.j2 ├── setup-lvm.sh.j2 ├── undercloud.conf.j2 ├── vip_data.yaml.j2 ├── virtual_uc_network.yml.j2 ├── virtual_uc_topology.yml.j2 ├── wipe-disk.sh.j2 └── worker-nvme.ign.json.j2 ├── tests └── requirements.txt ├── undercloud.yml ├── vars ├── flavors.yaml └── shift_stack_vars.yaml └── virtual_undercloud.yml /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ansible-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/.github/workflows/ansible-lint.yml -------------------------------------------------------------------------------- /3_nets_multi_hypervisor_5039ms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/3_nets_multi_hypervisor_5039ms.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/TODO -------------------------------------------------------------------------------- /add_undercloud_to_inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/add_undercloud_to_inventory.yml -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ansible.cfg -------------------------------------------------------------------------------- /badfish/dell-hosts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/bootstrap.yml -------------------------------------------------------------------------------- /browbeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/browbeat.yml -------------------------------------------------------------------------------- /ci/all_osp13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ci/all_osp13.yml -------------------------------------------------------------------------------- /ci/ocp_install_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ci/ocp_install_vars.yml -------------------------------------------------------------------------------- /ci/ocp_jetpack_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ci/ocp_jetpack_vars.yml -------------------------------------------------------------------------------- /ci/osp_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ci/osp_api.yml -------------------------------------------------------------------------------- /ci/run_jetpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ci/run_jetpack.sh -------------------------------------------------------------------------------- /cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/cleanup.yml -------------------------------------------------------------------------------- /common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/common.yml -------------------------------------------------------------------------------- /composable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/composable.yml -------------------------------------------------------------------------------- /composable_prepare_nic_configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/composable_prepare_nic_configs.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/source/contribution.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/playbooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/source/playbooks.rst -------------------------------------------------------------------------------- /docs/source/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/source/requirements.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/external.yml -------------------------------------------------------------------------------- /group_vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/group_vars/all.yml -------------------------------------------------------------------------------- /hammer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/hammer/Dockerfile -------------------------------------------------------------------------------- /hammer/foreman.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/hammer/foreman.yml.j2 -------------------------------------------------------------------------------- /install_idm_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/install_idm_server.yml -------------------------------------------------------------------------------- /introspect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/introspect.yml -------------------------------------------------------------------------------- /jetpack_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/jetpack_container.sh -------------------------------------------------------------------------------- /main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/main.yml -------------------------------------------------------------------------------- /ocp_cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ocp_cleanup.yml -------------------------------------------------------------------------------- /ocp_on_osp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/ocp_on_osp.yml -------------------------------------------------------------------------------- /overcloud-node-growvols.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/overcloud-node-growvols.yml -------------------------------------------------------------------------------- /overcloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/overcloud.yml -------------------------------------------------------------------------------- /post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/post.yml -------------------------------------------------------------------------------- /post_introspect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/post_introspect.yml -------------------------------------------------------------------------------- /prepare_nic_configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/prepare_nic_configs.yml -------------------------------------------------------------------------------- /prepare_undercloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/prepare_undercloud.yml -------------------------------------------------------------------------------- /scale_compute_vms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scale_compute_vms.yml -------------------------------------------------------------------------------- /scale_compute_vms_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scale_compute_vms_deploy.yml -------------------------------------------------------------------------------- /scale_compute_vms_prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scale_compute_vms_prepare.yml -------------------------------------------------------------------------------- /scaleout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scaleout.yml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/cleanup_bridges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scripts/cleanup_bridges.yml -------------------------------------------------------------------------------- /scripts/generate_ansible_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scripts/generate_ansible_inventory.py -------------------------------------------------------------------------------- /scripts/get_nvme_details.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scripts/get_nvme_details.sh -------------------------------------------------------------------------------- /scripts/infrared_osp16_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/scripts/infrared_osp16_1.sh -------------------------------------------------------------------------------- /set_boot_order.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/set_boot_order.yml -------------------------------------------------------------------------------- /setup_undercloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/setup_undercloud.yml -------------------------------------------------------------------------------- /tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tag.yml -------------------------------------------------------------------------------- /tasks/baremetal_deployment_prepare_for_scaleout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/baremetal_deployment_prepare_for_scaleout.yaml -------------------------------------------------------------------------------- /tasks/composable_prepare_nic_configs_for_scaleout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/composable_prepare_nic_configs_for_scaleout.yml -------------------------------------------------------------------------------- /tasks/copykeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/copykeys.yml -------------------------------------------------------------------------------- /tasks/create_external_network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/create_external_network.yml -------------------------------------------------------------------------------- /tasks/create_flavors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/create_flavors.yml -------------------------------------------------------------------------------- /tasks/create_ocp_infra_nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/create_ocp_infra_nodes.yml -------------------------------------------------------------------------------- /tasks/create_project_and_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/create_project_and_user.yml -------------------------------------------------------------------------------- /tasks/delete_introspection_failed_nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/delete_introspection_failed_nodes.yml -------------------------------------------------------------------------------- /tasks/delete_ocp_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/delete_ocp_cluster.yml -------------------------------------------------------------------------------- /tasks/get_interpreter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/get_interpreter.yml -------------------------------------------------------------------------------- /tasks/get_ocp_binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/get_ocp_binaries.yml -------------------------------------------------------------------------------- /tasks/install_ocp_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/install_ocp_cluster.yml -------------------------------------------------------------------------------- /tasks/install_os.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/install_os.yml -------------------------------------------------------------------------------- /tasks/install_packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/install_packages.yml -------------------------------------------------------------------------------- /tasks/load_instackenv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/load_instackenv.yml -------------------------------------------------------------------------------- /tasks/manila.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/manila.yml -------------------------------------------------------------------------------- /tasks/new_roles_for_scaleout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/new_roles_for_scaleout.yml -------------------------------------------------------------------------------- /tasks/prepare_deploy_limit_str_for_scaleout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/prepare_deploy_limit_str_for_scaleout.yaml -------------------------------------------------------------------------------- /tasks/provisioning_baremetal_nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/provisioning_baremetal_nodes.yml -------------------------------------------------------------------------------- /tasks/replace_nic_names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/replace_nic_names.yml -------------------------------------------------------------------------------- /tasks/set_boot_mode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/set_boot_mode.yml -------------------------------------------------------------------------------- /tasks/set_boot_order_director.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/set_boot_order_director.yml -------------------------------------------------------------------------------- /tasks/set_masquerade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/set_masquerade.yml -------------------------------------------------------------------------------- /tasks/set_root_hints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/set_root_hints.yml -------------------------------------------------------------------------------- /tasks/setup_infrared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/setup_infrared.yml -------------------------------------------------------------------------------- /tasks/undercloud_tls_e_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/undercloud_tls_e_config.yml -------------------------------------------------------------------------------- /tasks/update_network_environment_for_scaleout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/update_network_environment_for_scaleout.yaml -------------------------------------------------------------------------------- /tasks/update_nodes_data_for_scaleout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/update_nodes_data_for_scaleout.yaml -------------------------------------------------------------------------------- /tasks/wait_after_node_reboot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/tasks/wait_after_node_reboot.yml -------------------------------------------------------------------------------- /templates/3_nets_multi_hypervisor.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/3_nets_multi_hypervisor.yml.j2 -------------------------------------------------------------------------------- /templates/4_nets_multi_hypervisor.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/4_nets_multi_hypervisor.yml.j2 -------------------------------------------------------------------------------- /templates/RHEL.repo.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/RHEL.repo.j2 -------------------------------------------------------------------------------- /templates/baremetal_deployment.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/baremetal_deployment.yaml.j2 -------------------------------------------------------------------------------- /templates/baremetal_deployment_for_scaleout.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/baremetal_deployment_for_scaleout.yaml.j2 -------------------------------------------------------------------------------- /templates/ceph-storage.j2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/ceph-storage.j2.j2 -------------------------------------------------------------------------------- /templates/ceph-storage.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/ceph-storage.yaml.j2 -------------------------------------------------------------------------------- /templates/cluster-monitoring-config.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/cluster-monitoring-config.yml.j2 -------------------------------------------------------------------------------- /templates/composable_roles_overcloud_deploy.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/composable_roles_overcloud_deploy.sh.j2 -------------------------------------------------------------------------------- /templates/compute.j2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/compute.j2.j2 -------------------------------------------------------------------------------- /templates/compute.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/compute.yaml.j2 -------------------------------------------------------------------------------- /templates/compute_vms.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/compute_vms.yaml.j2 -------------------------------------------------------------------------------- /templates/compute_vms_4nics.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/compute_vms_4nics.yaml.j2 -------------------------------------------------------------------------------- /templates/controller.j2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/controller.j2.j2 -------------------------------------------------------------------------------- /templates/controller.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/controller.yaml.j2 -------------------------------------------------------------------------------- /templates/firstboot-nvme.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/firstboot-nvme.yaml.j2 -------------------------------------------------------------------------------- /templates/firstboot-wipe-disks.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/firstboot-wipe-disks.yaml.j2 -------------------------------------------------------------------------------- /templates/firstboot.yaml.j2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/firstboot.yaml.j2.j2 -------------------------------------------------------------------------------- /templates/install-config.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/install-config.yaml.j2 -------------------------------------------------------------------------------- /templates/internal.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/internal.yml.j2 -------------------------------------------------------------------------------- /templates/inventory.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/inventory.j2 -------------------------------------------------------------------------------- /templates/master-etcd.ign.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/master-etcd.ign.json.j2 -------------------------------------------------------------------------------- /templates/metalsmith_node_data.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/metalsmith_node_data.yaml.j2 -------------------------------------------------------------------------------- /templates/network-environment.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/network-environment.yaml.j2 -------------------------------------------------------------------------------- /templates/network-environment_v2.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/network-environment_v2.yaml.j2 -------------------------------------------------------------------------------- /templates/network_data_v2.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/network_data_v2.yaml.j2 -------------------------------------------------------------------------------- /templates/nodes_data.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/nodes_data.yml.j2 -------------------------------------------------------------------------------- /templates/osd-spec.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/osd-spec.yml.j2 -------------------------------------------------------------------------------- /templates/osp-infra-node-machineset.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/osp-infra-node-machineset.yml.j2 -------------------------------------------------------------------------------- /templates/osp-workload-node-machineset.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/osp-workload-node-machineset.yml.j2 -------------------------------------------------------------------------------- /templates/osp10_compute.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/osp10_compute.yaml.j2 -------------------------------------------------------------------------------- /templates/osp10_controller.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/osp10_controller.yaml.j2 -------------------------------------------------------------------------------- /templates/overcloud-templates.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/overcloud-templates.yml.j2 -------------------------------------------------------------------------------- /templates/setup-lvm.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/setup-lvm.sh.j2 -------------------------------------------------------------------------------- /templates/undercloud.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/undercloud.conf.j2 -------------------------------------------------------------------------------- /templates/vip_data.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/vip_data.yaml.j2 -------------------------------------------------------------------------------- /templates/virtual_uc_network.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/virtual_uc_network.yml.j2 -------------------------------------------------------------------------------- /templates/virtual_uc_topology.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/virtual_uc_topology.yml.j2 -------------------------------------------------------------------------------- /templates/wipe-disk.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/wipe-disk.sh.j2 -------------------------------------------------------------------------------- /templates/worker-nvme.ign.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/templates/worker-nvme.ign.json.j2 -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | ansible-lint 2 | -------------------------------------------------------------------------------- /undercloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/undercloud.yml -------------------------------------------------------------------------------- /vars/flavors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/vars/flavors.yaml -------------------------------------------------------------------------------- /vars/shift_stack_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/vars/shift_stack_vars.yaml -------------------------------------------------------------------------------- /virtual_undercloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-performance/jetpack/HEAD/virtual_undercloud.yml --------------------------------------------------------------------------------