forked from metal3-io/metal3-dev-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_example.sh
154 lines (124 loc) · 3.97 KB
/
config_example.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/bin/bash
#
# Choose whether the "baremetal" libvirt network will use IPv4, IPv6, or IPv4+IPv6.
# This network is the primary network interface for the virtual bare metal hosts.
#
# Note that this only sets up the underlying network, and fully provisioning IPv6
# kubernetes clusters is not yet automated. If IPv6 is enabled, DHCPv6 will
# be available to the virtual bare metal hosts.
#
# v4 -- IPv4 (default)
# v6 -- IPv6
# v4v6 -- dual-stack IPv4+IPv6
#
#export IP_STACK=v6
#
# This is the subnet used on the "baremetal" libvirt network, created as the
# primary network interface for the virtual bare metal hosts.
#
# V4 default of 192.168.111.0/24 set in lib/network.sh
# V6 default of fd55::/64 is set in lib/network.sh
#
#export EXTERNAL_SUBNET_V4="192.168.111.0/24"
#export EXTERNAL_SUBNET_V6="fd55::/64"
#
# This SSH key will be automatically injected into the provisioned host
# by the provision_host.sh script.
#
# Default of ~/.ssh/id_rsa.pub is set in lib/common.sh
#
#export SSH_PUB_KEY=~/.ssh/id_rsa.pub
#
# Select the Container Runtime, can be "podman" or "docker"
# Defaults to "podman"
#
#export CONTAINER_RUNTIME="podman"
#
# Set the Baremetal Operator repository to clone
#
#export BMOREPO="${BMOREPO:-https://github.com/metal3-io/baremetal-operator.git}"
#
# Set the Baremetal Operator branch to checkout
#
#export BMOBRANCH="${BMOBRANCH:-master}"
#
# Set the Cluster Api metal3 provider repository to clone
#
#export CAPM3REPO="${CAPM3REPO:-https://github.com/metal3-io/cluster-api-provider-metal3.git}"
#
# Set the Cluster Api metal3 provider branch to checkout
#
#export CAPM3BRANCH="${CAPM3BRANCH:-master}"
#
# Force deletion of the BMO and CAPM3 repositories before cloning them again
#
#export FORCE_REPO_UPDATE="${FORCE_REPO_UPDATE:-false}"
#
# Run a local baremetal operator instead of deploying in Kubernetes
#
#export BMO_RUN_LOCAL=true
#
# Run a local CAPI operator instead of deploying in Kubernetes
#
#export CAPM3_RUN_LOCAL=true
#
# Do not retry on failure during verifications or tests of the environment
# This should be true. It could only be set to false for verifications of a
# dev env deployment that fully completed. Otherwise failures will appear as
# resources are not ready.
#
#export SKIP_RETRIES=false
#
# Interval between retries after verification or test failure
#
#export TEST_TIME_INTERVAL=10
#
# Number of maximum verification or test retries
#
#export TEST_MAX_TIME=120
#
# Set the driver. The default value is 'ipmi'
#
#export BMC_DRIVER="redfish"
# Select the Cluster API provider Metal3 version
# Accepted values : v1alpha3 v1alpha4
# default: v1alpha3
#
#export CAPI_VERSION=v1alpha3
#export KUBERNETES_VERSION="v1.18.0"
# Version of kubelet, kubeadm and kubectl binaries
#export KUBERNETES_BINARIES_VERSION="${KUBERNETES_BINARIES_VERSION:-${KUBERNETES_VERSION}}"
#export KUBERNETES_BINARIES_CONFIG_VERSION="v0.2.7"
# Configure provisioning network for single-stack ipv6
#PROVISIONING_IPV6=false
# Image OS (can be "Cirros", "Ubuntu", "Centos", overriden by IMAGE_* if set)
#
#export IMAGE_OS="Cirros"
# Image for target hosts deployment
#
#export IMAGE_NAME="cirros-0.4.0-x86_64-disk.img"
# Location of the image to download
#
#export IMAGE_LOCATION="http://download.cirros-cloud.net/0.4.0"
# Image username for ssh
#
#export IMAGE_USERNAME="cirros"
# Container image for ironic pod
#
# export IRONIC_IMAGE="quay.io/metal3-io/ironic"
# Container image for vbmc container
#
#export VBMC_IMAGE="quay.io/metal3-io/vbmc"
# Container image for sushy-tools container
#
#export SUSHY_TOOLS_IMAGE="quay.io/metal3-io/sushy-tools"
# APIEndpoint IP for target cluster
#export CLUSTER_APIENDPOINT_IP="192.168.111.249"
# Cluster provisioning Interface
#export CLUSTER_PROVISIONING_INTERFACE="ironicendpoint"
# POD CIDR
# export POD_CIDR=${POD_CIDR:-"192.168.0.0/18"
# Node hostname format. This is a format string that must contain exactly one
# %d format field that will be replaced with an integer representing the number
# of the node.
# export NODE_HOSTNAME_FORMAT="node-%d"