forked from gadmin/gsb2023
31 lines
998 B
YAML
31 lines
998 B
YAML
---
|
|
- name: installation de docker...
|
|
shell: curl https://releases.rancher.com/install-docker/20.10.sh | sh
|
|
|
|
- name: installation de k3s...
|
|
shell: curl -sfL https://get.k3s.io | sh -s - --docker
|
|
|
|
- name: création du répertoire du dépot peertube...
|
|
file:
|
|
path: /root/tools/peertube
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: clonage du dépot peertube...
|
|
git:
|
|
repo: https://github.com/Elam-Monnot/Peertube-helm.git
|
|
dest: /root/tools/peertube
|
|
clone: yes
|
|
|
|
- name: copie de values.yaml...
|
|
copy:
|
|
src: /root/tools/ansible/gsb2023/roles/peertube/files/values.yaml
|
|
dest: /root/tools/peertube/Peertube-helm/helm/
|
|
mode: '0644'
|
|
|
|
- name: installation de helm...
|
|
shell: curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
|
|
|
- name: installation de peertube...
|
|
shell: helm dependency build /root/tools/peertube/Peertube-helm/helm && helm install --create-namesapce -n peertube peertube-gsb
|