ansible/roles/mastodon/tasks/main.yaml

18 lines
685 B
YAML
Raw Normal View History

2021-02-09 23:28:01 +00:00
- name: Import secret.yaml to obtain secrets
include_tasks: secrets.yaml
when:
- mastodon_use_external_db
- postgres_enabled is defined and postgres_enabled
- set_fact:
mastodon_combined_values: "{{ mastodon_default_values | combine(mastodon_values, recursive=true) }}"
- name: Deploy Mastodon
2022-07-12 13:48:14 +00:00
kubernetes.core.helm:
2021-02-09 23:28:01 +00:00
create_namespace: true
release_namespace: "{{ mastodon_namespace | default(namespace) }}"
release_name: "{{ mastodon_name | default('mastodon') }}"
chart_ref: "{{ mastodon_chart | default('ghp/mastodon') }}"
chart_version: "{{ mastodon_version | default(omit) }}"
release_values: "{{ mastodon_combined_values | from_yaml }}"