mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 10:13:58 +00:00
10 lines
310 B
YAML
10 lines
310 B
YAML
---
|
|
- hosts: myrddin.prole.org
|
|
become: true
|
|
tasks:
|
|
- name: Ensure OpenBao storage directory exists
|
|
ansible.builtin.file:
|
|
path: /synology/d001/openbao
|
|
state: directory
|
|
mode: "0777" # OpenBao pod runs as non-root usually, but k3s local-path often needs this or specific UID
|