diskimage-builder/elements/rhel-common
Ryan Brady ac8514c089 Enable RHEL Registration
This patch documents the 00-rhsm script as <= RHEL6 as it doesn't
work with the latest release of Satellite.  The Red Hat Network
(RHN) method of registration is being phased out in favor of Red
Hat Customer Portal and Satellite 6.  The subscription-manager
command line tool is the preferred method of registration.

The registration of RHEL is required to enable repositories for
software installation during image creation time.

This element provides functionality for registering RHEL images
during the image build process with diskimage-builder's
disk-image-create script.  The RHEL image will register itself
with either the hosted Red Hat Customer Portal or Satellite to
enable software installation from official repositories. After
the end of the image creation process, the image will unregister
itself so an entitlement will not be decremented from the account.

Boot-time registration is supported through metadata.  Please see
the configuration in the README for more information.

Change-Id: Ia9ef377cc4ed9595633888bfb248a1224e04b542
2014-10-31 12:36:43 -04:00
..
finalise.d Enable RHEL Registration 2014-10-31 12:36:43 -04:00
install.d Install openstack-selinux on RHEL 2014-09-29 21:53:22 -07:00
os-refresh-config/pre-configure.d Enable RHEL Registration 2014-10-31 12:36:43 -04:00
pre-install.d Enable RHEL Registration 2014-10-31 12:36:43 -04:00
README.md Enable RHEL Registration 2014-10-31 12:36:43 -04:00

This element contains the common installation steps between RHEL os releases.

RHEL Registration

This element provides functionality for registering RHEL images during the image build process with the disk-image-create script from diskimage-builder. The RHEL image will register itself with either the hosted Red Hat Customer Portal or Satellite to enable software installation from official repositories. After the end of the image creation process, the image will unregister itself so an entitlement will not be decremented from the account.

IMPORTANT NOTE:

The 00-rhsm script is specific to RHEL6. If you use the REG_ variables to use with RHEL7, you do not need to set any DIB_RHSM variables. The scripts named with "rhel-registration" have not been developed or tested for RHEL6.

Environment Variables For Image Creation

The following environment variables are used for registering a RHEL instance with either the Red Hat Customer Portal or Satellite 6.

REG_ACTIVATION_KEY

Attaches existing subscriptions as part of the registration process. The subscriptions are pre-assigned by a vendor or by a systems administrator using Subscription Asset Manager.

REG_AUTO_ATTACH

Automatically attaches the best-matched compatible subscription. This is good for automated setup operations, since the system can be configured in a single step.

REG_BASE_URL

Gives the hostname of the content delivery server to use to receive updates. Both Customer Portal Subscription Management and Subscription Asset Manager use Red Hat's hosted content delivery services, with the URL https://cdn.redhat.com. Since Satellite 6 hosts its own content, the URL must be used for systems registered with Satellite 6.

REG_ENVIRONMENT

Registers the system to an environment within an organization.

REG_FORCE

Registers the system even if it is already registered. Normally, any register operations will fail if the machine is already registered.

REG_HALT_UNREGISTER

At the end of the image build process, the element runs a cleanup script that will unregister it from the system it registered with. There are some cases when building an image where you may want to stop this from happening so you can verify the registration or to build a one off-image where the boot-time registration will not be enabled. Set this value to '1' to stop the unregistration process.

REG_MACHINE_NAME

Sets the name of the system to be registered. This defaults to be the same as the hostname.

REG_METHOD

Sets the method of registration. Use "portal" to register a system with the Red Hat Customer Portal. Use "satellite" to register a system with Red Hat Satellite 6.

REG_ORG

Gives the organization to which to join the system.

REG_POOL_ID

The pool ID is listed with the product subscription information, which is available from running the list subcommand of subscription-manager.

REG_PASSWORD

Gives the password for the user account.

REG_RELEASE

Sets the operating system minor release to use for subscriptions for the system. Products and updates are limited to that specific minor release version. This is used only used with the REG_AUTO_ATTACH option. Possible values for this include 5Server, 5.7, 5.8, 5.9, 5.10, 6.1,...6.6, 7.0. It will change over time as new releases come out. There are also variants 6Server, 6Client, 6Workstation, 7Server, etc.

REG_REPOS

A single string representing a list of repository names separated by a space. Each of the repositories in this string are enabled through subscription manager. Once you've attached a subscription, you can find available repositories by running subscription-manager repos --list.

REG_SERVER_URL

Gives the hostname of the subscription service to use. The default is for Customer Portal Subscription Management, subscription.rhn.redhat.com. If this option is not used, the system is registered with Customer Portal Subscription Management.

REG_SERVICE_LEVEL

Sets the service level to use for subscriptions on that machine. This is only used with the REG_AUTO_ATTACH option.

REG_USER

Gives the content server user account name.

REG_TYPE

Sets what type of consumer is being registered. The default is system, which is applicable to both physical systems and virtual guests. Other types include hypervisor for virtual hosts, person, domain, rhui, and candlepin for some subscription management applications.

Image Build Registration Examples

To register with Satellite 6, a common example would be to set the following variables:

REG_SAT_URL='http://my-sat06.server.org' REG_ORG='tripleo' REG_ENV='Library' REG_USER='tripleo' REG_PASSWORD='tripleo' REG_METHOD=satellite

To register with the Red Hat Customer Portal, a common example would be to set the following variables:

REG_REPOS='rhel-7-server-optional-rpms rhel-7-server-extras-rpms' REG_AUTO_ATTACH=true REG_USER='tripleo' REG_PASSWORD='tripleo' REG_METHOD=portal

Configuration

Heat metadata can be used to configure the rhel-common element.

rh_registration:
    activation_key:
        # Attaches existing subscriptions as part of the registration
        # process. The subscriptions are pre-assigned by a vendor or by
        # a systems administrator using Subscription Asset Manager.
    auto_attach: 'true'
        # Automatically attaches the best-matched compatible subscription.
        # This is good for automated setup operations, since the system can
        # be configured in a single step.
    base_url:
        # Gives the hostname of the content delivery server to use to
        # receive updates.  Both Customer Portal Subscription Management
        # and Subscription Asset Manager use Red Hat's hosted content
        # delivery services, with the URL https://cdn.redhat.com. Since
        # Satellite 6 hosts its own content, the URL must be used for
        # systems registered with Satellite 6.
    environment:
        # Registers the system to an environment within an organization.
    force:
        # Registers the system even if it is already registered. Normally,
        # any register operations will fail if the machine is already
        # registered.
    machine_name:
        # Sets the name of the system to be registered. This defaults to be
        # the same as the hostname.
    org:
        # Gives the organization to which to join the system.
    password:
        # Gives the password for the user account.
    release:
        # Sets the operating system minor release to use for subscriptions
        # for the system. Products and updates are limited to that specific
        # minor release version. This is only used with the auto_attach
        # option.
    repos:
        # A single string representing a list of repository names separated
        # by a space.  Each of the repositories in this string are enabled
        # through subscription manager.
    satellite_url:
        # The url of the Satellite instance to register with.  Required for
        # Satellite registration.
    server_url:
        # Gives the hostname of the subscription service to use. The default
        # is for Customer Portal Subscription Management,
        # subscription.rhn.redhat.com. If this option is not used, the system
        # is registered with Customer Portal Subscription Management.
    service_level:
        # Sets the service level to use for subscriptions on that machine.
        # This is only used with the auto_attach option.
    user:
        # Gives the content server user account name.
    type:
        # Sets what type of consumer is being registered. The default is
        # "system", which is applicable to both physical systems and virtual
        # guests. Other types include "hypervisor" for virtual hosts,
        # "person", "domain", "rhui", and "candlepin" for some subscription
        # management applications.
    method:
        # Sets the method of registration.  Use "portal" to register a
        # system with the Red Hat Customer Portal.  Use "satellite" to
        # register a system with Red Hat Satellite 6.

Configuration Registration Examples

To register with Satellite 6, a common example would be to use the following metadata:

{
    "rh_registration":{
        "satellite_url": "http://my-sat06.server.org",
        "org": "tripleo",
        "environment": "Library",
        "user":"tripleo",
        "password":"tripleo",
        "method":"satellite"
        "repos": "rhel-ha-for-rhel-7-server-rpms"
    }
}

To register with the Red Hat Customer Portal, a common example would be to use the following metadata:

{
    "rh_registration":{
        "repos":"rhel-7-server-optional-rpms rhel-7-server-extras-rpms",
        "auto_attach":true,
        "user":"tripleo",
        "password":"tripleo",
        "method":"portal"
    }
}