Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 2357dc7

Browse files
authored
feat: Support Ansible RHEL subscription module (#332)
Allow users to set Ansible Redhat subscription module parameters (defined at https://docs.ansible.com/ansible/latest/modules/redhat_subscription_module.html) directly in the config file. The Ansible Redhat subscription module is called during post deploy.
1 parent b0eefdd commit 2357dc7

File tree

3 files changed

+76
-11
lines changed

3 files changed

+76
-11
lines changed

docs/Config-Specification.rst

+20-10
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,7 @@ node_templates:
792792
groups:
793793
- name:
794794
kernel_options:
795+
redhat_subscription:
795796
physical_interfaces:
796797
ipmi:
797798
- switch:
@@ -867,16 +868,21 @@ node_templates:
867868
| hostname_prefix: | domain: ibm.com | installation image (with or without the'.iso' extension).| |
868869
| domain: | profile: ubuntu-14.04-server-ppc64el | | *install_device* - Path to installation disk device. | |
869870
| profile: | install_device: /dev/sda | | |
870-
| install_device: | users: | | Optional keys: | |
871-
| users: | - name: root | | *hostname_prefix* - Prefix used to assign hostnames to client nodes | |
872-
| - name: | password: <crypted password> | belonging to this node template. A "-" and | |
873-
| password: | - name: user1 | enumeration is added to the end of the prefix to | |
874-
| groups: | password: <crypted password> | make a unique hostname for each client node | |
875-
| - name: | groups: sudo,testgroup1 | (e.g. "controller-1" and "controoler-2"). | |
876-
| kernel_options: | groups: | | *domain* - Domain name used to set client FQDN. | |
877-
| | - name: testgroup1 | (e.g. with 'domain: ibm.com': controller-1.ibm.com) | |
878-
| | - name: testgroup2 | (e.g. without 'domain' value: controller-1.localdomain) | |
879-
| | kernel_options: quiet | | *users* - OS user accounts to create. All parameters in the | |
871+
| install_device: | users: | | *profile* - Cobbler profile to use for OS installation. This | |
872+
| users: | - name: root | name usually should match the name of the | |
873+
| - name: | password: <crypted password> | installation image (with or without the'.iso' extension).| |
874+
| password: | - name: user1 | | *install_device* - Path to installation disk device. | |
875+
| groups: | password: <crypted password> | | |
876+
| - name: | groups: sudo,testgroup1 | | Optional keys: | |
877+
| kernel_options: | groups: | | *hostname_prefix* - Prefix used to assign hostnames to client nodes | |
878+
| redhat_subscription: | - name: testgroup1 | belonging to this node template. A "-" and | |
879+
| | - name: testgroup2 | enumeration is added to the end of the prefix to | |
880+
| | kernel_options: quiet | make a unique hostname for each client node | |
881+
| | redhat_subscription: | (e.g. "controller-1" and "controoler-2"). | |
882+
| | state: present | | *domain* - Domain name used to set client FQDN. | |
883+
| | username: joe_user | (e.g. with 'domain: ibm.com': controller-1.ibm.com) | |
884+
| | password: somepass | (e.g. without 'domain' value: controller-1.localdomain) | |
885+
| | auto_attach: true | | *users* - OS user accounts to create. All parameters in the | |
880886
| | | `Ansible user module <ansible_user_module_>`_ are | |
881887
| | | supported. **note:** Plaintext user passwords are not | |
882888
| | | supported. For help see | |
@@ -885,6 +891,9 @@ node_templates:
885891
| | | group module <ansible_group_module_>`_ are | |
886892
| | | supported. | |
887893
| | | | *kernel_options* - Kernel options | |
894+
| | | | *redhat_subscription* - Manage RHEL subscription. All parameters in the | |
895+
| | | `Ansible redhat_subscription module | |
896+
| | | <ansible_rhel_sub_module_>`_ are supported. | |
888897
| | | | |
889898
+------------------------------------+-----------------------------------------------+----------------------------------------------------------------------------------+----------+
890899
| .. _node_templates_physical_ints: | | | |
@@ -1026,6 +1035,7 @@ node_templates:
10261035
.. _ansible_user_module: http://docs.ansible.com/ansible/latest/user_module.html
10271036
.. _gen_pass: http://docs.ansible.com/ansible/latest/reference_appendices/faq.html#how-do-i-generate-crypted-passwords-for-the-user-module
10281037
.. _ansible_group_module: http://docs.ansible.com/ansible/latest/group_module.html
1038+
.. _ansible_rhel_sub_module: http://docs.ansible.com/ansible/latest/modules/redhat_subscription_module.html
10291039

10301040

10311041
software_bootstrap:

playbooks/configure_operating_systems.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Copyright 2018 IBM Corp.
2+
# Copyright 2019 IBM Corp.
33
#
44
# All Rights Reserved.
55
#
@@ -22,6 +22,11 @@
2222
- name: Include localhost variables
2323
include_vars: host_vars/localhost
2424

25+
- name: Manage RHEL registration
26+
hosts: client_nodes
27+
tasks:
28+
- include: tasks/redhat_subscription.yml
29+
2530
- name: Add groups and users
2631
hosts: client_nodes
2732
tasks:
+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
# Copyright 2019 IBM Corp.
3+
#
4+
# All Rights Reserved.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
18+
- set_fact:
19+
params: "{{ os['redhat_subscription'] }}"
20+
when: os['redhat_subscription'] is defined
21+
22+
- name: "RHEL Registration"
23+
user:
24+
f: "{{ params.f | default(omit) }}"
25+
activationkey: "{{ params.activationkey | default(omit) }}"
26+
auto_attach: "{{ params.auto_attach | default(omit) }}"
27+
consumer_id: "{{ params.consumer_id | default(omit) }}"
28+
consumer_name: "{{ params.consumer_name | default(omit) }}"
29+
consumer_type: "{{ params.consumer_type | default(omit) }}"
30+
environment: "{{ params.environment | default(omit) }}"
31+
force_register: "{{ params.force_register | default(omit) }}"
32+
org_id: "{{ params.org_id | default(omit) }}"
33+
password: "{{ params.password | default(omit) }}"
34+
pool: "{{ params.pool | default(omit) }}"
35+
pool_ids: "{{ params.pool_ids | default(omit) }}"
36+
rhsm_baseurl: "{{ params.rhsm_baseurl | default(omit) }}"
37+
rhsm_repo_ca_cert: "{{ params.rhsm_repo_ca_cert | default(omit) }}"
38+
server_hostname: "{{ params.server_hostname | default(omit) }}"
39+
server_insecure: "{{ params.server_insecure | default(omit) }}"
40+
server_proxy_hostname: "{{ params.server_proxy_hostname | default(omit) }}"
41+
server_proxy_password: "{{ params.server_proxy_password | default(omit) }}"
42+
server_proxy_port: "{{ params.server_proxy_port | default(omit) }}"
43+
server_proxy_user: "{{ params.server_proxy_user | default(omit) }}"
44+
state: "{{ params.state | default(omit) }}"
45+
username: "{{ params.username | default(omit) }}"
46+
when:
47+
- os['redhat_subscription'] is defined
48+
- ansible_distribution == 'RedHat'
49+
50+
...

0 commit comments

Comments
 (0)