From ea4ecb2fae6d5daa493c59b978d5a84ae4226726 Mon Sep 17 00:00:00 2001 From: Elam Monnot Date: Wed, 5 Apr 2023 17:17:15 +0200 Subject: [PATCH] feat: changed the way the playbook behave --- roles/peertube/files/finish | 6 ++++++ roles/peertube/tasks/main.yml | 18 ++++++------------ 2 files changed, 12 insertions(+), 12 deletions(-) create mode 100644 roles/peertube/files/finish diff --git a/roles/peertube/files/finish b/roles/peertube/files/finish new file mode 100644 index 0000000..c24de5c --- /dev/null +++ b/roles/peertube/files/finish @@ -0,0 +1,6 @@ +export KUBECONFIG=/etc/rancher/k3s/k3s.yaml; +helm repo add postgresql https://charts.bitnami.com/bitnami; +helm repo add redis https://charts.bitnami.com/bitnami; +helm repo add mail https://bokysan.github.io/docker-postfix; +helm install --create-namespace -n peertube peertube-gsb /root/tools/peertube/helm/ ; +kubectl config view --raw > ~/.kube/config diff --git a/roles/peertube/tasks/main.yml b/roles/peertube/tasks/main.yml index be43ad5..014cdb4 100644 --- a/roles/peertube/tasks/main.yml +++ b/roles/peertube/tasks/main.yml @@ -18,17 +18,11 @@ dest: /root/tools/peertube/helm/ mode: '0644' + - name: copie du script finish... + copy: + src: /root/tools/ansible/gsb2023/roles/peertube/files/finish + dest: /root + mode: '0644' + - name: installation de helm... shell: curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash - - - name: exposition du cluster... - command: KUBECONFIG=/etc/rancher/k3s/k3s.yaml - - - name: mise a jour de la configuration de kubectl... - command: kubectl config view --raw > ~/.kube/config - - - name: installation de peertube... - shell: helm repo add postgresql https://charts.bitnami.com/bitnami && helm repo add redis https://charts.bitnami.com/bitnami && helm repo add mail https://bokysan.github.io/docker-postfix - - - name: lancement du helm chart peertube... - shell: helm install --create-namespace -n peertube peertube-gsb /root/tools/peertube/helm/