tripleo-quickstart-extras/roles/freeipa-setup/README.md
Harry Rybacki 1eeb7bbee1 Add role to deploy FreeIPA
New role has the ability to deploy a FreeIPA server

- Update undercloud-deploy role to check hostvars for freeipa
  related vars set during role execution
- Update novajoin_prep.sh to set IPA server as dns server

Closes-Bug: 1662923

Change-Id: I53323511aabf0d616805efab6edde4acc7bedf11
2017-05-22 13:21:24 -04:00

997 B

FreeIPA Setup

An Ansible role to setup a FreeIPA server

Requirements

This role requires a running host to deploy FreeIPA

Role Variables

  • freeipa_hostname: <'ipa.tripleodomain'> -- Hostname for the FreeIPA server
  • freeipa_ip: <'192.168.24.250'> -- IP for the the FreeIPA server
  • directory_manager_password: -- Password for the directory manager
  • freeipa_admin_password: -- FreeIPA server admin password
  • undercloud_fqdn: <'undercloud.tripleodomain'> -- FQDN for the undercloud
  • provisioning_cidr: <'{{ freeipa_ip }}/24'> -- If set, it adds the given CIDR to the provisioning interface (which is hardcoded to eth1)
  • supplemental_user: The user which is used to deploy FreeIpa on the supplemental node

Example Playbook

Sample playbook to call the role

# Deploy the FreeIPA Server
- name:  Deploy FreeIPA
  hosts: freeipa_host
  gather_facts: no
  roles:
    - freeipa-setup