Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leslie-tsang/khala
Control anything you need with Khala
https://github.com/leslie-tsang/khala
Last synced: 5 days ago
JSON representation
Control anything you need with Khala
- Host: GitHub
- URL: https://github.com/leslie-tsang/khala
- Owner: leslie-tsang
- Created: 2019-12-19T23:36:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-14T02:08:10.000Z (over 3 years ago)
- Last Synced: 2024-11-15T05:47:15.704Z (2 months ago)
- Language: Makefile
- Size: 9.32 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Name
=================Ansible Khala Oracle (AKO) - A shim container for ansible to run everywhere
Table of Contents
=================* [Name](#name)
* [Description](#description)
* [For Users](#for-users)
* [For Bundle Maintainers](#for-bundle-maintainers)
* [Dependence](#dependence)Description
======AKO is a full-fledged ansible docker container by bundling the standard ansible core,
lots of playbook, as well as most of their external dependencies.This bundle is maintained by Leslie Tsang (leslie.tsang).
Because most of the ansible playbooks are developed by the bundle maintainers, it can ensure
that all these modules are played well together.For Users
---------
To reproduce the ansible container, just do```bash
make
```at the top of the bundle source tree.
Dependence
======
Please note that you may need to install some extra dependencies, like `make`, `docker`, and `docker-compose`.
On Centos 7, for example, installing the dependencies
is as simple as running the following commands:```bash
sudo yum install -y make docker-ce docker-ce-cli containerd.io \
&& sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
```[Back to TOC](#table-of-contents)