Skip to content
This repository has been archived by the owner on Sep 3, 2020. It is now read-only.

roquie/kontena-ansible

Repository files navigation

Kontena Ansible




This Ansible configs automatically installing Kontena Server (on master), Kontena Agent (per node) and Kontena CLI.

Requirements

  • Ansible >= 2.3

How to use

  1. Clone repo git clone [email protected]:roquie/kontena-ansible.git
  2. Install dependencies: ansible-galaxy install -r requirements.yml
  3. Create your own inventory folder inside a inventory directory. Don't forget write down servers IP's inside hosts file.
  4. Run it.
kontena master login --code secret https://domain_or_ip:8443
# kontena master login --code secret http://domain_or_ip:8080

Step by step

  1. Don't forget to write own public key in the server and create development directory based on vagrant.
  2. Install kontena-server on Master server first
$ ansible-playbook -i inventory/development playbooks/start.yml --limit=master
  1. Login to the Master server, using secret code (ks_initial_code inside a inventory/development/master.yml):
$ ansible-playbook -i inventory/development playbooks/start.yml --limit=master
  1. Create a development grid and then receive grid token
$ kontena grid create development && kontena grid env
  1. Copy-paste token and URI to the variables (ka_master_uri, ka_token) inside a inventory/development/nodes.yml
  2. Install kontena-agent on the Nodes servers, like as:
$ ansible-playbook -i inventory/development playbooks/start.yml --limit=nodes

If u want install agent on same host where installed kontena-server package, use this command:

$ ansible-playbook -i inventory/development playbooks/start.yml --limit=nodes --tags=kontena_agent

After installation and 1-3 minutes, node will be shown at list kontena node ls.

Options

Configure base host and install depends

ansible-playbook -i inventory/your playbooks/start.yml --tags=base_configure

Install Kontena Agent on all hosts

ansible-playbook -i inventory/your playbooks/start.yml --tags=kontena_agent

Install Kontena Server on all Master hosts

ansible-playbook -i inventory/your playbooks/start.yml --tags=kontena_server

Install Docker & Kontena Master

ansible-playbook -i inventory/your playbooks/start.yml --limit=master

Install Docker & Kontena Agent (to nodes)

ansible-playbook -i inventory/your playbooks/start.yml --limit=nodes

Install Kontena CLI

ansible-playbook -i inventory/your playbooks/start.yml --limit=cli

TODO

  • create separate repo for kontena-server role & register her to the ansible-galaxy
  • create separate repo for kontena-agent role & register her to the ansible-galaxy
  • create separate repo for kontena-cli role & register her to the ansible-galaxy
  • write role for installing kontena-cli on GNU/Linux (yes, I'm so lazy for lift my fingers above the keyboard...)
  • automatically uninstall all installed packages: docker, kontena-master, kontena-node and kontena-cli
  • write tests (for kontena-server and kontena-agent they are ready)

Supported OS

  • Ubuntu 16.04 LTS
  • Ubuntu 14.04 LTS

Vagrant

  • cd /path/to/project
  • ansible-galaxy install -r requirements.yml
  • vagrant up

License

MIT