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