You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 17 Next »

(Work in progress..)

This page describes how to install Identity Hub service on a Virtual Machine by using Ansible and its GIT repository.

It is aimed to technical people who want to deploy a clean installation of Identity Hub in a new environment or to update an existing one.

In case of questions, please contact technical@eduteams.org

What do you need:

all you need is an ansible master VM (from where?), with installed:

  •     Ansible >= 2.2.1.0 
  •     Pip 
  •     GIT (which repository? from where to get credentials to checkout code?)

To install Ansible, you can you pip:

sudo apt-get install python-pip git
sudo pip install ansible
git clone git@dev.niif.hu:vopaas/TEIP-deploy.git

How to prepare a new platform:

Ansible script are idempotent. You can use them into a new VM or into an existing platform (to update it or to change some parameters).

To prepare a new platform, there are some directory and files to prepare:

group_vars/new

inventory/new

To prepare eduTEAMS platform, you must copy the following directories. Replace "new" with the name that was chosen for the platform. 

group_vars/EXAMPLE

inventory/EXAMPLE

After new platform is ready, you have to modify some files:

FILE: group_vars/EXAMPLE/secrets.yml

Secrets contains all important data. After changing the fields, you must encrypt it through ansible-vault

COMMAND: ansible-vault encrypt group_vars/EXAMPLE/secrets.yml

You must provide a new password (PASSWORD)

DIRECTORY: group/vars/EXAMPLE/logos

Those directory contains all static images

DIRECTORY: group/vars/EXAMPLE/certs

Add all certificates files inside this directory (It is recommended to encrypt all those files with ansible-vault)

inventory/EXAMPLE/teip.yml

Add Identity Hub URL or IP address, then add the platform name.

playbook/teipservers.yml

Edit variables with all set desired for the new platform

After all files are ready, you can start ansible:

ansible-playbook -v -i inventory/EXAMPLE/teip.yml playbook/site.yml --ask-vault-pass

  • No labels