16 lines
389 B
YAML
16 lines
389 B
YAML
---
|
|
- hosts: control-plane
|
|
name: "Start OpenEBS"
|
|
tasks:
|
|
- name: Install openEBS
|
|
shell: kubectl apply -f https://openebs.github.io/charts/openebs-operator-lite.yaml
|
|
|
|
- name: Copy conf
|
|
become: yes
|
|
template:
|
|
src: openebs.yaml
|
|
dest: /etc/openebs.yaml
|
|
|
|
- name: Apply Conf
|
|
shell: kubectl apply -f /etc/openebs.yaml
|