blob: d373e5a432c76f12e10ed80227b8641c7bd7c084 [file] [log] [blame]
Dmitriy Kruglov6146cb42023-04-10 00:13:59 +02001# This is a clouds.yaml file, which can be used by OpenStack tools as a source
2# of configuration on how to connect to a cloud. If this is your only cloud,
3# just put this file in ~/.config/openstack/clouds.yaml and tools like
4# python-openstackclient will just work with no further config. (You will need
5# to add your password to the auth section)
6# If you have more than one cloud account, add the cloud entry to the clouds
7# section of your existing file and you can refer to them by name with
8# OS_CLOUD=openstack or --os-cloud=openstack
9clouds:
10 target:
11 auth:
12 auth_url: AUTH_URL
13 username: USER_NAME
14 project_name: PROJECT_NAME
15 project_domain_id: default
16 user_domain_name: "default"
17 password: PASSWORD
18 region_name: REGION_NAME
19 interface: "public"
20 insecure: true
21 identity_api_version: 3
22 custom_vars:
23 ubuntu_image_name: "Ubuntu-18.04"
24 fio_net_name: "fio-net"
25 fio_subnet_name: "fio-subnet"
26 fixed_subnet_range: "192.168.200.0/24"
27 net_ipv4: '4'
28 fio_router_name: "fio-router"
29 floating_net_name: "public"
30 sg_name: "fio-sg"
31 keypair_name: "fio-key"
32 keypair_file_location: "."
33 fio_client_name_mask: "fio-vm"
Dmitriy Kruglov090cb192023-07-04 22:10:50 +020034 fio_aa_group_name: "fio-anti-affinity-group"
Dmitriy Kruglov6146cb42023-04-10 00:13:59 +020035 fio_flavor_name: "fio-flavor"
36 fio_flavor_ram: 2048
37 fio_flavor_cpus: 10
38 fio_flavor_disk: 20
39 fio_clients_count: 100
40 fio_vol_name_mask: "fio-vol"
41 fio_vol_size: 100
42 fio_vol_type: "volumes-nvme"
43 fio_vol_mountpoint: "/dev/vdc"
44 mtu_size: 8000
45 hv_suffix: "kaas-kubernetes-XXX"
Dmitriy Kruglov090cb192023-07-04 22:10:50 +020046 cloud_name: "cloud-lon-XXX"
47 concurrency: 5