bugfix: /resources.json and /APIs cannot be accessed
[releng.git] / prototypes / bifrost / playbooks / inventory / group_vars / baremetal
1 ---
2 # The ironic API URL for bifrost operations.  Defaults to localhost.
3 # ironic_url: "http://localhost:6385/"
4
5 # The network interface that bifrost will be operating on.  Defaults
6 # to virbr0 in roles, can be overridden here.
7 # network_interface: "virbr0"
8
9 # The path to the SSH key to be utilized for testing and burn-in
10 # to configuration drives. When set, it should be set in both baremetal
11 # and localhost groups, however this is only an override to the default.
12
13 # workaround for opnfv ci until we can fix non-root use
14 ssh_public_key_path: "/root/.ssh/id_rsa.pub"
15
16 # Normally this user should be root, however if cirros is used,
17 # a user may wish to define a specific user for testing VM
18 # connectivity during a test sequence
19 testing_user: root
20
21 # The default port to download files via.  Required for IPA URL generation.
22 # Presently the defaults are located in the roles, however if changed both
23 # the localhost and baremetal group files must be updated.
24 # file_url_port: 8080
25
26 # IPA Image parameters.  If these are changed, they must be changed in
27 # Both localhost and baremetal groups.  Presently the defaults
28 # in each role should be sufficent for proper operation.
29 # ipa_kernel: "{{http_boot_folder}}/coreos_production_pxe.vmlinuz"
30 # ipa_ramdisk: "{{http_boot_folder}}/coreos_production_pxe_image-oem.cpio.gz"
31 # ipa_kernel_url: "http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:{{file_url_port}}/coreos_production_pxe.vmlinuz"
32 # ipa_ramdisk_url: "http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:{{file_url_port}}/coreos_production_pxe_image-oem.cpio.gz"
33
34 # The http_boot_folder defines the root folder for the webserver.
35 # If this setting is changed, it must be applied to both the baremetal
36 # and localhost groups. Presently the role defaults are set to the value
37 # below.
38 # http_boot_folder: /httpboot
39
40 # The settings for the name of the image to be deployed along with the
41 # on disk location are below.  If changed, these settings must be applied
42 # to both the baremetal and localhost groups.  If the file is already on
43 # disk, then the image generation will not take place, otherwise an image
44 # will be generated using diskimage-builder.
45 # deploy_image_filename: "deployment_image.qcow2"
46 # deploy_image: "{{http_boot_folder}}/{{deploy_image_filename}}"
47
48 # Under normal circumstances, the os_ironic_node module does not wait for
49 # the node to reach active state before continuing with the deployment
50 # process.  This means we may have to timeout, to figure out a deployment
51 # failed.  Change wait_for_node_deploy to true to cause bifrost to wait for
52 # Ironic to show the instance in Active state.
53 wait_for_node_deploy: false