Skip to content

Commit

Permalink
PMM-1717 Create pmm-managed database and user.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi authored and delgod committed Nov 18, 2017
1 parent 948ff04 commit 7c1310e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions playbook-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,20 @@
delay: 30
timeout: 60

- name: pmm-managed | Create MySQL database
mysql_db:
name: pmm-managed
state: present

- name: pmm-managed | Create MySQL user
mysql_user:
name: pmm-managed
host: localhost
password: '*816FFB19BC44AC2749D546E48FA0DF957EDB2C5A'
priv: 'pmm-managed.*:ALL'
encrypted: yes
state: present

- name: Orchestrator | Create MySQL database
mysql_db:
name: orchestrator
Expand Down

0 comments on commit 7c1310e

Please sign in to comment.