Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jcpowermac committed Feb 20, 2018
1 parent bc0017b commit 73325b9
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions roles/rhscl-mariadb-apb-openshift/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ mariadb_database: "{{ lookup('env','MARIADB_DATABASE') | default('', true) }}"
mariadb_user: "{{ lookup('env','MARIADB_USER') | default('admin', true) }}"
volume_size: "{{ lookup('env','VOLUME_SIZE') | default('10Gi', true) }}"
mariadb_version: "{{ lookup('env','MARIADB_VERSION') | default('10.0', true) }}"

mariadb_version_nodots: "{{ mariadb_version | replace('.', '') }}"


Expand All @@ -20,17 +19,11 @@ image: >-
{%- endif %}
state: present


# Variables below are for the testing of
# the mariadb service.
# Variables below are for the testing of the mariadb service.

test_create_table: 'CREATE TABLE IF NOT EXISTS example_timestamp (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,data VARCHAR(100),cur_timestamp TIMESTAMP(6));'

test_insert: 'INSERT INTO example_timestamp (data) VALUES ("The time of creation is:");'

test_select: 'SELECT * FROM example_timestamp;'


test_galera:
- 'SHOW GLOBAL STATUS LIKE "wsrep_local_state_comment";'
- 'SHOW GLOBAL STATUS LIKE "wsrep_connected";'
Expand Down

0 comments on commit 73325b9

Please sign in to comment.