e20c8ae1fa
Added air-worker VM Import kubeconfig and check cluster Initinfra and capi for target cluster Change-Id: Ib05f805b428a1eab20d62df67ac97670714eebd0
136 lines
3.3 KiB
YAML
136 lines
3.3 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
|
|
worker_vm_prefix: "air-worker"
|
|
worker_volume_prefix: "vol_worker"
|
|
|
|
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
|
|
worker_vm_memory_mb: 1024
|
|
worker_vm_vcpus: 1
|
|
worker_disk_size: 10G
|
|
worker_vms_count: 1
|
|
|
|
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"
|