Skip to content

Ugly script, which allow to ping HW node by mac to role

Notifications You must be signed in to change notification settings

alexz-kh/fuel_manage_env

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Manage_env.py

Simple script, to perform pining HW node to different network and env schema. Useful for auto-deployment on real hardware.

Modules for run:

  1. fuel-qa
  2. fuel-devops

Strict lab config:

File: strict_lab_config.yaml

assign_method: "hw_pin"
nodes:
  cz0001.com:
    l3_ifaces:
      phys_nic_map: *default_compute_phys
      virt_nic_map: *default_compute_virt
    roles:
      - compute
  cz0005.com:
    l3_ifaces:
      phys_nic_map: *default_controller_phys
      virt_nic_map: *default_controller_virt
    roles:
      - controller

Simple lab config:

File: random_lab_config.yaml

  assign_method: "simple"
  ...
  roller:
controller:
  l3_ifaces:
    phys_nic_map: *default_controller_phys
    virt_nic_map: *default_controller_virt
  roles:
    - controller
  count: 3
compute:
  l3_ifaces:
    phys_nic_map: *default_compute_phys
    virt_nic_map: *default_compute_virt
  roles:
    - compute
    - cinder
  count: 1

Steps logic:

$ export CLUSTER_CONFIG=config.yaml
$ python manage_env.py
  1. Remove env by name, if exist.
  2. wait for enough discover nodes count
  3. Create env with name and configuration from config
  4. Update network and attributes
  5. update common part
  6. create extra part
  7. replace env repos, if exist
  8. Wait for needed nodes count
  9. Assign nodes to cluster
  • In case assign_method == 'simple':
    1. Call simple_pin_nodes_to_cluster and simple pin random node with role. Nodes count taken from config['roller']['controller'] OR ['compute']
  • In case assign_method == 'hw_pin':
    1. Call strict_pin_node_to_cluster which try to find need node, using func check_for_name.
  1. assigncreate network role to nic per node
  • In case assign_method == 'simple':
    1. Call simple_pin_nw_to_node which will try to push network map for each node looking into map from roller[role]['l3_ifaces']
  • In case assign_method == 'hw_pin':
    1. call strict_pin_nw_to_node which will try to get network map from each lab_config['nodes'][node['name']]['l3_ifaces']

How is script determine which node are?

File: ipmi/netifnames.yaml

Take a look into check_for_name func. (In general : try's find node-name from yaml by nic-mac)

Copyright

Script distributed by 'as-is' licence, and no one care about how its work. Script and repo itself can brake your system.

About

Ugly script, which allow to ping HW node by mac to role

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages