- adds an ansible/ directory for management deployments, starting with microk8s
- has a microk8s role
      we will need to add workers
- has a playbook with variables that can install most places
		
	
			
		
			
				
	
	
		
			8 lines
		
	
	
		
			141 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			141 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: install microk8s
 | |
|   hosts: "{{ your_ip }}"
 | |
|   remote_user: "{{ your_user }}"
 | |
|   become: true
 | |
|   roles:
 | |
|     - role: ../roles/microk8s
 |