forked from bbaassssiiee/controller
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b887d3
commit f1c59c5
Showing
2 changed files
with
80 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Bas Meijer | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,62 @@ | ||
# Ansible Controller with SemaphoreUI in docker-compose and PostgreSQL + NGinx SSL | ||
# Ansible Controller with SemaphoreUI | ||
|
||
`vagrant up` will create a dev machine named 'controller', add it to your /etc/hosts. | ||
This project provides a development environment for deploying an Ansible Controller with SemaphoreUI. In this setup, Semaphore runs within a Docker container, while other components, such as PostgreSQL and Nginx, run directly on the host system. | ||
|
||
Use this project with your own inventory, or use 'local' for localhost playbook provision.yml. | ||
Don't forget to `export DB_PASS=database_password` | ||
## Contents | ||
|
||
Self-signed certs for now. | ||
- [Overview](#overview) | ||
- [Installation](#installation) | ||
- [Configuration](#configuration) | ||
- [Usage](#usage) | ||
- [Contributing](#contributing) | ||
- [License](#license) | ||
|
||
## Overview | ||
|
||
This project automates the deployment of an Ansible Controller featuring a web-based interface through SemaphoreUI. Semaphore runs within a Docker container, while components like PostgreSQL and Nginx operate directly on the host system. | ||
|
||
## Installation | ||
|
||
Follow these steps to set up the environment: | ||
|
||
1. **Prerequisites**: | ||
- [Ansible](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html) installed on your local machine. | ||
- [Docker](https://docs.docker.com/get-docker/) installed on the host system. | ||
|
||
2. **Clone the repository**: | ||
```bash | ||
git clone https://github.com/bbaassssiiee/controller.git | ||
cd controller | ||
``` | ||
|
||
3. **Set environment variables**: | ||
Define the database password by exporting the `DB_PASS` environment variable: | ||
```bash | ||
export DB_PASS=your_database_password | ||
``` | ||
|
||
4. **Run the playbook**: | ||
Execute the Ansible playbook to provision the environment: | ||
```bash | ||
ansible-playbook provision.yml -i inventory/local | ||
``` | ||
|
||
**Note**: The `inventory/local` configuration is suitable for direct deployment on systems like Red Hat, AlmaLinux, or Rocky Linux. In this setup, Vagrant and VirtualBox are not required. | ||
|
||
## Configuration | ||
|
||
- **SSL Certificates**: By default, self-signed certificates are used. For production environments, it is recommended to implement certificates from a trusted certificate authority. | ||
|
||
- **Database Password**: Ensure that the `DB_PASS` environment variable is set with a strong password before running the playbook. | ||
|
||
## Usage | ||
|
||
After successful installation, SemaphoreUI is accessible via your web browser at the address configured in your `/etc/hosts` file. | ||
|
||
## Contributing | ||
|
||
Contributions are welcome! Feel free to submit pull requests or open issues for suggestions and improvements. | ||
|
||
## License | ||
|
||
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.:x |