Initial qwen3 run with opencode
This commit is contained in:
24
roles.md
Normal file
24
roles.md
Normal file
@@ -0,0 +1,24 @@
|
||||
## Roles
|
||||
|
||||
Organize tasks into reusable roles:
|
||||
|
||||
```yaml
|
||||
- name: Deploy web app
|
||||
hosts: webservers
|
||||
roles:
|
||||
- common
|
||||
- python
|
||||
- nginx
|
||||
|
||||
# Example role structure:
|
||||
# roles/
|
||||
# common/
|
||||
# tasks/main.yml
|
||||
# vars/main.yml
|
||||
# python/
|
||||
# tasks/main.yml
|
||||
# vars/main.yml
|
||||
# nginx/
|
||||
# tasks/main.yml
|
||||
# vars/main.yml
|
||||
```
|
||||
Reference in New Issue
Block a user