* feat: move do_setup to new unified format at root of ansible/ dir to allow sharing roles, inventory with playbooks for other deployment types * fix: pass ansible lint * update do settings to current deployment: - bump main node params - add additional settings to helm values template --------- Co-authored-by: Ilya Kreymer <ikreymer@gmail.com>
9 lines
327 B
YAML
9 lines
327 B
YAML
---
|
|
- name: d_ocean | helm | deploy btrix
|
|
ansible.builtin.command: helm upgrade --install -f ../chart/values.yaml -f ../chart/{{ project_name }}-values.yaml btrix ../chart/
|
|
register: helm_result
|
|
changed_when: helm_result.rc == 0
|
|
environment:
|
|
KUBECONFIG: "/home/{{ ansible_user }}/.kube/config"
|
|
tags: helm_upgrade
|