Allow downloading configs

This commit is contained in:
Nikolai Rodionov 2024-03-22 16:58:24 +01:00
parent 514c5a019f
commit 05611ecdc4
Signed by: allanger
GPG Key ID: 0AA46A90E25592AD
2 changed files with 2 additions and 1 deletions

View File

@ -124,6 +124,6 @@
when: download_config
ansible.builtin.fetch:
src: "{{ conf_dir }}/config"
dest: "{{ username }}-{{ cluster }}-config"
dest: "{{ output_path }}/{{ username }}-{{ cluster }}-config"
flat: true
tags: add_user

View File

@ -88,3 +88,4 @@
user_k8s_cert_crt_file: "{{ item.k8s_cert_crt_file | default(k8s_cert_crt_file) }}"
user_k8s_cert_key_file: "{{ item.k8s_cert_key_file | default(k8s_cert_key_file) }}"
download_config: "{{ item.download_config | default(false) }}"
output_path: "{{ item.output_path | default ('/tmp/outputs') }}"