Compare commits
3 Commits
4c541fb79d
...
5755e3160d
Author | SHA1 | Date | |
---|---|---|---|
5755e3160d | |||
5d75508308 | |||
6c363a80f4 |
@ -1,6 +1,6 @@
|
|||||||
namespace: finallycoffee
|
namespace: finallycoffee
|
||||||
name: databases
|
name: databases
|
||||||
version: 0.1.1
|
version: 0.1.0
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- transcaffeine <transcaffeine@finally.coffee>
|
- transcaffeine <transcaffeine@finally.coffee>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
elasticsearch_version: "8.17.0"
|
elasticsearch_version: 8.15.3
|
||||||
elasticsearch_state: present
|
elasticsearch_state: present
|
||||||
|
|
||||||
elasticsearch_base_path: /opt/elasticsearch
|
elasticsearch_base_path: /opt/elasticsearch
|
||||||
|
@ -34,5 +34,6 @@
|
|||||||
volumes: "{{ elasticsearch_container_volumes }}"
|
volumes: "{{ elasticsearch_container_volumes }}"
|
||||||
ulimits: "{{ elasticsearch_container_ulimits }}"
|
ulimits: "{{ elasticsearch_container_ulimits }}"
|
||||||
networks: "{{ elasticsearch_container_networks | default(omit, True) }}"
|
networks: "{{ elasticsearch_container_networks | default(omit, True) }}"
|
||||||
|
purge_networks: "{{ elasticsearch_container_purge_networks | default(omit, True) }}"
|
||||||
restart_policy: "{{ elasticsearch_container_restart_policy }}"
|
restart_policy: "{{ elasticsearch_container_restart_policy }}"
|
||||||
state: "{{ elasticsearch_container_state }}"
|
state: "{{ elasticsearch_container_state }}"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
mariadb_version: "10.11.10"
|
mariadb_version: "10.11.9"
|
||||||
mariadb_base_path: /var/lib/mariadb
|
mariadb_base_path: /var/lib/mariadb
|
||||||
mariadb_data_path: >-2
|
mariadb_data_path: >-2
|
||||||
{{ mariadb_base_path }}/{{ mariadb_version | split('.') | first }}
|
{{ mariadb_base_path }}/{{ mariadb_version | split('.') | first }}
|
||||||
|
@ -16,5 +16,6 @@
|
|||||||
volumes: "{{ mariadb_container_volumes }}"
|
volumes: "{{ mariadb_container_volumes }}"
|
||||||
networks: "{{ mariadb_container_networks | default(omit, true) }}"
|
networks: "{{ mariadb_container_networks | default(omit, true) }}"
|
||||||
etc_hosts: "{{ mariadb_container_etc_hosts | default(omit, true) }}"
|
etc_hosts: "{{ mariadb_container_etc_hosts | default(omit, true) }}"
|
||||||
|
purge_networks: "{{ mariadb_container_purge_networks | default(omit, true) }}"
|
||||||
restart_policy: "{{ mariadb_container_restart_policy }}"
|
restart_policy: "{{ mariadb_container_restart_policy }}"
|
||||||
state: "{{ mariadb_container_state }}"
|
state: "{{ mariadb_container_state }}"
|
||||||
|
@ -1,13 +1,8 @@
|
|||||||
---
|
---
|
||||||
postgresql_user: postgresql
|
postgresql_user: postgresql
|
||||||
postgresql_version: >-2
|
postgresql_version: "17.0"
|
||||||
{{ postgresql_version[postgres_major_version | string] }}
|
postgresql_major_version: >-2
|
||||||
postgresql_major_version: 16
|
{{ postgresql_version | split('.') | first }}
|
||||||
postgresql_versions:
|
|
||||||
"17": "17.2"
|
|
||||||
"16": "16.6"
|
|
||||||
"15": "15.10"
|
|
||||||
"14": "14.15"
|
|
||||||
|
|
||||||
postgresql_config_path: >-2
|
postgresql_config_path: >-2
|
||||||
/etc/postgresql/{{ postgresql_major_version }}
|
/etc/postgresql/{{ postgresql_major_version }}
|
||||||
|
Loading…
Reference in New Issue
Block a user