Use Vagrantfile to build virtual site
[icn.git] / deploy / metal3-vm / config_example.sh
1 #!/bin/bash
2
3 #
4 # This is the subnet used on the "baremetal" libvirt network, created as the
5 # primary network interface for the virtual bare metalhosts.
6 #
7 # Default of 192.168.111.0/24 set in lib/common.sh
8 #
9 #export EXTERNAL_SUBNET="192.168.111.0/24"
10
11 #
12 # This SSH key will be automatically injected into the provisioned host
13 # by the provision_host.sh script.
14 #
15 # Default of ~/.ssh/id_rsa.pub is set in lib/common.sh
16 #
17 #export SSH_PUB_KEY=~/.ssh/id_rsa.pub
18
19 #
20 # Select the Container Runtime, can be "docker" or "containerd"
21 # Defaults to "docker"
22 #
23 #export CONTAINER_RUNTIME="docker"
24
25 #
26 # Set the Baremetal Operator repository to clone
27 #
28 #export BMOREPO="${BMOREPO:-https://github.com/metal3-io/baremetal-operator.git}"
29
30 #
31 # Set the Baremetal Operator branch to checkout
32 #
33 #export BMOBRANCH="${BMOBRANCH:-master}"
34
35 #
36 # Force deletion of the BMO and CAPBM repositories before cloning them again
37 #
38 #export FORCE_REPO_UPDATE="${FORCE_REPO_UPDATE:-false}"
39
40 #
41 # Run a local baremetal operator instead of deploying in Kubernetes
42 #
43 #export BMO_RUN_LOCAL=true