Go to file
Louis Abel c962eba82a
enable registration
2023-01-03 18:50:06 -07:00
collections adjust requirements 2022-06-03 20:09:33 -07:00
defaults Initial Push 2022-03-03 22:15:25 -07:00
files Add signup redirect link 2023-01-03 18:49:30 -07:00
handlers add httpd and other fun stuff 2022-06-03 19:33:48 -07:00
roles Add a tmp folder for init 2022-06-03 19:56:40 -07:00
tasks Add signup redirect link 2023-01-03 18:49:30 -07:00
templates enable registration 2023-01-03 18:50:06 -07:00
tests should be possible to use httpd module for certs 2022-03-16 00:30:42 -07:00
tmp Add a tmp folder for init 2022-06-03 19:56:40 -07:00
vars fix quotes 2022-06-03 20:02:48 -07:00
.ansible-lint Initial Push 2022-03-03 22:15:25 -07:00
.gitignore Add a tmp folder for init 2022-06-03 19:56:40 -07:00
.pre-commit-config.yaml Initial Push 2022-03-03 22:15:25 -07:00
.yamllint Initial Push 2022-03-03 22:15:25 -07:00
README.md Update readme, update vars 2022-03-03 22:36:46 -07:00
adhoc-create-org.yml Use ansible.builtin and add new adhocs 2022-03-27 17:53:47 -07:00
adhoc-create-repo.yml add repo creation 2022-04-07 14:17:14 -07:00
adhoc-create-team.yml add repo creation 2022-04-07 14:17:14 -07:00
adhoc-team-mod-members.yml Use ansible.builtin and add new adhocs 2022-03-27 17:53:47 -07:00
init-ansible-host.yml more FQCN 2022-11-08 15:20:17 -07:00
init-gitea-configure.yml more FQCN 2022-11-08 15:20:17 -07:00
init-gitea-themes.yml improve some FQCN 2022-11-08 15:18:02 -07:00
init-gitea-update.yml address more FQCN 2022-03-27 19:00:34 -07:00
main.yml Initial Push 2022-03-03 22:15:25 -07:00
role-gitea.yml add missing theme 2022-10-25 16:26:39 -07:00

README.md

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.

TODO

  • Create valid tests
  • Create valid template file to deploy

Provides / Information

This repository is for Gitea operations and management.

.
├── adhoc-create-org.yml
├── collections
│   ├── README.md
│   └── requirements.yml
├── defaults
│   └── main.yml
├── files
│   ├── 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
├── handlers
│   └── main.yml
├── init-gitea-configure.yml
├── init-gitea-themes.yml
├── init-gitea-update.yml
├── main.yml
├── README.md
├── role-gitea.yml
├── roles
│   └── README.md
├── tasks
│   ├── gitea
│   │   ├── configure.yml
│   │   ├── install.yml
│   │   └── theme.yml
│   ├── gitea.yml
│   └── main.yml
├── templates
│   ├── etc
│   │   └── gitea
│   │       └── conf
│   │           └── app.ini.j2
│   └── README.md
├── tests
│   ├── inventory
│   ├── README.md
│   └── test.yml
└── vars
    ├── common.yml
    ├── db.yml
    └── main.yml