aboutsummaryrefslogtreecommitdiff
path: root/ansible/playbooks/k8s.yml
blob: 45f03eef8e9d5fd730314a611a656c77103f5fc3 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: Deploy a Production Ready Kubernetes Cluster
  hosts: all
  become: true
  roles:
    - role: k8s

- name: Import kubespray playbook to deploy k8s cluster
  ansible.builtin.import_playbook: ../kubespray/cluster.yml
...