ansible-gitea-management/README.md

67 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2022-03-04 05:15:25 +00:00
# Ansible AWX Template: Gitea Management
Ansible AWX is the method used for the Rocky Linux infrastructure, as a replacement for using the CLI. This template is used specifically for management of Gitea.
2022-03-04 05:36:46 +00:00
## TODO
* Create valid tests
* Create valid template file to deploy
2022-03-04 05:15:25 +00:00
## Provides / Information
This repository is for Gitea operations and management.
```
.
2022-03-04 05:34:51 +00:00
├── adhoc-create-org.yml
├── collections
│   ├── README.md
│   └── requirements.yml
2022-03-04 05:15:25 +00:00
├── defaults
│   └── main.yml
├── files
2022-03-04 05:34:51 +00:00
│   ├── README.md
│   └── var
│   └── lib
│   └── gitea
│   └── custom
│   └── public
│   └── css
│   ├── theme-carbonred.css
│   ├── theme-darkred.css
│   ├── theme-gitea-blue.css
│   ├── theme-gitea-modern.css
│   └── theme-pitchblack.css
2022-03-04 05:15:25 +00:00
├── handlers
│   └── main.yml
2022-03-04 05:34:51 +00:00
├── init-gitea-configure.yml
├── init-gitea-themes.yml
├── init-gitea-update.yml
├── main.yml
├── README.md
├── role-gitea.yml
├── roles
│   └── README.md
2022-03-04 05:15:25 +00:00
├── tasks
2022-03-04 05:34:51 +00:00
│   ├── gitea
│   │   ├── configure.yml
│   │   ├── install.yml
│   │   └── theme.yml
│   ├── gitea.yml
2022-03-04 05:15:25 +00:00
│   └── main.yml
├── templates
2022-03-04 05:34:51 +00:00
│   ├── etc
│   │   └── gitea
│   │   └── conf
│   │   └── app.ini.j2
2022-03-04 05:15:25 +00:00
│   └── README.md
├── tests
│   ├── inventory
2022-03-04 05:34:51 +00:00
│   ├── README.md
2022-03-04 05:15:25 +00:00
│   └── test.yml
└── vars
2022-03-04 05:34:51 +00:00
├── common.yml
├── db.yml
2022-03-04 05:15:25 +00:00
└── main.yml
```