summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Sedovic <tomas@sedovic.cz>2017-11-01 11:14:10 +0100
committerTomas Sedovic <tomas@sedovic.cz>2017-11-07 14:35:46 +1100
commit84259a3ed4ac741ee782f57884ba36729e277eae (patch)
tree3cae1c5f914bd6111110e5f2e9137e7669b962cf
parentfabf16250b3947a04fc3b3bcb9b6fc7c1265651b (diff)
downloadopenshift-84259a3ed4ac741ee782f57884ba36729e277eae.tar.gz
openshift-84259a3ed4ac741ee782f57884ba36729e277eae.tar.bz2
openshift-84259a3ed4ac741ee782f57884ba36729e277eae.tar.xz
openshift-84259a3ed4ac741ee782f57884ba36729e277eae.zip
Remove the subscription-manager role
The repo already contains the `rhel_subscribe` role so we should use that instead.
-rw-r--r--roles/subscription-manager/README.md156
-rw-r--r--roles/subscription-manager/pre_tasks/pre_tasks.yml45
-rw-r--r--roles/subscription-manager/tasks/main.yml150
3 files changed, 0 insertions, 351 deletions
diff --git a/roles/subscription-manager/README.md b/roles/subscription-manager/README.md
deleted file mode 100644
index 748de282c..000000000
--- a/roles/subscription-manager/README.md
+++ /dev/null
@@ -1,156 +0,0 @@
-# Red Hat Subscription Manager Ansible Role
-
-## Parameters
-
-This role depends on user specified variables. These can be set in the inventory file, group_vars or passed to the playbook from the CLI. No values are set by default which disables this role. The variables are:
-
-### rhsm_satellite
-
-Subscription Manager server hostname. If using a Satellite server set the FQDN here. If using RHSM Hosted this value must be left blank, none or false.
-
-Default: none
-
-### rhsm_username
-
-Subscription Manager username. Required for RHSM Hosted. Can be optionally used for Satellite, but it may be better to use **rhsm_activationkey** for this.
-
-Default: none
-
-### rhsm_password
-
-Subscription Manager password. Required for RHSM Hosted. Can be optionally used for Satellite, but it may be better to use **rhsm_activationkey** for this.
-
-NOTE: If this variable is specified on the command-line or set in a variable file it may leave your password exposed. For this reason you may perfer to use an Activation Key if using Satellite. For RHSM Hosted, your password must be specified. There are two ways to provide the password to the Ansible playbook without exposing it to prying eyes.
-
-1. The first method is to use a **vars_prompt** to collect the password up front one time for the playbook. Ansible will not display the password if the prompt is configured as **private** and the task will not display the password on the CLI. This is the a good method as it supports automating the task to every host with only one password entry. To enable **vars_prompt** add the following to the very top of your playbook after the **hosts** declaration and before any **pre_tasks** section:
-
- ```
- - hosts: localhost
- # Add the following lines after a -hosts: declaration and before pre_tasks:
- # Start of vars_prompt code block
- vars_prompt:
- - name: "rhsm_password"
- prompt: "Subscription Manager password"
- confirm: yes
- private: yes
- # End of vars_prompt code block
- pre_tasks:
- ```
-
-2. A second method is to use an encrypted file via **ansible-vault**. This does does not require modifying any code as the previous method, but does require more work to create and encrypt the file. To accomplish this, first create a file containing at least the **rhsm_password** variable (it is also possible to specify additional variables to encrypt them all as well):
- 1. Create a file to contain the variable such as **secrets.yml**:
-
- ```
- ---
- rhsm_password: "my_secret_password"
- # other variables can optionally be placed here as well
- ```
-
- 2. Encrypt the file with **ansible-vault**:
-
- ```
- $ ansible-vault encrypt secrets.yml
- Vault password:
- Confirm Vault password:
- Encryption successful
- ```
-
- 3. When executing **ansible-playbook** specify **--ask-vault-pass** to be prompted for the decryption password, and also specify the location of the **secrets.yml** as such:
-
- ```
- $ ansible-playbook --ask-vault-pass --extra-vars=@secrets.yml --extra-vars="rhsm_username=myusername" <other playbook options>
- ```
-
- NOTE: Optionally the file containing the encrypted variables can be decrypted with **ansible-vault** and the **--ask-vault-pass** option omitted to prevent any password prompting (for automated runs) and the file can be encrypted after the run. This can be used if an external system such as Jenkins would handle the decryption/encryption outside of Ansible.
-
-Default: none
-
-### rhsm_org
-
-Optional Subscription Manager Satellite Organization. Required for Satellite, ignored if using RHSM Hosted.
-
-Default: none
-
-### rhsm_activationkey
-
-Optional Subscription Manager Satellite Activation Key, use this instead of **rhsm_username** and **rhsm_password** if using Satellite to provide repositories and authentication in a key instead.
-
-Default: none
-
-### rhsm_pool
-
-Optional Subscription Manager pool, determine this by running **subscription-manager list --available** on a registered system. Valid for RHSM Hosted or Satellite. Specifying **rhsm_activationkey** will ignore this option.
-
-Default: none
-
-### rhsm_repos
-
-Optional list of repositories to enable. If left blank it is expected that the **rhsm_activationkey** will specify repos instead. If populated, a **subscription-manager repos --disable=\*** will be run and each of the specified repos explicitly enabled. Valid for RHSM Hosted or Satellite
-
-NOTE: If specifying this value in an inventory file as opposed to group_vars, be sure to define it as a proper list as such:
-
-rhsm_repos='["rhel-7-server-rpms", "rhel-7-server-ose-3.1-rpms", "rhel-7-server-extras-rpms"]'
-
-Default: none
-
-## Calling This Role
-Calling this role is done at both **pre_tasks** and **roles** sections of a playbook and optionally a **vars_prompt**.
-
-### vars_prompt
-Unfortunately **vars_prompt** can only be used at the play level before role tasks are executed, so this is the only place it can go. It also cannot be shown conditionally. For this reason it is not included in this role by default. A better method may be using a file containing the password variable encrypted with **ansible-vault**. See the **rhsm_password** section for more details.
-
-To Add a prompt to capture **rhsm_password**:
-
-```
-- hosts: localhost
- # Add the following lines after a -hosts: declaration and before pre_tasks:
- # Start of vars_prompt code block
- vars_prompt:
- - name: "rhsm_password"
- prompt: "Subscription Manager password"
- confirm: yes
- private: yes
- # End of vars_prompt code block
- pre_tasks:
-```
-
-### pre-tasks
-
-A number of variable checks are performed before any tasks to ensure the proper parameters are set. To include these checks call the pre_task yaml before any roles:
-
-```
-pre_tasks:
-- include: roles/subscription-manager/pre_tasks/pre_tasks.yml
-```
-
-### roles
-
-The bulk of the work is performed in the main.yml for this role. The pre-task play will set a variable which can be checked to contitionally include this role as such:
-
-```
-roles:
- - { role: subscription-manager, when: hostvars.localhost.rhsm_register, tags: 'subscription-manager' }
-```
-
-## Running Playbooks with this Role
-
-- To register to RHSM Hosted or Satellite with a username and plain text password (NOTE: This may retain your password in your CLI history):
-
- ```
- $ ansible-playbook --extra-vars="rhsm_username=vvaldez rhsm_password=my_secret_password <other playbook otions>"
- ```
-
-- To register to RHSM Hosted or Satellite with username and an encrypted file containing the password:
-
- ```
- $ ansible-playbook --ask-vault-pass --extra-vars=@secrets.yml --extra-vars="rhsm_username=myusername" <other playbook options>
-
- ```
-
-- To register to a Satellite server with an activation key:
-
- ```
- $ ansible-playbook --extra-vars="rhsm_satellite=satellite.example.com rhsm_org=example_org rhsm_activationkey=rhel-7-ose-3-1 <other playbook options>"
-
- ```
-- To ignore any Subscription Manager activities, simply do not set any parameters.
diff --git a/roles/subscription-manager/pre_tasks/pre_tasks.yml b/roles/subscription-manager/pre_tasks/pre_tasks.yml
deleted file mode 100644
index 464670fc0..000000000
--- a/roles/subscription-manager/pre_tasks/pre_tasks.yml
+++ /dev/null
@@ -1,45 +0,0 @@
----
-- name: "Set password fact"
- set_fact:
- rhsm_password: "{{ rhsm_password | default(None) }}"
- no_log: true
-
-- name: "Initialize Subscription Manager fact"
- set_fact:
- rhsm_register: true
-
-- name: "Determine if Subscription Manager should be used"
- set_fact:
- rhsm_register: false
- when:
- - rhsm_satellite is undefined or rhsm_satellite is none or rhsm_satellite|trim == ''
- - rhsm_username is undefined or rhsm_username is none or rhsm_username|trim == ''
- - rhsm_password is undefined or rhsm_password is none or rhsm_password|trim == ''
- - rhsm_org is undefined or rhsm_org is none or rhsm_org|trim == ''
- - rhsm_activationkey is undefined or rhsm_activationkey is none or rhsm_activationkey|trim == ''
- - rhsm_pool is undefined or rhsm_pool is none or rhsm_pool|trim == ''
-
-- name: "Validate Subscription Manager organization is set"
- fail: msg="Cannot register to a Satellite server without a value for the Organization via 'rhsm_org'"
- when:
- - rhsm_org is undefined or rhsm_org is none or rhsm_org|trim == ''
- - rhsm_satellite is defined
- - rhsm_satellite is not none
- - rhsm_satellite|trim != ''
- - rhsm_register
-
-- name: "Validate Subscription Manager authentication is defined"
- fail: msg="Cannot register without ('rhsm_username' and 'rhsm_password') or 'rhsm_activationkey' variables set. See the README.md for details on securely prompting for a password"
- when:
- - (rhsm_username is undefined or rhsm_username is none or rhsm_username|trim == '') or (rhsm_password is undefined or rhsm_password is none or rhsm_password|trim == '')
- - rhsm_activationkey is undefined or rhsm_activationkey is none or rhsm_activationkey|trim == ''
- - rhsm_register
-
-- name: "Validate activation key and Hosted are not requested together"
- fail: msg="Cannot register to RHSM Hosted with 'rhsm_activationkey'"
- when:
- - rhsm_satellite is undefined or rhsm_satellite is none or rhsm_satellite|trim == ''
- - rhsm_activationkey is defined
- - rhsm_activationkey is not none
- - rhsm_activationkey|trim != ''
- - rhsm_register
diff --git a/roles/subscription-manager/tasks/main.yml b/roles/subscription-manager/tasks/main.yml
deleted file mode 100644
index e4c9fdffb..000000000
--- a/roles/subscription-manager/tasks/main.yml
+++ /dev/null
@@ -1,150 +0,0 @@
----
-- name: "Initialize rhsm_password variable if vars_prompt was used"
- set_fact:
- rhsm_password: "{{ hostvars.localhost.rhsm_password }}"
- when:
- - rhsm_password is not defined or rhsm_password is none or rhsm_password|trim == ''
-
-- name: "Initializing Subscription Manager authentication method"
- set_fact:
- rhsm_authentication: false
-
-# 'rhsm_activationkey' will take precedence even if 'rhsm_username' and 'rhsm_password' are also set
-- name: "Setting Subscription Manager Activation Key Fact"
- set_fact:
- rhsm_authentication: "key"
- when:
- - rhsm_activationkey is defined
- - rhsm_activationkey is not none
- - rhsm_activationkey|trim != ''
- - not rhsm_authentication
-
-# If 'rhsm_username' and 'rhsm_password' are set but not 'rhsm_activationkey', set 'rhsm_authentication' to password
-- name: "Setting Subscription Manager Username and Password Fact"
- set_fact:
- rhsm_authentication: "password"
- when:
- - rhsm_username is defined
- - rhsm_username is not none
- - rhsm_username|trim != ''
- - rhsm_password is defined
- - rhsm_password is not none
- - rhsm_password|trim != ''
- - not rhsm_authentication
-
-- name: "Initializing registration status"
- set_fact:
- registered: false
-
-- name: "Checking subscription status (a failure means it is not registered and will be)"
- command: "/usr/bin/subscription-manager status"
- ignore_errors: yes
- changed_when: no
- register: check_if_registered
-
-- name: "Set registration fact if system is already registered"
- set_fact:
- registered: true
- when: check_if_registered.rc == 0
-
-- name: "Cleaning any old subscriptions"
- command: "/usr/bin/subscription-manager clean"
- when:
- - not registered
- - rhsm_authentication is defined
- register: cleaningsubs_result
- until: cleaningsubs_result.rc == 0
- retries: 10
- delay: 1
-
-- name: "Install Satellite certificate"
- command: "rpm -Uvh --force http://{{ rhsm_satellite }}/pub/katello-ca-consumer-latest.noarch.rpm"
- when:
- - not registered
- - rhsm_satellite is defined
- - rhsm_satellite is not none
- - rhsm_satellite|trim != ''
-
-- name: "Register to Satellite using activation key"
- command: "/usr/bin/subscription-manager register --activationkey={{ rhsm_activationkey }} --org='{{ rhsm_org }}'"
- when:
- - not registered
- - rhsm_authentication == 'key'
- - rhsm_satellite is defined
- - rhsm_satellite is not none
- - rhsm_satellite|trim != ''
- register: register_key_result
- until: register_key_result.rc == 0
- retries: 10
- delay: 1
-
-# This can apply to either Hosted or Satellite
-- name: "Register using username and password"
- command: "/usr/bin/subscription-manager register --username={{ rhsm_username }} --password={{ rhsm_password }}"
- no_log: true
- when:
- - not registered
- - rhsm_authentication == "password"
- - rhsm_org is not defined or rhsm_org is none or rhsm_org|trim == ''
- register: register_userpw_result
- until: register_userpw_result.rc == 0
- retries: 10
- delay: 1
-
-# This can apply to either Hosted or Satellite
-- name: "Register using username, password and organization"
- command: "/usr/bin/subscription-manager register --username={{ rhsm_username }} --password={{ rhsm_password }} --org={{ rhsm_org }}"
- no_log: true
- when:
- - not registered
- - rhsm_authentication == "password"
- - rhsm_org is defined
- - rhsm_org is not none
- - rhsm_org|trim != ''
- register: register_userpworg_result
- until: register_userpworg_result.rc == 0
- retries: 10
- delay: 1
-
-- name: "Auto-attach to Subscription Manager Pool"
- command: "/usr/bin/subscription-manager attach --auto"
- when:
- - not registered
- - rhsm_pool is undefined or rhsm_pool is none or rhsm_pool|trim == ''
- register: autoattach_result
- until: autoattach_result.rc == 0
- retries: 10
- delay: 1
-
-- name: "Attach to a specific pool"
- command: "/usr/bin/subscription-manager attach --pool={{ rhsm_pool }}"
- when:
- - rhsm_pool is defined
- - rhsm_pool is not none
- - rhsm_pool|trim != ''
- - not registered
- register: attachpool_result
- until: attachpool_result.rc == 0
- retries: 10
- delay: 1
-
-- name: "Disable all repositories"
- command: "/usr/bin/subscription-manager repos --disable=*"
- when:
- - not registered
- - rhsm_repos is defined
- - rhsm_repos is not none
- - rhsm_repos|trim != ''
-
-- name: "Enable specified repositories"
- command: "/usr/bin/subscription-manager repos --enable={{ item }}"
- with_items: "{{ rhsm_repos }}"
- when:
- - not registered
- - rhsm_repos is defined
- - rhsm_repos is not none
- - rhsm_repos|trim != ''
- register: enablerepos_result
- until: enablerepos_result.rc == 0
- retries: 10
- delay: 1