TranslateProject/sources/tech/20161007 Deploy containers with Atomic Host, Ansible, and Cockpit.md
2016-10-11 14:25:23 +08:00

4.9 KiB
Raw Blame History

Deploy containers with Atomic Host, Ansible, and Cockpit

atomic-ansible-cockpit-containers

In the course of my job at Red Hat, I work with Docker containers on Fedora Atomic host every day. The Atomic Host from Project Atomic is a lightweight container OS that can run Linux containers in Docker format. Its been modified for efficiency, making it optimal to use as a Docker run-time system for cloud environments.

Fortunately Ive found a great way to manage containers running on the host: Cockpit. Cockpit is a remote manager for GNU/Linux servers with a nice Web UI. It lets me manage servers and containers running on the host. You can read more about Cockpit in this overview article previously published here. However, I also wanted to automate running containers on the host, which Ive done using Ansible.

Note that we cannot use the dnf command on the Atomic Host. The host is designed not as a general purpose OS, but to be more fit for containers and other purposes. But its still very easy to set up applications and services on the Atomic Host. This post shows you how to automate and simplify this process.

Setting up the components

Before getting started, make sure you have Ansible installed on your system.

sudo dnf -y install ansible
$ git clone https://github.com/trishnaguha/fedora-cloud-ansible.git

$ cd fedora-cloud-ansible
$ cd cockpit
$ vim inventory

  1. Replace IP_ADDRESS_OF_HOST with the IP address of your Atomic host.
  2. Replace PRIVATE_KEY_FILE in the line ansible_ssh_private_key_file=PRIVATE_KEY_FILE with your SSH private key file.

Now save and exit the inventory file.

Next, edit the ansible configuration file:

$ vim ansible.cfg

Putting it all together

Now its time to run the playbook. This command starts running the Cockpit container on the Atomic host:

$ ansible-playbook cockpit.yml

Cockpit login screen

Managing your containers

Login with the credentials of your Atomic host or as root. Then visit the Containers section on the Cockpit manager to see the containers running on your Atomic host. In the example below, youll see I also set up others like httpd and redis:

Cockpit panel for managing containers

Notice the interface lets you start and stop containers directly in the Cockpit manager using the Run and Stop buttons. You can also manage your Atomic host using the Cockpit manager. Go to Tools -> Terminals. There you can use the terminal of the Atomic host:

Cockpit terminal panel

If you plan to deploy your containerized application on Atomic host, you can simply write a playbook for it. Then you can deploy using the ansible-playbook command and manage the containers using Cockpit.

Running ansible-playbook to deploy multiple containers

Feel free to fork or add playbooks for containers in the repository https://github.com/trishnaguha/fedora-cloud-ansible.


via: https://fedoramagazine.org/deploy-containers-atomic-host-ansible-cockpit/

作者:trishnag

译者:译者ID

校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出