Migrate Grafana to postgres
This commit is contained in:
parent
cccae82c04
commit
ab3db510ab
@ -84,7 +84,9 @@ gitea:
|
|||||||
62303264653836656162366362316461656363353539343632616462626231643632
|
62303264653836656162366362316461656363353539343632616462626231643632
|
||||||
# Grafana
|
# Grafana
|
||||||
grafana:
|
grafana:
|
||||||
mysql_password: !vault |
|
db:
|
||||||
|
hostname: 172.31.47.215
|
||||||
|
pass: !vault |
|
||||||
$ANSIBLE_VAULT;1.1;AES256
|
$ANSIBLE_VAULT;1.1;AES256
|
||||||
65376335363732633132326630323161393861323833323631613630343262383137656138356262
|
65376335363732633132326630323161393861323833323631613630343262383137656138356262
|
||||||
3730386139393739373738626535376636666135646463350a623331333032346434343465666234
|
3730386139393739373738626535376636666135646463350a623331333032346434343465666234
|
||||||
|
@ -2,4 +2,3 @@
|
|||||||
allow_duplicates: no
|
allow_duplicates: no
|
||||||
dependencies:
|
dependencies:
|
||||||
- role: apache-php
|
- role: apache-php
|
||||||
- role: mysql
|
|
||||||
|
@ -3,22 +3,24 @@
|
|||||||
---
|
---
|
||||||
- name: Install, configure, and start Grafana
|
- name: Install, configure, and start Grafana
|
||||||
block:
|
block:
|
||||||
- name: Create and configure DB
|
- name: Set up PostgreSQL
|
||||||
block:
|
block:
|
||||||
|
- name: Create DB user
|
||||||
|
postgresql_user:
|
||||||
|
name: grafana
|
||||||
|
password: "{{ grafana.db.pass }}"
|
||||||
|
login_host: "{{ grafana.db.hostname }}"
|
||||||
|
login_user: "{{ psql.ansible.user }}"
|
||||||
|
login_password: "{{ psql.ansible.pass }}"
|
||||||
- name: Create DB
|
- name: Create DB
|
||||||
mysql_db:
|
postgresql_db:
|
||||||
name: grafana
|
name: grafana
|
||||||
login_user: root
|
owner: grafana
|
||||||
login_password: "{{ mysql.root_password }}"
|
encoding: UNICODE
|
||||||
state: present
|
login_host: "{{ grafana.db.hostname }}"
|
||||||
- name: Create user
|
login_user: "{{ psql.ansible.user }}"
|
||||||
mysql_user:
|
login_password: "{{ psql.ansible.pass }}"
|
||||||
name: grafana
|
tags: [ postgresql ]
|
||||||
host: localhost
|
|
||||||
password: "{{ grafana.mysql_password }}"
|
|
||||||
priv: "grafana.*:ALL,GRANT"
|
|
||||||
login_user: root
|
|
||||||
login_password: "{{ mysql.root_password }}"
|
|
||||||
- name: Configure Grafana
|
- name: Configure Grafana
|
||||||
block:
|
block:
|
||||||
- name: Create configuration directories
|
- name: Create configuration directories
|
||||||
|
@ -73,12 +73,12 @@ http_port = 3001
|
|||||||
# as separate properties or as on string using the url properties.
|
# as separate properties or as on string using the url properties.
|
||||||
|
|
||||||
# Either "mysql", "postgres" or "sqlite3", it's your choice
|
# Either "mysql", "postgres" or "sqlite3", it's your choice
|
||||||
type = mysql
|
type = postgres
|
||||||
host = 127.0.0.1:3306
|
host = {{ grafana.db.hostname }}:5432
|
||||||
name = grafana
|
name = grafana
|
||||||
user = grafana
|
user = grafana
|
||||||
# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
|
# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
|
||||||
password = {{ grafana.mysql_password }}
|
password = {{ grafana.db.pass }}
|
||||||
|
|
||||||
# Use either URL or the previous fields to configure the database
|
# Use either URL or the previous fields to configure the database
|
||||||
# Example: mysql://user:secret@host:port/database
|
# Example: mysql://user:secret@host:port/database
|
||||||
|
Loading…
Reference in New Issue
Block a user