Sindhur Malleni 63d368c69d WIP - Functionality to add hardware, OS specific metadata
+ Trying to get OSP specific data
+ Pulling neutron facts
+ Nova
+ Adding compute to hardware
+ Adding undercloud
+ (rook) Patch to Metadata.py
+ Getting Metadata in required form
+ Splitting playbook into roles
+ (rook) Patching
+ Generating separate metadata files
+ Running script through ansible
+ Passing metadata file location from playbook per rook
+ Per node ovs version

Change-Id: I8202b7702ba6e124356447405f7baacd8a046b95
2016-04-19 16:14:46 -04:00

22 lines
632 B
YAML

#
# Get mysql facts
#
- name: Get max_connections on the database
shell: mysql -e "show variables like 'max_connections';" | grep max_connections | awk '{print $2}'
register: max_conn
ignore_errors: true
- name: Set max database connections
set_fact:
openstack_mysql_max_connections: "{{ max_conn.stdout }}"
- name : Get file descriptors for the mysql process
shell: cat /proc/$(pgrep mysqld_safe)/limits | grep "open files" | awk '{print $4}'
register: mysql_desc
- name: Set file descriptors fact for mysql
set_fact:
openstack_mysql_file_descriptors: "{{ mysql_desc.stdout }}"