Skip to content

Commit f065f32

Browse files
committed
ansible: Switch minio role to a maintained one
atossato's minio role broke due to lack of maintenance. ricsanfre.minio seems maintained. So switch to that.
1 parent da14ca3 commit f065f32

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ansible.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Install required roles
18-
run: ansible-galaxy role install atosatto.minio geerlingguy.redis
18+
run: ansible-galaxy role install ricsanfre.minio geerlingguy.redis
1919

2020
- name: Run ansible
2121
run: |

ansible/expander.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
tags: minio
44
become: true
55
roles:
6-
- role: atosatto.minio
6+
- role: ricsanfre.minio
77
vars:
88
minio_server_datadirs:
99
- "/var/lib/minio"
10-
minio_access_key: "karton"
11-
minio_secret_key: "{{ s3_secret_key }}"
10+
minio_root_user: "karton"
11+
minio_root_password: "{{ s3_secret_key }}"
1212

1313
- name: "Install redis"
1414
hosts: redis

ansible/group_vars/all.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ minio_listen_address: "127.0.0.1"
88
minio_port: 9091
99

1010
# minio role
11-
minio_server_addr: "{{ minio_listen_address }}:{{ minio_port }}"
11+
minio_server_addr: "{{ minio_listen_address }}"
12+
minio_server_port: "{{ minio_port }}"
1213

1314
# karton-service role
1415
s3_address: "http://{{ minio_server }}:{{ minio_port }}"

0 commit comments

Comments
 (0)