airshipctl/roles/airship-libvirt-gate/defaults/main.yaml
Dmitry Ukov df2fff0acf Add control plane deployment
K8s control plane is deployed by KubeadmControlPlane controller. This
controller creates CAPI machines and infrastructure objects
(Metal3Machine). Metal3Machine objects are created based on a template
which contins host selector label. Control plane label is assigned to a
particular BareMetalHots object defined inside of the shared
kustomization.

Relates-To: #149
Closes: #221
Change-Id: I3be1750aacf9736ece2944045c036f405e404561
2020-06-11 13:44:42 +00:00

130 lines
3.2 KiB
YAML

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
airship_gate_names:
provision_network: air_prov
provision_network_bridge: "prov_br"
nat_network: "air_nat"
nat_network_bridge: "nat_br"
ephemeral_vm: air-ephemeral
target_vm_prefix: "air-target"
target_separator: "-"
target_volume_prefix: "vol_target"
ephemeral_volume: "vol_ephemeral"
pool: airship
airship_gate_ipam:
nat_network:
bridge_ip: "10.23.25.1"
dhcp_start: "10.23.25.100"
dhcp_end: "10.23.25.199"
provision_network:
bridge_ip: "10.23.24.1"
airship_gate_redfish_noauth:
servername: "localhost"
ip:
- "127.0.0.1"
- "::1"
- "{{ airship_gate_ipam.nat_network.bridge_ip }}"
http_port: 8000
airship_gate_redfish_auth:
servername: "localhost"
ip:
- "127.0.0.1"
- "::1"
- "{{ airship_gate_ipam.nat_network.bridge_ip }}"
https_port: 8443
user:
- username: "username"
password: "password"
airship_gate_file_exchanger:
servername: "loacalhost"
ip:
- "127.0.0.1"
- "::1"
- "{{ airship_gate_ipam.nat_network.bridge_ip }}"
http_port: 8100
path: "/srv"
user:
- username: "username"
password: "password"
rbac:
policies:
- role:
- PUT
user:
- username
default:
all: granted
airship_gate_flavors:
small:
target_vm_memory_mb: 1024
target_vm_vcpus: 1
ephemeral_vm_memory_mb: 1024
ephemeral_vm_vcpus: 1
ephemeral_disk_size: 20G
target_disk_size: 10G
disk_format: qcow2
target_vms_count: 3
airship_gate_libvirt_pools:
- path: /var/lib/libvirt/airship
name: "{{ airship_gate_names.pool }}"
airship_gate_libvirt_domain:
state: running
name: 'vm1'
memory_mb: 2048
vcpus: 1
volumes:
- name: 'volume-1'
device: 'disk'
format: 'qcow2'
pool: 'airship'
interfaces:
- network: "{{ airship_gate_names.nat_network }}"
- network: "{{ airship_gate_names.provision_network }}"
airship_gate_libvirt_networks:
- network_action: create
autostart: false
name: "{{ airship_gate_names.nat_network }}"
spec:
forward:
mode: nat
nat:
port:
- start: 1024
end: 65535
bridge:
name: "{{ airship_gate_names.nat_network_bridge }}"
stp: 'on'
delay: '0'
ip:
address: "{{ airship_gate_ipam.nat_network.bridge_ip }}"
netmask: "255.255.255.0"
- network_action: create
autostart: false
name: "{{ airship_gate_names.provision_network }}"
spec:
bridge:
name: "{{ airship_gate_names.provision_network_bridge }}"
stp: 'on'
delay: '0'
ip:
address: "{{ airship_gate_ipam.provision_network.bridge_ip }}"
netmask: "255.255.255.0"