Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
**tfplan
**gcp-credentials/
**logs/
.vscode
.vscode
.DS_Store
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
# msg: "Environment: {{ task_config.environment }}"
# when: state == "present" and not ansible_check_mode and dry_run_mode != "true"

- name: Ensure /mnt directory exists
file:
path: /mnt
state: directory
mode: '0755'
when: state == "present" and not ansible_check_mode and dry_run_mode != "true"

- name: Copy coturn setup script to target
copy:
src: "{{ task_config.script }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
# msg: "Environment: {{ task_config.environment }}"
# when: state == "present" and not ansible_check_mode and dry_run_mode != "true"

- name: Ensure /mnt directory exists
file:
path: /mnt
state: directory
mode: '0755'
when: state == "present" and not ansible_check_mode and dry_run_mode != "true"

- name: Copy coturn setup script to target
copy:
src: "{{ task_config.script }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@
- name: install helm diff plugin
kubernetes.core.helm_plugin:
plugin_path: https://github.com/databus23/helm-diff
plugin_version: v3.9.13
state: present