├── .gitignore ├── ec2 ├── run.sh ├── ansible │ ├── ose3-prep-nodes.yml │ └── rhel-sub.yml └── main.tf ├── openstack ├── run.sh ├── ansible │ ├── rhel-sub.yml │ └── ose3-prep-nodes.yml ├── enterprise-inventory ├── main.tf └── sub.out ├── gce ├── ansible │ ├── ose3-prep-nodes.yml │ └── rhel-sub.yml ├── inventory.sample └── main.tf ├── example-inventory └── Readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.tfstate 2 | *.tfstate.* 3 | terraform.tfvars 4 | inventory 5 | rhel-sub-vars.yml 6 | *.bak 7 | use-* 8 | .idea 9 | *.iml 10 | -------------------------------------------------------------------------------- /ec2/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ./run.sh --private-key=~/.ssh/postakey.pem 3 | terraform apply 4 | 5 | sleep 15 6 | 7 | terraform refresh 8 | 9 | sleep 120 10 | 11 | 12 | ansible-playbook -i ../terraform.py ./ansible/rhel-sub.yml $@ 13 | ansible-playbook -i ../terraform.py ./ansible/ose3-prep-nodes.yml $@ 14 | -------------------------------------------------------------------------------- /openstack/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ./run.sh --private-key=~/.ssh/redhat_rsa 3 | terraform apply 4 | 5 | sleep 15 6 | 7 | terraform refresh 8 | 9 | sleep 120 10 | 11 | 12 | ansible-playbook -i ../terraform.py ./ansible/rhel-sub.yml $@ 13 | ansible-playbook -i ../terraform.py ./ansible/ose3-prep-nodes.yml $@ 14 | -------------------------------------------------------------------------------- /gce/ansible/ose3-prep-nodes.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | sudo: yes 4 | tasks: 5 | - name: Remove Network Manager 6 | yum: name=NetworkManager state=absent 7 | - name: Install pre requisites 8 | yum: name={{ item }} state=present 9 | with_items: 10 | - wget 11 | - git 12 | - unzip 13 | - net-tools 14 | - bind-utils 15 | - iptables-services 16 | - bridge-utils 17 | - tmux 18 | - name: Update all yum packages 19 | yum: name=* state=latest 20 | - name: Install Docker 21 | yum: name=docker state=present 22 | - name: Enable insecure registry... since we like insecure things 23 | lineinfile: dest=/etc/sysconfig/docker state=present line='OPTIONS=--insecure-registry 172.30.0.0/16' regexp="^#?OPTIONS" 24 | - name: Start docker 25 | service: name=docker state=started enabled=yes 26 | 27 | -------------------------------------------------------------------------------- /openstack/ansible/rhel-sub.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | sudo: yes 4 | vars_files: 5 | - rhel-sub-vars.yml 6 | tasks: 7 | - name: disable all amz rhel repos 8 | command: /usr/bin/yum-config-manager --disable * 9 | - name: add subscription DNS to etc hosts (1) 10 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.183.44 xmlrpc.rhn.redhat.com' 11 | - name: add subscription DNS to etc hosts (2) 12 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='23.204.148.218 content-xmlrpc.rhn.redhat.com' 13 | - name: add subscription DNS to etc hosts (3) 14 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.183.49 subscription.rhn.redhat.com' 15 | - name: add RH docker registry to etc hosts (4) 16 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.182.63 registry.access.redhat.com' 17 | - name: add jboss.org mvn repository to etc hosts (5) 18 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.182.33 repository.jboss.org' 19 | - name: subscribe RHN 20 | redhat_subscription: state=present username='{{ username }}' password='{{ password }}' autosubscribe=true pool='{{ pool_id }}' 21 | - name: disable all repos by default 22 | shell: subscription-manager repos --disable="*" 23 | -------------------------------------------------------------------------------- /ec2/ansible/ose3-prep-nodes.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | sudo: yes 4 | tasks: 5 | - name: disable all repos by default 6 | shell: subscription-manager repos --disable="*" 7 | - name: Enable the requisite rhel7 repos 8 | shell: subscription-manager repos --enable="rhel-7-server-rpms" --enable="rhel-7-server-extras-rpms" --enable="rhel-7-server-optional-rpms" --enable="rhel-7-server-ose-3.0-rpms" 9 | - name: Import keys 10 | rpm_key: state=present key=/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta 11 | - name: Remove Network Manager 12 | yum: name=NetworkManager state=absent 13 | - name: Install pre requisites 14 | yum: name={{ item }} state=present 15 | with_items: 16 | - wget 17 | - git 18 | - unzip 19 | - net-tools 20 | - bind-utils 21 | - iptables-services 22 | - bridge-utils 23 | - tmux 24 | - name: Update all yum packages 25 | yum: name=* state=latest 26 | - name: Install Docker 27 | yum: name=docker state=present 28 | - name: Enable insecure registry... since we like insecure things 29 | lineinfile: dest=/etc/sysconfig/docker state=present line='OPTIONS=--insecure-registry 172.30.0.0/16' regexp="^#?OPTIONS" 30 | - name: Start docker 31 | service: name=docker state=started enabled=yes 32 | 33 | -------------------------------------------------------------------------------- /openstack/enterprise-inventory: -------------------------------------------------------------------------------- 1 | # Create an OSEv3 group that contains the masters and nodes groups 2 | [OSEv3:children] 3 | masters 4 | nodes 5 | 6 | # Set variables common for all OSEv3 hosts 7 | [OSEv3:vars] 8 | # SSH user, this user should allow ssh based auth without requiring a password 9 | ansible_ssh_user=cloud-user 10 | 11 | # If ansible_ssh_user is not root, ansible_sudo must be set to true 12 | ansible_sudo=true 13 | 14 | product_type=openshift 15 | deployment_type=enterprise 16 | #openshift_pkg_version=-1.0.5 17 | #openshift_pkg_version=-3.0.1.0 18 | openshift_master_cluster_public_hostname=master.fuse.osecloud.com 19 | 20 | 21 | # uncomment the following to enable htpasswd authentication; defaults to DenyAllPasswordIdentityProvider 22 | openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider', 'filename': '/etc/openshift/openshift-passwd'}] 23 | osm_default_subdomain=apps.fuse.osecloud.com 24 | #osm_default_subdomain=apps.fabric8.osecloud.com 25 | 26 | # host group for masters 27 | [masters] 28 | master.rhcloud.com openshift_public_hostname=master.fuse.osecloud.com 29 | 30 | # host group for nodes, includes region info 31 | [nodes] 32 | master.rhcloud.com openshift_node_labels="{'region': 'infra', 'zone': 'default'}" 33 | node0.rhcloud.com openshift_node_labels="{'region': 'primary', 'zone': 'east'}" 34 | 35 | 36 | -------------------------------------------------------------------------------- /gce/inventory.sample: -------------------------------------------------------------------------------- 1 | # Create an OSEv3 group that contains the masters and nodes groups 2 | [OSEv3:children] 3 | masters 4 | nodes 5 | 6 | # Set variables common for all OSEv3 hosts 7 | [OSEv3:vars] 8 | # SSH user, this user should allow ssh based auth without requiring a password 9 | ansible_ssh_user=myuser 10 | 11 | # If ansible_ssh_user is not root, ansible_sudo must be set to true 12 | ansible_sudo=true 13 | 14 | product_type=openshift 15 | deployment_type=origin 16 | #openshift_pkg_version=-1.0.4 17 | #openshift_pkg_version=-3.0.1.0 18 | openshift_master_cluster_public_hostname= 19 | 20 | 21 | # uncomment the following to enable htpasswd authentication; defaults to DenyAllPasswordIdentityProvider 22 | openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider', 'filename': '/etc/origin/openshift-passwd'}] 23 | osm_default_subdomain=aps.c..internal 24 | 25 | # host group for masters 26 | [masters] 27 | master.c..internal openshift_public_hostname=master.c..internal 28 | 29 | # host group for nodes, includes region info 30 | [nodes] 31 | node0.c..internal openshift_node_labels="{'region': 'infra', 'zone': 'default'}" 32 | node1.c..internal openshift_node_labels="{'region': 'primary', 'zone': 'east'}" 33 | 34 | -------------------------------------------------------------------------------- /openstack/ansible/ose3-prep-nodes.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | sudo: yes 4 | tasks: 5 | - name: disable all repos by default 6 | shell: subscription-manager repos --disable="*" 7 | - name: Enable the requisite rhel7 repos 8 | shell: subscription-manager repos --enable="rhel-7-server-rpms" --enable="rhel-7-server-extras-rpms" --enable="rhel-7-server-optional-rpms" --enable="rhel-7-server-ose-3.2-rpms" 9 | - name: Import keys 10 | rpm_key: state=present key=/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta 11 | - name: Remove Network Manager 12 | yum: name=NetworkManager state=absent 13 | - name: Install pre requisites 14 | yum: name={{ item }} state=present 15 | with_items: 16 | - wget 17 | - git 18 | - unzip 19 | - net-tools 20 | - bind-utils 21 | - iptables-services 22 | - bridge-utils 23 | - tmux 24 | - name: Update all yum packages 25 | yum: name=* state=latest 26 | - name: Make filesystem from block device 27 | filesystem: fstype=ext3 dev=/dev/vdb 28 | - name: Make /var/lib/docker 29 | file: path=/var/lib/docker state=directory mode=0755 30 | - name: mount block device to /var/lib/docker 31 | mount: name=/var/lib/docker src=/dev/vdb state=mounted fstype=ext3 32 | - name: Install Docker 33 | yum: name=docker state=present 34 | - name: Enable insecure registry... since we like insecure things 35 | lineinfile: dest=/etc/sysconfig/docker state=present line='OPTIONS=--insecure-registry 172.30.0.0/16' regexp="^#?OPTIONS" 36 | - name: Start docker 37 | service: name=docker state=started enabled=yes 38 | -------------------------------------------------------------------------------- /ec2/main.tf: -------------------------------------------------------------------------------- 1 | variable "aws_access_key" {} 2 | variable "aws_secret_key" {} 3 | variable "security_group" {default = "ose-demo"} 4 | variable "keypair" {default = "osekeypair"} 5 | variable "master_instance_type" {default = "c3.large"} 6 | variable "node_instance_type" {default = "c3.large"} 7 | variable "aws_availability_zone" {default = "us-east-1"} 8 | variable "aws_region" {default = "us-east-1"} 9 | variable "ebs_root_block_size" {default = "50"} 10 | variable "aws_ami" {default = "ami-12663b7a"} 11 | variable "num_nodes" { default = "2" } 12 | 13 | provider "aws" { 14 | access_key = "${var.aws_access_key}" 15 | secret_key = "${var.aws_secret_key}" 16 | region = "${var.aws_region}" 17 | } 18 | 19 | resource "aws_instance" "ose-master" { 20 | ami = "${var.aws_ami}" 21 | instance_type = "${var.master_instance_type}" 22 | security_groups = [ "default", "${var.security_group}" ] 23 | availability_zone = "${var.aws_availability_zone}" 24 | key_name = "${var.keypair}" 25 | tags { 26 | Name = "master" 27 | sshUser = "ec2-user" 28 | role = "masters" 29 | } 30 | root_block_device = { 31 | volume_type = "gp2" 32 | volume_size = "${var.ebs_root_block_size}" 33 | } 34 | } 35 | 36 | resource "aws_instance" "ose-node" { 37 | count = "${var.num_nodes}" 38 | ami = "${var.aws_ami}" 39 | instance_type = "${var.node_instance_type}" 40 | security_groups = [ "default", "${var.security_group}" ] 41 | availability_zone = "${var.aws_availability_zone}" 42 | key_name = "${var.keypair}" 43 | tags { 44 | Name = "node${count.index}" 45 | sshUser = "ec2-user" 46 | role = "nodes" 47 | } 48 | root_block_device = { 49 | volume_type = "gp2" 50 | volume_size = "${var.ebs_root_block_size}" 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /gce/main.tf: -------------------------------------------------------------------------------- 1 | variable "gce_access_key" {} 2 | variable "gce_project" {} 3 | variable "master_instance_type" {default = "n1-standard-2"} 4 | variable "node_instance_type" {default = "n1-standard-2"} 5 | variable "gce_availability_zone" {default = "us-east1-b"} 6 | variable "gce_region" {default = "us-east1"} 7 | variable "gce_ami" {default = "centos-7-v20160301"} 8 | variable "num_nodes" { default = "2" } 9 | 10 | provider "google" { 11 | credentials = "${file("account.json")}" 12 | region = "${var.gce_region}" 13 | project = "${var.gce_project}" 14 | } 15 | 16 | resource "google_compute_instance" "ose-master" { 17 | name = "master" 18 | machine_type = "${var.master_instance_type}" 19 | zone = "${var.gce_availability_zone}" 20 | disk { 21 | image = "${var.gce_ami}" 22 | } 23 | // Local SSD disk 24 | disk { 25 | type = "local-ssd" 26 | scratch = true 27 | } 28 | 29 | metadata { 30 | sshKeys = "${var.gce_access_key}" 31 | } 32 | 33 | network_interface { 34 | network = "default" 35 | access_config { 36 | // Ephemeral IP 37 | } 38 | } 39 | } 40 | 41 | resource "google_compute_instance" "ose-node" { 42 | count = "${var.num_nodes}" 43 | name = "${concat("node", count.index)}" 44 | machine_type = "${var.node_instance_type}" 45 | zone = "${var.gce_availability_zone}" 46 | disk { 47 | image = "${var.gce_ami}" 48 | } 49 | // Local SSD disk 50 | disk { 51 | type = "local-ssd" 52 | scratch = true 53 | } 54 | 55 | metadata { 56 | sshKeys = "${var.gce_access_key}" 57 | } 58 | 59 | network_interface { 60 | network = "default" 61 | access_config { 62 | // Ephemeral IP 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /example-inventory: -------------------------------------------------------------------------------- 1 | # Create an OSEv3 group that contains the masters and nodes groups 2 | [OSEv3:children] 3 | masters 4 | nodes 5 | 6 | # Set variables common for all OSEv3 hosts 7 | [OSEv3:vars] 8 | # SSH user, this user should allow ssh based auth without requiring a password 9 | ansible_ssh_user=ec2-user 10 | 11 | # If ansible_ssh_user is not root, ansible_sudo must be set to true 12 | ansible_sudo=true 13 | 14 | product_type=openshift 15 | deployment_type=origin 16 | #openshift_pkg_version=-1.0.4 17 | #openshift_pkg_version=-3.0.1.0 18 | openshift_master_cluster_public_hostname=master.fuse.osecloud.com 19 | 20 | 21 | # uncomment the following to enable htpasswd authentication; defaults to DenyAllPasswordIdentityProvider 22 | openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider', 'filename': '/etc/origin/openshift-passwd'}] 23 | osm_default_subdomain=apps.fuse.osecloud.com 24 | 25 | # host group for masters 26 | [masters] 27 | ec2-54-226-239-139.compute-1.amazonaws.com openshift_public_hostname=master.fuse.osecloud.com 28 | 29 | # host group for nodes, includes region info 30 | [nodes] 31 | ec2-54-226-239-139.compute-1.amazonaws.com openshift_node_labels="{'region': 'infra', 'zone': 'default'}" 32 | ec2-54-234-236-240.compute-1.amazonaws.com openshift_node_labels="{'region': 'primary', 'zone': 'east'}" 33 | ec2-54-159-17-227.compute-1.amazonaws.com openshift_node_labels="{'region': 'primary', 'zone': 'east'}" 34 | ec2-54-221-31-162.compute-1.amazonaws.com openshift_node_labels="{'region': 'primary', 'zone': 'east'}" 35 | ec2-54-242-180-2.compute-1.amazonaws.com openshift_node_labels="{'region': 'primary', 'zone': 'east'}" 36 | ec2-107-20-19-225.compute-1.amazonaws.com openshift_node_labels="{'region': 'primary', 'zone': 'east'}" 37 | 38 | 39 | -------------------------------------------------------------------------------- /ec2/ansible/rhel-sub.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | sudo: yes 4 | vars_files: 5 | - rhel-sub-vars.yml 6 | tasks: 7 | - name: disable all amz rhel repos 8 | command: /usr/bin/yum-config-manager --disable * 9 | - name: disable amz yum plugin 10 | lineinfile: dest=/etc/yum/pluginconf.d/amazon-id.conf regexp='^enabled' line='enabled = 0' state=present 11 | - name: disable rhui-lb yum plugin 12 | lineinfile: dest=/etc/yum/pluginconf.d/rhui-lb.conf regexp='^enabled' line='enabled = 0' state=present 13 | - name: enable product-id yum plugin 14 | lineinfile: dest=/etc/yum/pluginconf.d/product-id.conf regexp='^enabled' line='enabled = 1' state=present 15 | - name: enable sub manager yum plugin 16 | lineinfile: dest=/etc/yum/pluginconf.d/subscription-manager.conf regexp='^enabled' line='enabled = 1' state=present 17 | - name: add subscription DNS to etc hosts (1) 18 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.183.44 xmlrpc.rhn.redhat.com' 19 | - name: add subscription DNS to etc hosts (2) 20 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='23.204.148.218 content-xmlrpc.rhn.redhat.com' 21 | - name: add subscription DNS to etc hosts (3) 22 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.183.49 subscription.rhn.redhat.com' 23 | - name: add RH docker registry to etc hosts (4) 24 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.182.63 registry.access.redhat.com' 25 | - name: add jboss.org mvn repository to etc hosts (5) 26 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.182.33 repository.jboss.org' 27 | - name: subscribe RHN 28 | redhat_subscription: state=present username='{{ username }}' password='{{ password }}' autosubscribe=true pool='{{ pool_id }}' 29 | - name: disable all repos by default 30 | shell: subscription-manager repos --disable="*" 31 | -------------------------------------------------------------------------------- /gce/ansible/rhel-sub.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | sudo: yes 4 | vars_files: 5 | - rhel-sub-vars.yml 6 | tasks: 7 | - name: disable all amz rhel repos 8 | command: /usr/bin/yum-config-manager --disable * 9 | - name: disable amz yum plugin 10 | lineinfile: dest=/etc/yum/pluginconf.d/amazon-id.conf regexp='^enabled' line='enabled = 0' state=present 11 | - name: disable rhui-lb yum plugin 12 | lineinfile: dest=/etc/yum/pluginconf.d/rhui-lb.conf regexp='^enabled' line='enabled = 0' state=present 13 | - name: enable product-id yum plugin 14 | lineinfile: dest=/etc/yum/pluginconf.d/product-id.conf regexp='^enabled' line='enabled = 1' state=present 15 | - name: enable sub manager yum plugin 16 | lineinfile: dest=/etc/yum/pluginconf.d/subscription-manager.conf regexp='^enabled' line='enabled = 1' state=present 17 | - name: add subscription DNS to etc hosts (1) 18 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.183.44 xmlrpc.rhn.redhat.com' 19 | - name: add subscription DNS to etc hosts (2) 20 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='23.204.148.218 content-xmlrpc.rhn.redhat.com' 21 | - name: add subscription DNS to etc hosts (3) 22 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.183.49 subscription.rhn.redhat.com' 23 | - name: add RH docker registry to etc hosts (4) 24 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.182.63 registry.access.redhat.com' 25 | - name: add jboss.org mvn repository to etc hosts (5) 26 | lineinfile: dest=/etc/hosts state=present insertafter=EOF line='209.132.182.33 repository.jboss.org' 27 | - name: subscribe RHN 28 | redhat_subscription: state=present username='{{ username }}' password='{{ password }}' autosubscribe=true pool='{{ pool_id }}' 29 | - name: disable all repos by default 30 | shell: subscription-manager repos --disable="*" 31 | -------------------------------------------------------------------------------- /openstack/main.tf: -------------------------------------------------------------------------------- 1 | variable "openstack_user_name" {} 2 | variable "openstack_tenant_name" {} 3 | variable "openstack_tenant_id" {} 4 | variable "openstack_password" {} 5 | variable "openstack_auth_url" {} 6 | variable "openstack_availability_zone" {} 7 | variable "openstack_region" {} 8 | variable "openstack_keypair" {} 9 | variable "num_nodes" { default = "2"} 10 | variable "master_image_id" {} 11 | variable "master_instance_size" {} 12 | variable "node_image_id" {} 13 | variable "node_instance_size" {} 14 | 15 | 16 | provider "openstack" { 17 | user_name = "${var.openstack_user_name}" 18 | tenant_name = "${var.openstack_tenant_name}" 19 | tenant_id = "${var.openstack_tenant_id}" 20 | password = "${var.openstack_password}" 21 | auth_url = "${var.openstack_auth_url}" 22 | endpoint_type = "public" 23 | } 24 | 25 | resource "openstack_compute_secgroup_v2" "os3-sec-group" { 26 | 27 | name = "os3-sec-group" 28 | description = "Defines well-known ports used for OS3 Master and Node deployments" 29 | rule { 30 | from_port = 22 31 | to_port = 22 32 | ip_protocol = "tcp" 33 | cidr = "0.0.0.0/0" 34 | } 35 | rule { 36 | from_port = 53 37 | to_port = 53 38 | ip_protocol = "tcp" 39 | cidr = "0.0.0.0/0" 40 | } 41 | rule { 42 | from_port = 80 43 | to_port = 80 44 | ip_protocol = "tcp" 45 | cidr = "0.0.0.0/0" 46 | } 47 | rule { 48 | from_port = 443 49 | to_port = 443 50 | ip_protocol = "tcp" 51 | cidr = "0.0.0.0/0" 52 | } 53 | rule { 54 | from_port = 1936 55 | to_port = 1936 56 | ip_protocol = "tcp" 57 | cidr = "0.0.0.0/0" 58 | } 59 | rule { 60 | from_port = 4001 61 | to_port = 4001 62 | ip_protocol = "tcp" 63 | cidr = "0.0.0.0/0" 64 | } 65 | rule { 66 | from_port = 7001 67 | to_port = 7001 68 | ip_protocol = "tcp" 69 | cidr = "0.0.0.0/0" 70 | } 71 | rule { 72 | from_port = 8443 73 | to_port = 8444 74 | ip_protocol = "tcp" 75 | cidr = "0.0.0.0/0" 76 | } 77 | rule { 78 | from_port = 10250 79 | to_port = 10250 80 | ip_protocol = "tcp" 81 | cidr = "0.0.0.0/0" 82 | } 83 | rule { 84 | from_port = 24224 85 | to_port = 24224 86 | ip_protocol = "tcp" 87 | cidr = "0.0.0.0/0" 88 | } 89 | rule { 90 | from_port = 53 91 | to_port = 53 92 | ip_protocol = "udp" 93 | cidr = "0.0.0.0/0" 94 | } 95 | rule { 96 | from_port = 4789 97 | to_port = 4789 98 | ip_protocol = "udp" 99 | cidr = "0.0.0.0/0" 100 | } 101 | rule { 102 | from_port = 24224 103 | to_port = 24224 104 | ip_protocol = "udp" 105 | cidr = "0.0.0.0/0" 106 | } 107 | } 108 | 109 | resource "openstack_compute_floatingip_v2" "os3-master-floatip" { 110 | region = "${var.openstack_region}" 111 | pool = "os1_public" 112 | } 113 | 114 | resource "openstack_compute_floatingip_v2" "os3-node-floatip" { 115 | count = "${var.num_nodes}" 116 | region = "${var.openstack_region}" 117 | pool = "os1_public" 118 | } 119 | 120 | 121 | resource "openstack_blockstorage_volume_v1" "master-docker-vol" { 122 | name = "mastervol" 123 | size = 75 124 | } 125 | 126 | resource "openstack_blockstorage_volume_v1" "node-docker-vol" { 127 | count = "${var.num_nodes}" 128 | name = "${concat("node-docker-vol", count.index)}" 129 | size = 75 130 | } 131 | 132 | resource "openstack_compute_instance_v2" "ose-master" { 133 | name = "os3-master" 134 | region = "${var.openstack_region}" 135 | image_id = "${var.master_image_id}" 136 | flavor_name = "${var.master_instance_size}" 137 | availability_zone = "${var.openstack_availability_zone}" 138 | key_pair = "${var.openstack_keypair}" 139 | security_groups = ["default", "os3-sec-group"] 140 | floating_ip = "${openstack_compute_floatingip_v2.os3-master-floatip.address}" 141 | metadata { 142 | ssh_user = "cloud-user" 143 | } 144 | volume { 145 | volume_id = "${openstack_blockstorage_volume_v1.master-docker-vol.id}" 146 | } 147 | } 148 | 149 | resource "openstack_compute_instance_v2" "ose-node" { 150 | count = "${var.num_nodes}" 151 | name = "${concat("os3-node", count.index)}" 152 | region = "${var.openstack_region}" 153 | image_id = "${var.node_image_id}" 154 | flavor_name = "${var.node_instance_size}" 155 | availability_zone = "${var.openstack_availability_zone}" 156 | key_pair = "${var.openstack_keypair}" 157 | security_groups = ["default", "os3-sec-group"] 158 | floating_ip = "${element(openstack_compute_floatingip_v2.os3-node-floatip.*.address, count.index)}" 159 | metadata { 160 | ssh_user = "cloud-user" 161 | } 162 | volume { 163 | volume_id = "${element(openstack_blockstorage_volume_v1.node-docker-vol.*.id, count.index)}" 164 | 165 | } 166 | } 167 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # Automate installation of OpenShift 2 | This repo contains [Ansible](http://docs.ansible.com) and [terraform](https://www.terraform.io) scripts for installing [openshift](https://enterprise.openshift.com) onto [OpenStack](http://www.redhat.com/en/insights/openstack) or AWS EC2. 3 | 4 | 5 | The repo is organized into the different deployment models. Currently tested with EC2 and OpenStack, but can be extended to Google Compute, Digital Ocean, etc. Happy to take pull requests for additional infrastructure. 6 | 7 | ## Getting started 8 | 9 | There are a few pre-requisites for these scripts: 10 | 11 | * terraform >v0.6.3 12 | * ansible >1.9.2 13 | * git 14 | 15 | 16 | To get started, use git to pull down this repo. You'll also want to clone down the [openshift-ansible installer](https://github.com/openshift/openshift-ansible) as that's used to do the actual deployment of openshift (which is awesome by the way!). This project also used the [terraform.py] (https://github.com/CiscoCloud/terraform.py) to create an Ansible invetory from the Terraform files. 17 | For this getting started section, let's assume the directory structure looks like this: 18 | 19 | ./openshift-terraform-ansible/ 20 | ./openshift-ansible/ 21 | ./terraform.py/ 22 | 23 | You'll need to fill in some credentials for the different environments that you use. There are two files that need to be updated: the terraform credentials and the RHEL subscription credentials (NOTE: you need RHEL to install OpenShift Enterprise. If you're just installing Origin, then you don't need a subscription -- ie, can just use Fedora) 24 | 25 | ### AWS Credentials 26 | To access AWS, terraform needs to know the secret keys and access keys for AWS. 27 | Create a file named `terraform.tfvars` in the `ec2` directory of this repo and assign the keys as such: 28 | 29 | aws_access_key = "FFFFFFFFFFFFFFFFFFFFFFF" 30 | aws_secret_key = "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" 31 | aws_region = "us-east-1" 32 | aws_availability_zone = "us-east-1c" 33 | security_group = "aws-sec-group" 34 | keypair = "yourkey" 35 | master_instance_type = "c3.2xlarge" 36 | node_instance_type = "c3.xlarge" 37 | num_nodes = "5" 38 | 39 | ### Openstack Credentials 40 | To access OpenStack, terraform needs to know the secret keys and access keys for your OpenStack deployment. 41 | Create a file named `terraform.tfvars` in the `openstack` directory of this repo and assign the keys as such: 42 | 43 | openstack_user_name = "username" 44 | openstack_tenant_name = "tenant anme" 45 | openstack_tenant_id = "tentat-id" 46 | openstack_password = "password" 47 | openstack_auth_url = "http://youropenstack.com:5000/v2.0" 48 | openstack_availability_zone = "nova" 49 | openstack_region = "region" 50 | openstack_keypair = "keypair" 51 | num_nodes = "1" 52 | 53 | # update these to the image IDs you want to use in your infra 54 | master_image_id = "6b7a5472-5187-4e38-bce4-9d6d2a11a8e7" 55 | master_instance_size = "m1.large" 56 | 57 | node_image_id = "6b7a5472-5187-4e38-bce4-9d6d2a11a8e7" 58 | node_instance_size = "m1.large" 59 | 60 | ### GCE Credentials 61 | To access GCE, terraform needs to know the secret keys and access keys for your GCE account. 62 | Create a file named `terraform.tfvars` in the `gce` directory of this repo and assign the keys as such: 63 | 64 | gce_access_key = "myuser: ssh-dss AAAszSHlg== myuser@myserver" 65 | gce_region = "us-east1" 66 | gce_project = "" 67 | num_nodes = "2" 68 | 69 | In addition of AWS and OpenStack procedure Google require another extra file which contains the credential information. Terraform use the GCE service account to communicate with GCE and thus you need to have a GCE account file on the `gce` directory (you can simply download it from GCE). You can find more information about this step directly on Teraform documentation here : https://www.terraform.io/docs/providers/google/index.html 70 | 71 | Here is my account file as example: 72 | 73 | [mysuer@myserver gce]$ cat account.json 74 | { 75 | "type": "service_account", 76 | "project_id": "", 77 | "private_key_id": "b......3", 78 | "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADAN......SFG35w=\n-----END PRIVATE KEY-----\n", 79 | "client_email": "49...o@developer.gserviceaccount.com", 80 | "client_id": "49...o.apps.googleusercontent.com", 81 | "auth_uri": "https://accounts.google.com/o/oauth2/auth", 82 | "token_uri": "https://accounts.google.com/o/oauth2/token", 83 | "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", 84 | "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/4...0developer.gserviceaccount.com" 85 | } 86 | 87 | 88 | ### RHN Subscription credentials 89 | These scripts were tested to run on EC2 with a valid RHEL subscription. They most likely run on the AWS RHEL or CentOS7, but not tested yet. 90 | To activate the RHEL subscription, create a file in the `.//ansible` directory named `rhel-sub-vars.yml` and add these values where `provider` is `ec2` or `openstack` 91 | 92 | username: FFFFF 93 | password: FFFFF 94 | pool_id: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 95 | 96 | Once you've set up the credentials files, you'll be ready to set up openshift 97 | 98 | ## Deploy OpenShift 99 | 100 | Deploying involves creating the infrastructure (networks, compute instances, IPs, security groups, etc), prepping the install as [advised by the openshift documentation](https://docs.openshift.org/latest/install_config/install/prerequisites.html), and then installing openshift itself. 101 | 102 | ### Deploy the infrastructure 103 | To deploy the infrastructure, navigate to the `ec2` or `openstack` folder that you wish to use and check the status of the infrastructure (ie, kinda like a test run, and see the components that will be created): 104 | 105 | terraform plan 106 | 107 | If everything looks good, then you can go ahead and create the infrastructure: 108 | 109 | terraform apply 110 | 111 | If this completes successfully, then yay! You should go to the next step to prep the infrastructure 112 | 113 | ### Connect up your RHEL subscription (optional) 114 | This is an optional step but recommended if you're using RHEL. Run the following ansible script to attach your RHEL subscription to all of the nodes/compute instances created above: 115 | 116 | ansible-playbook -i ../../terraform.py/terraform.py ./ansible/rhel-sub.yml --private-key=/location/to/private/keys 117 | 118 | ### Prep your environment 119 | To prep the environment (downnload docker, set up repos, etc) run the following playbook: 120 | 121 | ansible-playbook -i ../../terraform.py/terraform.py ./ansible/ose3-prep-nodes.yml --private-key=/location/to/private/keys 122 | 123 | ### Run the OpenShift installer 124 | To run the openshift installer, you'll first need to create the inventory file. Unfortunately this step is a bit manual until I hack the terraform.py scripts to generate this on the fly based on metadata/tags. 125 | 126 | Create the inventory file; you can [use this example to get an idea of what to configure](./example-inventory). You can tweak the settings, and you MUST add the DNS/IP addresses of your servers. This is the part that's not automated yet :) 127 | 128 | Once you've got your inventory scripts, you can run this ansible playbook: 129 | 130 | ansible-playbook -i ./inventory --private-key=/location/to/private/keys ../../openshift-ansible/playbooks/byo/config.yml 131 | 132 | 133 | Congrats! You've got an openshift cluster! 134 | 135 | Now run this script to set up the registry/router/etc: 136 | 137 | sudo su - 138 | export INTERNAL_HOSTNAME=$(hostname -f) 139 | sh <(curl -s -L https://gist.github.com/christian-posta/dbabd26005989bafab98/raw) $INTERNAL_HOSTNAME -------------------------------------------------------------------------------- /openstack/sub.out: -------------------------------------------------------------------------------- 1 | +-------------------------------------------+ 2 | Available Subscriptions 3 | +-------------------------------------------+ 4 | Subscription Name: Employee SKU 5 | Provides: Oracle Java (for RHEL Server) - AUS 6 | Oracle Java (for RHEL Client) 7 | Red Hat Enterprise Linux 7 High Availability High Touch Beta 8 | Red Hat Enterprise Linux High Availability (for IBM z Systems) 9 | Red Hat Enterprise Linux 6 Server HTB 10 | Red Hat EUCJP Support (for RHEL Server) 11 | Red Hat Enterprise Linux for Power, little endian 12 | Red Hat Enterprise Linux EUS Compute Node 13 | Red Hat Enterprise Linux for Power, big endian - Extended Update Support 14 | Red Hat OpenShift Enterprise JBoss EAP add-on 15 | Oracle Java (for RHEL Server) - Extended Update Support 16 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - AUS 17 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 18 | JBoss Enterprise Web Server 19 | Red Hat Ceph Storage MON 20 | JBoss Enterprise Web Platform 21 | Red Hat Enterprise Linux 7 Load Balancer High Touch Beta 22 | Red Hat OpenShift Enterprise Infrastructure Beta 23 | Kernel Derivative Works for Bluegene/Q 24 | Oracle Java (for RHEL Compute Node) - Extended Update Support 25 | Red Hat Enterprise Linux 7 for HPC Compute Node High Touch Beta 26 | Red Hat Enterprise Linux Scalable File System (for RHEL Workstation) 27 | Red Hat Enterprise Linux Desktop 28 | OLD Red Hat Enterprise Linux Server for ARM Development Preview 29 | Red Hat Enterprise Linux for IBM z Systems - Extended Update Support 30 | JBoss Enterprise Application Platform - ELS 31 | Red Hat OpenShift Enterprise Client Tools Beta 32 | Atomic Enterprise Platform Beta 33 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 34 | Red Hat OpenShift Enterprise JBoss FUSE add-on 35 | Red Hat Ceph Storage 36 | Red Hat Cloud Infrastructure 37 | Red Hat Certificate System with Advanced Access 38 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 39 | Red Hat OpenShift Enterprise Infrastructure 40 | Red Hat Enterprise Linux 7 Desktop High Touch Beta 41 | Red Hat Software Collections (for RHEL Server) 42 | Red Hat Enterprise Linux 7 for IBM z Systems High Touch Beta 43 | Red Hat Enterprise Linux High Performance Networking (for RHEL for IBM POWER) 44 | Red Hat Gluster Storage Nagios Server 45 | Red Hat Enterprise Linux Server for ARM Beta 46 | Red Hat Gluster Storage Server for On-premise 47 | Red Hat Beta 48 | Red Hat Enterprise Linux Server - Extended Update Support 49 | Red Hat OpenShift Enterprise 50 | Red Hat OpenShift Enterprise Application Node Beta 51 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 52 | Oracle Java (for RHEL Server) 53 | Red Hat Enterprise Linux for Real Time 54 | Red Hat Enterprise Linux Atomic Host 55 | Red Hat Developer Toolset (for RHEL Workstation) 56 | Red Hat OpenShift Enterprise JBoss EAP add-on Beta 57 | Red Hat OpenShift Enterprise Application Node 58 | Kernel Derivative Works for HPC for Power Systems 59 | Red Hat Enterprise Linux for Scientific Computing 60 | Red Hat Enterprise Linux 7 Resilient Storage High Touch Beta 61 | Red Hat Enterprise Linux High Availability (for RHEL Server) - AUS 62 | Red Hat Container Images HTB 63 | Red Hat Container Images Beta 64 | Red Hat Enterprise Virtualization for IBM Power 65 | Red Hat Developer Toolset (for RHEL Server EUS) 66 | Red Hat OpenStack 67 | Red Hat OpenShift Enterprise Client Tools 68 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 69 | Red Hat CloudForms Beta 70 | Red Hat Enterprise Linux High Availability (for RHEL Server) 71 | Red Hat Certification (for RHEL Server) 72 | Red Hat Gluster Storage Management Console (for RHEL Server) 73 | Red Hat OpenStack Beta 74 | Red Hat Ceph Storage OSD 75 | Red Hat Enterprise Virtualization 76 | MRG Grid Execute 77 | Red Hat Container Development Kit 78 | Red Hat Enterprise Linux Workstation 79 | Red Hat Enterprise Linux for SAP 80 | MRG Realtime 81 | Red Hat Enterprise Linux Server - AUS 82 | JBoss Enterprise Application Platform 83 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 84 | Red Hat Container Images 85 | Red Hat Enterprise MRG Messaging 3 for RHEL 7 86 | Red Hat Enterprise Linux Resilient Storage (for IBM z Systems) 87 | Red Hat Certificate System 88 | Red Hat CloudForms 89 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - AUS 90 | Red Hat S-JIS Support (for RHEL Server) 91 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 92 | Red Hat OpenStack Beta Certification Test Suite 93 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 94 | Red Hat Enterprise Linux Atomic Host Beta 95 | Red Hat Enterprise Linux EUS Compute Node High Performance Networking 96 | Red Hat Enterprise Linux 7 Server High Touch Beta 97 | Oracle Java (for Middleware) 98 | MRG Management 99 | Red Hat Enterprise Linux 7 Workstation High Touch Beta 100 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 101 | Red Hat Enterprise Linux 6 Workstation HTB 102 | Red Hat JBoss A-MQ Clients 103 | Red Hat Directory Server 104 | Red Hat Enterprise Linux Server - Extended Life Cycle Support 105 | Red Hat Enterprise Linux for IBM z Systems 106 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 107 | Red Hat Developer Toolset (for RHEL Server) 108 | Red Hat Hardware Certification Test Suite 109 | Red Hat Enterprise Linux Atomic Host HTB 110 | Red Hat Software Collections Beta (for RHEL Workstation) 111 | Red Hat Software Collections (for RHEL Workstation) 112 | Oracle Java (for RHEL Workstation) 113 | Red Hat Ceph Storage Calamari 114 | Red Hat Enterprise MRG Messaging 115 | Red Hat Enterprise Linux for SAP Hana 116 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - AUS 117 | MRG Grid 118 | Oracle Java (for RHEL Compute Node) 119 | Red Hat Enterprise Linux for Power, big endian 120 | Red Hat Enterprise Linux 7 for IBM POWER High Touch Beta 121 | Red Hat Storage 122 | Red Hat Enterprise Linux EUS Compute Node Scalable File System 123 | Red Hat Enterprise Linux Server for ARM Development Preview 124 | Red Hat Software Collections Beta (for RHEL Client) 125 | Red Hat Enterprise Linux Scalable File System (for RHEL Compute Node) 126 | Red Hat Enterprise Linux Server 127 | Red Hat Software Collections Beta (for RHEL Server) 128 | SKU: ES0113909 129 | Contract: 10254446 130 | Pool ID: 8a85f9874011071c01407da00b997cb2 131 | Provides Management: Yes 132 | Available: Unlimited 133 | Suggested: 1 134 | Service Level: Self-Support 135 | Service Type: L1-L3 136 | Subscription Type: Standard 137 | Ends: 12/31/2021 138 | System Type: Virtual 139 | 140 | Subscription Name: 60 Day Self-Supported Red Hat Enterprise Linux with Smart Virtualization and Management Evaluation 141 | Provides: Red Hat Enterprise Linux Server - Extended Update Support 142 | Red Hat Beta 143 | Oracle Java (for RHEL Server) - Extended Update Support 144 | JBoss Enterprise Application Platform 145 | Red Hat Software Collections (for RHEL Server) 146 | Red Hat Enterprise Virtualization 147 | Oracle Java (for RHEL Server) 148 | Red Hat Enterprise Linux Server 149 | Red Hat Software Collections Beta (for RHEL Server) 150 | SKU: SER0447 151 | Contract: 10808671 152 | Pool ID: 8a85f98150a5bb0a0150a960a9ca2cb3 153 | Provides Management: Yes 154 | Available: Unlimited 155 | Suggested: 1 156 | Service Level: Self-Support 157 | Service Type: L1-L3 158 | Subscription Type: Standard 159 | Ends: 12/25/2015 160 | System Type: Virtual 161 | 162 | Subscription Name: Red Hat Enterprise Linux Developer Suite 163 | Provides: Red Hat Software Collections (for RHEL Server) 164 | Red Hat Container Development Kit 165 | MRG Realtime 166 | Red Hat EUCJP Support (for RHEL Server) - Extended Update Support 167 | Red Hat Enterprise Linux Server - Extended Update Support 168 | Red Hat Beta 169 | Oracle Java (for RHEL Server) - Extended Update Support 170 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 171 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) - Extended Update Support 172 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 173 | Oracle Java (for RHEL Server) 174 | Red Hat Container Images 175 | Red Hat Enterprise Linux for Real Time 176 | Red Hat Enterprise Linux Atomic Host 177 | Red Hat S-JIS Support (for RHEL Server) - Extended Update Support 178 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 179 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 180 | Red Hat Enterprise Linux Atomic Host Beta 181 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 182 | Red Hat Container Images Beta 183 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 184 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 185 | Red Hat Enterprise Linux High Availability (for RHEL Server) 186 | Red Hat Enterprise Linux Server 187 | Red Hat Software Collections Beta (for RHEL Server) 188 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 189 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 190 | Red Hat Developer Toolset (for RHEL Server) 191 | SKU: RH2262474 192 | Contract: 10835191 193 | Pool ID: 8a85f981515c32ea01515deeea9a7178 194 | Provides Management: Yes 195 | Available: 100 196 | Suggested: 1 197 | Service Level: Self-Support 198 | Service Type: L1-L3 199 | Subscription Type: Standard 200 | Ends: 11/30/2016 201 | System Type: Virtual 202 | 203 | Subscription Name: 30 Day Self-Supported OpenShift Enterprise, 2 Cores Evaluation 204 | Provides: Red Hat OpenShift Enterprise Application Node 205 | Red Hat Software Collections (for RHEL Server) 206 | Red Hat JBoss A-MQ Clients 207 | Red Hat Beta 208 | Red Hat OpenShift Enterprise JBoss EAP add-on 209 | Red Hat OpenShift Enterprise 210 | JBoss Enterprise Application Platform 211 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 212 | Red Hat OpenShift Enterprise JBoss FUSE add-on 213 | JBoss Enterprise Web Server 214 | Oracle Java (for RHEL Server) 215 | Red Hat OpenShift Enterprise Client Tools 216 | Red Hat CloudForms Beta 217 | Red Hat Enterprise Linux Server 218 | Red Hat Enterprise Linux Atomic Host 219 | Red Hat Software Collections Beta (for RHEL Server) 220 | Red Hat OpenShift Enterprise Infrastructure 221 | Red Hat CloudForms 222 | SKU: SER0419 223 | Contract: 10826060 224 | Pool ID: 8a85f981511f6e7a01512142fe4076a0 225 | Provides Management: Yes 226 | Available: 1 227 | Suggested: 1 228 | Service Level: Self-Support 229 | Service Type: L1-L3 230 | Subscription Type: Standard 231 | Ends: 12/18/2015 232 | System Type: Physical 233 | 234 | Subscription Name: Red Hat Satellite Employee Subscription 235 | Provides: Red Hat Satellite Capsule Beta 236 | Red Hat Beta 237 | Red Hat Software Collections (for RHEL Server) 238 | Red Hat Satellite Capsule 239 | Red Hat Satellite with Embedded Oracle 240 | Red Hat Satellite 6 Beta 241 | Red Hat Satellite Beta 242 | Red Hat Enterprise Linux High Availability (for RHEL Server) 243 | Red Hat Enterprise Linux Server 244 | Red Hat Satellite 245 | Red Hat Software Collections Beta (for RHEL Server) 246 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 247 | SKU: SER0232US 248 | Contract: 2380042 249 | Pool ID: 8a85f9863f14fed3013f82b2c7b33615 250 | Provides Management: Yes 251 | Available: 6080 252 | Suggested: 1 253 | Service Level: Self-Support 254 | Service Type: L1-L3 255 | Subscription Type: Standard 256 | Ends: 12/31/2021 257 | System Type: Physical 258 | 259 | Subscription Name: Atomic Enterprise Platform High Touch Beta 260 | Provides: Atomic Enterprise Platform Beta 261 | SKU: RH00500 262 | Contract: 10828393 263 | Pool ID: 8a85f981513520750151359ee8bb3159 264 | Provides Management: No 265 | Available: 4 266 | Suggested: 1 267 | Service Level: Self-Support 268 | Service Type: L1-L3 269 | Subscription Type: Instance Based 270 | Ends: 11/22/2016 271 | System Type: Physical 272 | 273 | Subscription Name: 90 Day Self-Supported Red Hat JBoss BPM Suite with Management Evaluation 274 | Provides: Red Hat JBoss A-MQ Clients 275 | JBoss Enterprise Application Platform 276 | JBoss Enterprise Web Server 277 | SKU: MW2463104 278 | Contract: 10808022 279 | Pool ID: 8a85f98150a5bb0a0150a606c1fe1a1b 280 | Provides Management: No 281 | Available: Unlimited 282 | Suggested: 1 283 | Service Level: Self-Support 284 | Service Type: L1-L3 285 | Subscription Type: Standard 286 | Ends: 01/23/2016 287 | System Type: Physical 288 | 289 | Subscription Name: Red Hat Enterprise Linux Developer Suite 290 | Provides: Red Hat Software Collections (for RHEL Server) 291 | Red Hat Container Development Kit 292 | MRG Realtime 293 | Red Hat EUCJP Support (for RHEL Server) - Extended Update Support 294 | Red Hat Enterprise Linux Server - Extended Update Support 295 | Red Hat Beta 296 | Oracle Java (for RHEL Server) - Extended Update Support 297 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 298 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) - Extended Update Support 299 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 300 | Oracle Java (for RHEL Server) 301 | Red Hat Container Images 302 | Red Hat Enterprise Linux for Real Time 303 | Red Hat Enterprise Linux Atomic Host 304 | Red Hat S-JIS Support (for RHEL Server) - Extended Update Support 305 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 306 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 307 | Red Hat Enterprise Linux Atomic Host Beta 308 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 309 | Red Hat Container Images Beta 310 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 311 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 312 | Red Hat Enterprise Linux High Availability (for RHEL Server) 313 | Red Hat Enterprise Linux Server 314 | Red Hat Software Collections Beta (for RHEL Server) 315 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 316 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 317 | Red Hat Developer Toolset (for RHEL Server) 318 | SKU: RH2262474 319 | Contract: 10833879 320 | Pool ID: 8a85f98151570b8f015158acab466c53 321 | Provides Management: Yes 322 | Available: 100 323 | Suggested: 1 324 | Service Level: Self-Support 325 | Service Type: L1-L3 326 | Subscription Type: Standard 327 | Ends: 11/29/2016 328 | System Type: Virtual 329 | 330 | Subscription Name: OpenShift Employee Subscription 331 | Provides: Red Hat OpenShift Enterprise Application Node 332 | Red Hat Software Collections (for RHEL Server) 333 | Red Hat Beta 334 | Red Hat JBoss A-MQ Clients 335 | Red Hat OpenShift Enterprise 336 | Red Hat OpenShift Enterprise JBoss EAP add-on 337 | JBoss Enterprise Application Platform 338 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 339 | JBoss Enterprise Web Server 340 | Red Hat OpenShift Enterprise JBoss FUSE add-on 341 | Oracle Java (for RHEL Server) 342 | Red Hat OpenShift Enterprise Client Tools 343 | Red Hat CloudForms Beta 344 | Red Hat Enterprise Linux Server 345 | Red Hat Software Collections Beta (for RHEL Server) 346 | Red Hat Enterprise Linux Atomic Host 347 | Red Hat OpenShift Enterprise Infrastructure 348 | Red Hat CloudForms 349 | SKU: SER0421 350 | Contract: 10051091 351 | Pool ID: 8a85f9843affb61f013b52c3e53e53a5 352 | Provides Management: Yes 353 | Available: 20 354 | Suggested: 1 355 | Service Level: Self-Support 356 | Service Type: L1-L3 357 | Subscription Type: Standard 358 | Ends: 12/31/2021 359 | System Type: Physical 360 | 361 | Subscription Name: 60 Day Self-Supported Red Hat Enterprise Linux OpenStack Platform Preview 362 | Provides: Red Hat Beta 363 | Red Hat OpenStack Beta 364 | Red Hat Software Collections (for RHEL Server) 365 | Oracle Java (for RHEL Server) 366 | Red Hat OpenStack 367 | Red Hat Enterprise MRG Messaging 368 | Red Hat Enterprise Linux High Availability (for RHEL Server) 369 | Red Hat Enterprise Linux Server 370 | Red Hat Software Collections Beta (for RHEL Server) 371 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 372 | SKU: SER0406 373 | Contract: 10805586 374 | Pool ID: 8a85f981508a26f801508ccf92d920d2 375 | Provides Management: No 376 | Available: Unlimited 377 | Suggested: 1 378 | Service Level: Self-Support 379 | Service Type: L1-L3 380 | Subscription Type: Standard 381 | Ends: 12/19/2015 382 | System Type: Virtual 383 | 384 | Subscription Name: 90 Day Self-Supported Red Hat JBoss Web Server with Management Evaluation 385 | Provides: Red Hat JBoss A-MQ Clients 386 | JBoss Enterprise Application Platform 387 | JBoss Enterprise Web Server 388 | Red Hat Enterprise MRG Messaging 389 | SKU: MW0299927 390 | Contract: 10819304 391 | Pool ID: 8a85f98150f0e1490150f3a7a64c2188 392 | Provides Management: No 393 | Available: Unlimited 394 | Suggested: 1 395 | Service Level: Self-Support 396 | Service Type: L1-L3 397 | Subscription Type: Standard 398 | Ends: 02/07/2016 399 | System Type: Physical 400 | 401 | Subscription Name: 90 Day Self-Supported Red Hat JBoss Enterprise Application Platform with Management Evaluation 402 | Provides: Red Hat JBoss A-MQ Clients 403 | JBoss Enterprise Application Platform 404 | JBoss Enterprise Web Server 405 | Red Hat Enterprise MRG Messaging 406 | SKU: MW0176371 407 | Contract: 10835403 408 | Pool ID: 8a85f981515f32c801515f381a2c0293 409 | Provides Management: No 410 | Available: Unlimited 411 | Suggested: 1 412 | Service Level: Self-Support 413 | Service Type: L1-L3 414 | Subscription Type: Standard 415 | Ends: 02/28/2016 416 | System Type: Physical 417 | 418 | Subscription Name: 60 Day Self-Supported Red Hat Enterprise Linux OpenStack Platform Preview 419 | Provides: Red Hat Beta 420 | Red Hat OpenStack Beta 421 | Red Hat Software Collections (for RHEL Server) 422 | Oracle Java (for RHEL Server) 423 | Red Hat OpenStack 424 | Red Hat Enterprise MRG Messaging 425 | Red Hat Enterprise Linux High Availability (for RHEL Server) 426 | Red Hat Enterprise Linux Server 427 | Red Hat Software Collections Beta (for RHEL Server) 428 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 429 | SKU: SER0406 430 | Contract: 10805200 431 | Pool ID: 8a85f981508a26f801508a957f9d0de3 432 | Provides Management: No 433 | Available: Unlimited 434 | Suggested: 1 435 | Service Level: Self-Support 436 | Service Type: L1-L3 437 | Subscription Type: Standard 438 | Ends: 12/19/2015 439 | System Type: Virtual 440 | 441 | Subscription Name: 90 Day Self-Supported Red Hat JBoss Fuse with Management Evaluation 442 | Provides: Red Hat JBoss A-MQ Clients 443 | JBoss Enterprise Application Platform 444 | JBoss Enterprise Web Server 445 | Red Hat Enterprise MRG Messaging 446 | SKU: MW2212035 447 | Contract: 10837843 448 | Pool ID: 8a85f981516c7f2101516dd9ea093fb1 449 | Provides Management: No 450 | Available: Unlimited 451 | Suggested: 1 452 | Service Level: Self-Support 453 | Service Type: L1-L3 454 | Subscription Type: Standard 455 | Ends: 03/02/2016 456 | System Type: Physical 457 | 458 | Subscription Name: 60 Day Self-Supported Red Hat Enterprise Linux OpenStack Platform Preview 459 | Provides: Red Hat Beta 460 | Red Hat OpenStack Beta 461 | Red Hat Software Collections (for RHEL Server) 462 | Oracle Java (for RHEL Server) 463 | Red Hat OpenStack 464 | Red Hat Enterprise MRG Messaging 465 | Red Hat Enterprise Linux High Availability (for RHEL Server) 466 | Red Hat Enterprise Linux Server 467 | Red Hat Software Collections Beta (for RHEL Server) 468 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 469 | SKU: SER0406 470 | Contract: 10819641 471 | Pool ID: 8a85f98150f52c210150f5ce6d7c46fb 472 | Provides Management: No 473 | Available: Unlimited 474 | Suggested: 1 475 | Service Level: Self-Support 476 | Service Type: L1-L3 477 | Subscription Type: Standard 478 | Ends: 01/09/2016 479 | System Type: Virtual 480 | 481 | Subscription Name: 90 Day Self-Supported Red Hat JBoss Data Grid with Management Evaluation 482 | Provides: Red Hat JBoss A-MQ Clients 483 | JBoss Enterprise Application Platform 484 | JBoss Enterprise Web Server 485 | Red Hat Enterprise MRG Messaging 486 | SKU: MW0929806 487 | Contract: 10800854 488 | Pool ID: 8a85f98150676ebd015067fdce722b3a 489 | Provides Management: No 490 | Available: Unlimited 491 | Suggested: 1 492 | Service Level: Self-Support 493 | Service Type: L1-L3 494 | Subscription Type: Standard 495 | Ends: 01/11/2016 496 | System Type: Physical 497 | 498 | Subscription Name: Employee SKU 499 | Provides: Oracle Java (for RHEL Server) - AUS 500 | Oracle Java (for RHEL Client) 501 | Red Hat Enterprise Linux 7 High Availability High Touch Beta 502 | Red Hat Enterprise Linux High Availability (for IBM z Systems) 503 | Red Hat Enterprise Linux 6 Server HTB 504 | Red Hat EUCJP Support (for RHEL Server) 505 | Red Hat Enterprise Linux for Power, little endian 506 | Red Hat Enterprise Linux EUS Compute Node 507 | Red Hat Enterprise Linux for Power, big endian - Extended Update Support 508 | Red Hat OpenShift Enterprise JBoss EAP add-on 509 | Oracle Java (for RHEL Server) - Extended Update Support 510 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - AUS 511 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 512 | JBoss Enterprise Web Server 513 | Red Hat Ceph Storage MON 514 | JBoss Enterprise Web Platform 515 | Red Hat Enterprise Linux 7 Load Balancer High Touch Beta 516 | Red Hat OpenShift Enterprise Infrastructure Beta 517 | Kernel Derivative Works for Bluegene/Q 518 | Oracle Java (for RHEL Compute Node) - Extended Update Support 519 | Red Hat Enterprise Linux 7 for HPC Compute Node High Touch Beta 520 | Red Hat Enterprise Linux Scalable File System (for RHEL Workstation) 521 | Red Hat Enterprise Linux Desktop 522 | OLD Red Hat Enterprise Linux Server for ARM Development Preview 523 | Red Hat Enterprise Linux for IBM z Systems - Extended Update Support 524 | JBoss Enterprise Application Platform - ELS 525 | Red Hat OpenShift Enterprise Client Tools Beta 526 | Atomic Enterprise Platform Beta 527 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 528 | Red Hat OpenShift Enterprise JBoss FUSE add-on 529 | Red Hat Ceph Storage 530 | Red Hat Cloud Infrastructure 531 | Red Hat Certificate System with Advanced Access 532 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 533 | Red Hat OpenShift Enterprise Infrastructure 534 | Red Hat Enterprise Linux 7 Desktop High Touch Beta 535 | Red Hat Software Collections (for RHEL Server) 536 | Red Hat Enterprise Linux 7 for IBM z Systems High Touch Beta 537 | Red Hat Enterprise Linux High Performance Networking (for RHEL for IBM POWER) 538 | Red Hat Gluster Storage Nagios Server 539 | Red Hat Enterprise Linux Server for ARM Beta 540 | Red Hat Gluster Storage Server for On-premise 541 | Red Hat Beta 542 | Red Hat Enterprise Linux Server - Extended Update Support 543 | Red Hat OpenShift Enterprise 544 | Red Hat OpenShift Enterprise Application Node Beta 545 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 546 | Oracle Java (for RHEL Server) 547 | Red Hat Enterprise Linux for Real Time 548 | Red Hat Enterprise Linux Atomic Host 549 | Red Hat Developer Toolset (for RHEL Workstation) 550 | Red Hat OpenShift Enterprise JBoss EAP add-on Beta 551 | Red Hat OpenShift Enterprise Application Node 552 | Kernel Derivative Works for HPC for Power Systems 553 | Red Hat Enterprise Linux for Scientific Computing 554 | Red Hat Enterprise Linux 7 Resilient Storage High Touch Beta 555 | Red Hat Enterprise Linux High Availability (for RHEL Server) - AUS 556 | Red Hat Container Images HTB 557 | Red Hat Container Images Beta 558 | Red Hat Enterprise Virtualization for IBM Power 559 | Red Hat Developer Toolset (for RHEL Server EUS) 560 | Red Hat OpenStack 561 | Red Hat OpenShift Enterprise Client Tools 562 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 563 | Red Hat CloudForms Beta 564 | Red Hat Enterprise Linux High Availability (for RHEL Server) 565 | Red Hat Certification (for RHEL Server) 566 | Red Hat Gluster Storage Management Console (for RHEL Server) 567 | Red Hat OpenStack Beta 568 | Red Hat Ceph Storage OSD 569 | Red Hat Enterprise Virtualization 570 | MRG Grid Execute 571 | Red Hat Container Development Kit 572 | Red Hat Enterprise Linux Workstation 573 | Red Hat Enterprise Linux for SAP 574 | MRG Realtime 575 | Red Hat Enterprise Linux Server - AUS 576 | JBoss Enterprise Application Platform 577 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 578 | Red Hat Container Images 579 | Red Hat Enterprise MRG Messaging 3 for RHEL 7 580 | Red Hat Enterprise Linux Resilient Storage (for IBM z Systems) 581 | Red Hat Certificate System 582 | Red Hat CloudForms 583 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - AUS 584 | Red Hat S-JIS Support (for RHEL Server) 585 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 586 | Red Hat OpenStack Beta Certification Test Suite 587 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 588 | Red Hat Enterprise Linux Atomic Host Beta 589 | Red Hat Enterprise Linux EUS Compute Node High Performance Networking 590 | Red Hat Enterprise Linux 7 Server High Touch Beta 591 | Oracle Java (for Middleware) 592 | MRG Management 593 | Red Hat Enterprise Linux 7 Workstation High Touch Beta 594 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 595 | Red Hat Enterprise Linux 6 Workstation HTB 596 | Red Hat JBoss A-MQ Clients 597 | Red Hat Directory Server 598 | Red Hat Enterprise Linux Server - Extended Life Cycle Support 599 | Red Hat Enterprise Linux for IBM z Systems 600 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 601 | Red Hat Developer Toolset (for RHEL Server) 602 | Red Hat Hardware Certification Test Suite 603 | Red Hat Enterprise Linux Atomic Host HTB 604 | Red Hat Software Collections Beta (for RHEL Workstation) 605 | Red Hat Software Collections (for RHEL Workstation) 606 | Oracle Java (for RHEL Workstation) 607 | Red Hat Ceph Storage Calamari 608 | Red Hat Enterprise MRG Messaging 609 | Red Hat Enterprise Linux for SAP Hana 610 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - AUS 611 | MRG Grid 612 | Oracle Java (for RHEL Compute Node) 613 | Red Hat Enterprise Linux for Power, big endian 614 | Red Hat Enterprise Linux 7 for IBM POWER High Touch Beta 615 | Red Hat Storage 616 | Red Hat Enterprise Linux EUS Compute Node Scalable File System 617 | Red Hat Enterprise Linux Server for ARM Development Preview 618 | Red Hat Software Collections Beta (for RHEL Client) 619 | Red Hat Enterprise Linux Scalable File System (for RHEL Compute Node) 620 | Red Hat Enterprise Linux Server 621 | Red Hat Software Collections Beta (for RHEL Server) 622 | SKU: ES0113909 623 | Contract: 10695637 624 | Pool ID: 8a85f9814d368e7d014d44509b5e4eef 625 | Provides Management: Yes 626 | Available: Unlimited 627 | Suggested: 1 628 | Service Level: Self-Support 629 | Service Type: L1-L3 630 | Subscription Type: Standard 631 | Ends: 05/10/2016 632 | System Type: Virtual 633 | 634 | Subscription Name: Red Hat Enterprise Linux for IBM POWER, Standard (4 sockets) (Up to 30 LPARs) 635 | Provides: Red Hat Beta 636 | Red Hat Enterprise Linux for Power, big endian 637 | SKU: RH0350482 638 | Contract: 10649085 639 | Pool ID: 8a85f9814bb5c885014bccd9c74c1b3c 640 | Provides Management: No 641 | Available: 2 642 | Suggested: 1 643 | Service Level: Standard 644 | Service Type: L1-L3 645 | Subscription Type: Standard 646 | Ends: 02/26/2016 647 | System Type: Physical 648 | 649 | Subscription Name: Employee SKU 650 | Provides: Oracle Java (for RHEL Server) - AUS 651 | Oracle Java (for RHEL Client) 652 | Red Hat Enterprise Linux 7 High Availability High Touch Beta 653 | Red Hat Enterprise Linux High Availability (for IBM z Systems) 654 | Red Hat Enterprise Linux 6 Server HTB 655 | Red Hat EUCJP Support (for RHEL Server) 656 | Red Hat Enterprise Linux for Power, little endian 657 | Red Hat Enterprise Linux EUS Compute Node 658 | Red Hat Enterprise Linux for Power, big endian - Extended Update Support 659 | Red Hat OpenShift Enterprise JBoss EAP add-on 660 | Oracle Java (for RHEL Server) - Extended Update Support 661 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - AUS 662 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 663 | JBoss Enterprise Web Server 664 | Red Hat Ceph Storage MON 665 | JBoss Enterprise Web Platform 666 | Red Hat Enterprise Linux 7 Load Balancer High Touch Beta 667 | Red Hat OpenShift Enterprise Infrastructure Beta 668 | Kernel Derivative Works for Bluegene/Q 669 | Oracle Java (for RHEL Compute Node) - Extended Update Support 670 | Red Hat Enterprise Linux 7 for HPC Compute Node High Touch Beta 671 | Red Hat Enterprise Linux Scalable File System (for RHEL Workstation) 672 | Red Hat Enterprise Linux Desktop 673 | OLD Red Hat Enterprise Linux Server for ARM Development Preview 674 | Red Hat Enterprise Linux for IBM z Systems - Extended Update Support 675 | JBoss Enterprise Application Platform - ELS 676 | Red Hat OpenShift Enterprise Client Tools Beta 677 | Atomic Enterprise Platform Beta 678 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 679 | Red Hat OpenShift Enterprise JBoss FUSE add-on 680 | Red Hat Ceph Storage 681 | Red Hat Cloud Infrastructure 682 | Red Hat Certificate System with Advanced Access 683 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 684 | Red Hat OpenShift Enterprise Infrastructure 685 | Red Hat Enterprise Linux 7 Desktop High Touch Beta 686 | Red Hat Software Collections (for RHEL Server) 687 | Red Hat Enterprise Linux 7 for IBM z Systems High Touch Beta 688 | Red Hat Enterprise Linux High Performance Networking (for RHEL for IBM POWER) 689 | Red Hat Gluster Storage Nagios Server 690 | Red Hat Enterprise Linux Server for ARM Beta 691 | Red Hat Gluster Storage Server for On-premise 692 | Red Hat Beta 693 | Red Hat Enterprise Linux Server - Extended Update Support 694 | Red Hat OpenShift Enterprise 695 | Red Hat OpenShift Enterprise Application Node Beta 696 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 697 | Oracle Java (for RHEL Server) 698 | Red Hat Enterprise Linux for Real Time 699 | Red Hat Enterprise Linux Atomic Host 700 | Red Hat Developer Toolset (for RHEL Workstation) 701 | Red Hat OpenShift Enterprise JBoss EAP add-on Beta 702 | Red Hat OpenShift Enterprise Application Node 703 | Kernel Derivative Works for HPC for Power Systems 704 | Red Hat Enterprise Linux for Scientific Computing 705 | Red Hat Enterprise Linux 7 Resilient Storage High Touch Beta 706 | Red Hat Enterprise Linux High Availability (for RHEL Server) - AUS 707 | Red Hat Container Images HTB 708 | Red Hat Container Images Beta 709 | Red Hat Enterprise Virtualization for IBM Power 710 | Red Hat Developer Toolset (for RHEL Server EUS) 711 | Red Hat OpenStack 712 | Red Hat OpenShift Enterprise Client Tools 713 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 714 | Red Hat CloudForms Beta 715 | Red Hat Enterprise Linux High Availability (for RHEL Server) 716 | Red Hat Certification (for RHEL Server) 717 | Red Hat Gluster Storage Management Console (for RHEL Server) 718 | Red Hat OpenStack Beta 719 | Red Hat Ceph Storage OSD 720 | Red Hat Enterprise Virtualization 721 | MRG Grid Execute 722 | Red Hat Container Development Kit 723 | Red Hat Enterprise Linux Workstation 724 | Red Hat Enterprise Linux for SAP 725 | MRG Realtime 726 | Red Hat Enterprise Linux Server - AUS 727 | JBoss Enterprise Application Platform 728 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 729 | Red Hat Container Images 730 | Red Hat Enterprise MRG Messaging 3 for RHEL 7 731 | Red Hat Enterprise Linux Resilient Storage (for IBM z Systems) 732 | Red Hat Certificate System 733 | Red Hat CloudForms 734 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - AUS 735 | Red Hat S-JIS Support (for RHEL Server) 736 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 737 | Red Hat OpenStack Beta Certification Test Suite 738 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 739 | Red Hat Enterprise Linux Atomic Host Beta 740 | Red Hat Enterprise Linux EUS Compute Node High Performance Networking 741 | Red Hat Enterprise Linux 7 Server High Touch Beta 742 | Oracle Java (for Middleware) 743 | MRG Management 744 | Red Hat Enterprise Linux 7 Workstation High Touch Beta 745 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 746 | Red Hat Enterprise Linux 6 Workstation HTB 747 | Red Hat JBoss A-MQ Clients 748 | Red Hat Directory Server 749 | Red Hat Enterprise Linux Server - Extended Life Cycle Support 750 | Red Hat Enterprise Linux for IBM z Systems 751 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 752 | Red Hat Developer Toolset (for RHEL Server) 753 | Red Hat Hardware Certification Test Suite 754 | Red Hat Enterprise Linux Atomic Host HTB 755 | Red Hat Software Collections Beta (for RHEL Workstation) 756 | Red Hat Software Collections (for RHEL Workstation) 757 | Oracle Java (for RHEL Workstation) 758 | Red Hat Ceph Storage Calamari 759 | Red Hat Enterprise MRG Messaging 760 | Red Hat Enterprise Linux for SAP Hana 761 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - AUS 762 | MRG Grid 763 | Oracle Java (for RHEL Compute Node) 764 | Red Hat Enterprise Linux for Power, big endian 765 | Red Hat Enterprise Linux 7 for IBM POWER High Touch Beta 766 | Red Hat Storage 767 | Red Hat Enterprise Linux EUS Compute Node Scalable File System 768 | Red Hat Enterprise Linux Server for ARM Development Preview 769 | Red Hat Software Collections Beta (for RHEL Client) 770 | Red Hat Enterprise Linux Scalable File System (for RHEL Compute Node) 771 | Red Hat Enterprise Linux Server 772 | Red Hat Software Collections Beta (for RHEL Server) 773 | SKU: ES0113909 774 | Contract: 10398018 775 | Pool ID: 8a85f98144844aff014488d059f61625 776 | Provides Management: Yes 777 | Available: Unlimited 778 | Suggested: 1 779 | Service Level: Self-Support 780 | Service Type: L1-L3 781 | Subscription Type: Standard 782 | Ends: 12/31/2021 783 | System Type: Virtual 784 | 785 | Subscription Name: Employee SKU 786 | Provides: Oracle Java (for RHEL Server) - AUS 787 | Oracle Java (for RHEL Client) 788 | Red Hat Enterprise Linux 7 High Availability High Touch Beta 789 | Red Hat Enterprise Linux High Availability (for IBM z Systems) 790 | Red Hat Enterprise Linux 6 Server HTB 791 | Red Hat EUCJP Support (for RHEL Server) 792 | Red Hat Enterprise Linux for Power, little endian 793 | Red Hat Enterprise Linux EUS Compute Node 794 | Red Hat Enterprise Linux for Power, big endian - Extended Update Support 795 | Red Hat OpenShift Enterprise JBoss EAP add-on 796 | Oracle Java (for RHEL Server) - Extended Update Support 797 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - AUS 798 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 799 | JBoss Enterprise Web Server 800 | Red Hat Ceph Storage MON 801 | JBoss Enterprise Web Platform 802 | Red Hat Enterprise Linux 7 Load Balancer High Touch Beta 803 | Red Hat OpenShift Enterprise Infrastructure Beta 804 | Kernel Derivative Works for Bluegene/Q 805 | Oracle Java (for RHEL Compute Node) - Extended Update Support 806 | Red Hat Enterprise Linux 7 for HPC Compute Node High Touch Beta 807 | Red Hat Enterprise Linux Scalable File System (for RHEL Workstation) 808 | Red Hat Enterprise Linux Desktop 809 | OLD Red Hat Enterprise Linux Server for ARM Development Preview 810 | Red Hat Enterprise Linux for IBM z Systems - Extended Update Support 811 | JBoss Enterprise Application Platform - ELS 812 | Red Hat OpenShift Enterprise Client Tools Beta 813 | Atomic Enterprise Platform Beta 814 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 815 | Red Hat OpenShift Enterprise JBoss FUSE add-on 816 | Red Hat Ceph Storage 817 | Red Hat Cloud Infrastructure 818 | Red Hat Certificate System with Advanced Access 819 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 820 | Red Hat OpenShift Enterprise Infrastructure 821 | Red Hat Enterprise Linux 7 Desktop High Touch Beta 822 | Red Hat Software Collections (for RHEL Server) 823 | Red Hat Enterprise Linux 7 for IBM z Systems High Touch Beta 824 | Red Hat Enterprise Linux High Performance Networking (for RHEL for IBM POWER) 825 | Red Hat Gluster Storage Nagios Server 826 | Red Hat Enterprise Linux Server for ARM Beta 827 | Red Hat Gluster Storage Server for On-premise 828 | Red Hat Beta 829 | Red Hat Enterprise Linux Server - Extended Update Support 830 | Red Hat OpenShift Enterprise 831 | Red Hat OpenShift Enterprise Application Node Beta 832 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 833 | Oracle Java (for RHEL Server) 834 | Red Hat Enterprise Linux for Real Time 835 | Red Hat Enterprise Linux Atomic Host 836 | Red Hat Developer Toolset (for RHEL Workstation) 837 | Red Hat OpenShift Enterprise JBoss EAP add-on Beta 838 | Red Hat OpenShift Enterprise Application Node 839 | Kernel Derivative Works for HPC for Power Systems 840 | Red Hat Enterprise Linux for Scientific Computing 841 | Red Hat Enterprise Linux 7 Resilient Storage High Touch Beta 842 | Red Hat Enterprise Linux High Availability (for RHEL Server) - AUS 843 | Red Hat Container Images HTB 844 | Red Hat Container Images Beta 845 | Red Hat Enterprise Virtualization for IBM Power 846 | Red Hat Developer Toolset (for RHEL Server EUS) 847 | Red Hat OpenStack 848 | Red Hat OpenShift Enterprise Client Tools 849 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 850 | Red Hat CloudForms Beta 851 | Red Hat Enterprise Linux High Availability (for RHEL Server) 852 | Red Hat Certification (for RHEL Server) 853 | Red Hat Gluster Storage Management Console (for RHEL Server) 854 | Red Hat OpenStack Beta 855 | Red Hat Ceph Storage OSD 856 | Red Hat Enterprise Virtualization 857 | MRG Grid Execute 858 | Red Hat Container Development Kit 859 | Red Hat Enterprise Linux Workstation 860 | Red Hat Enterprise Linux for SAP 861 | MRG Realtime 862 | Red Hat Enterprise Linux Server - AUS 863 | JBoss Enterprise Application Platform 864 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 865 | Red Hat Container Images 866 | Red Hat Enterprise MRG Messaging 3 for RHEL 7 867 | Red Hat Enterprise Linux Resilient Storage (for IBM z Systems) 868 | Red Hat Certificate System 869 | Red Hat CloudForms 870 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - AUS 871 | Red Hat S-JIS Support (for RHEL Server) 872 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 873 | Red Hat OpenStack Beta Certification Test Suite 874 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 875 | Red Hat Enterprise Linux Atomic Host Beta 876 | Red Hat Enterprise Linux EUS Compute Node High Performance Networking 877 | Red Hat Enterprise Linux 7 Server High Touch Beta 878 | Oracle Java (for Middleware) 879 | MRG Management 880 | Red Hat Enterprise Linux 7 Workstation High Touch Beta 881 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 882 | Red Hat Enterprise Linux 6 Workstation HTB 883 | Red Hat JBoss A-MQ Clients 884 | Red Hat Directory Server 885 | Red Hat Enterprise Linux Server - Extended Life Cycle Support 886 | Red Hat Enterprise Linux for IBM z Systems 887 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 888 | Red Hat Developer Toolset (for RHEL Server) 889 | Red Hat Hardware Certification Test Suite 890 | Red Hat Enterprise Linux Atomic Host HTB 891 | Red Hat Software Collections Beta (for RHEL Workstation) 892 | Red Hat Software Collections (for RHEL Workstation) 893 | Oracle Java (for RHEL Workstation) 894 | Red Hat Ceph Storage Calamari 895 | Red Hat Enterprise MRG Messaging 896 | Red Hat Enterprise Linux for SAP Hana 897 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - AUS 898 | MRG Grid 899 | Oracle Java (for RHEL Compute Node) 900 | Red Hat Enterprise Linux for Power, big endian 901 | Red Hat Enterprise Linux 7 for IBM POWER High Touch Beta 902 | Red Hat Storage 903 | Red Hat Enterprise Linux EUS Compute Node Scalable File System 904 | Red Hat Enterprise Linux Server for ARM Development Preview 905 | Red Hat Software Collections Beta (for RHEL Client) 906 | Red Hat Enterprise Linux Scalable File System (for RHEL Compute Node) 907 | Red Hat Enterprise Linux Server 908 | Red Hat Software Collections Beta (for RHEL Server) 909 | SKU: ES0113909 910 | Contract: 10398018 911 | Pool ID: 8a85f98144844aff014488d058bf15be 912 | Provides Management: Yes 913 | Available: 5646 914 | Suggested: 1 915 | Service Level: Self-Support 916 | Service Type: L1-L3 917 | Subscription Type: Standard 918 | Ends: 12/31/2021 919 | System Type: Physical 920 | 921 | Subscription Name: 90 Day Self-Supported Red Hat JBoss Enterprise Application Platform with Management Evaluation 922 | Provides: Red Hat JBoss A-MQ Clients 923 | JBoss Enterprise Application Platform 924 | JBoss Enterprise Web Server 925 | Red Hat Enterprise MRG Messaging 926 | SKU: MW0176371 927 | Contract: 10802465 928 | Pool ID: 8a85f98150716ec801507213e68e45b4 929 | Provides Management: No 930 | Available: Unlimited 931 | Suggested: 1 932 | Service Level: Self-Support 933 | Service Type: L1-L3 934 | Subscription Type: Standard 935 | Ends: 01/13/2016 936 | System Type: Physical 937 | 938 | Subscription Name: 90 Day Self-Supported Red Hat JBoss Fuse with Management Evaluation 939 | Provides: Red Hat JBoss A-MQ Clients 940 | JBoss Enterprise Application Platform 941 | JBoss Enterprise Web Server 942 | Red Hat Enterprise MRG Messaging 943 | SKU: MW2212035 944 | Contract: 10796886 945 | Pool ID: 8a85f9815043671a015046fe4834711a 946 | Provides Management: No 947 | Available: Unlimited 948 | Suggested: 1 949 | Service Level: Self-Support 950 | Service Type: L1-L3 951 | Subscription Type: Standard 952 | Ends: 01/05/2016 953 | System Type: Physical 954 | 955 | Subscription Name: Red Hat Enterprise Linux Developer Suite 956 | Provides: Red Hat Software Collections (for RHEL Server) 957 | Red Hat Container Development Kit 958 | MRG Realtime 959 | Red Hat EUCJP Support (for RHEL Server) - Extended Update Support 960 | Red Hat Enterprise Linux Server - Extended Update Support 961 | Red Hat Beta 962 | Oracle Java (for RHEL Server) - Extended Update Support 963 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 964 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) - Extended Update Support 965 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 966 | Oracle Java (for RHEL Server) 967 | Red Hat Container Images 968 | Red Hat Enterprise Linux for Real Time 969 | Red Hat Enterprise Linux Atomic Host 970 | Red Hat S-JIS Support (for RHEL Server) - Extended Update Support 971 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 972 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 973 | Red Hat Enterprise Linux Atomic Host Beta 974 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 975 | Red Hat Container Images Beta 976 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 977 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 978 | Red Hat Enterprise Linux High Availability (for RHEL Server) 979 | Red Hat Enterprise Linux Server 980 | Red Hat Software Collections Beta (for RHEL Server) 981 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 982 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 983 | Red Hat Developer Toolset (for RHEL Server) 984 | SKU: RH2262474 985 | Contract: 10835229 986 | Pool ID: 8a85f981515c32ea01515e2e66be0872 987 | Provides Management: Yes 988 | Available: 100 989 | Suggested: 1 990 | Service Level: Self-Support 991 | Service Type: L1-L3 992 | Subscription Type: Standard 993 | Ends: 11/30/2016 994 | System Type: Virtual 995 | 996 | Subscription Name: Red Hat Enterprise Linux Developer Suite 997 | Provides: Red Hat Software Collections (for RHEL Server) 998 | Red Hat Container Development Kit 999 | MRG Realtime 1000 | Red Hat EUCJP Support (for RHEL Server) - Extended Update Support 1001 | Red Hat Enterprise Linux Server - Extended Update Support 1002 | Red Hat Beta 1003 | Oracle Java (for RHEL Server) - Extended Update Support 1004 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 1005 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) - Extended Update Support 1006 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 1007 | Oracle Java (for RHEL Server) 1008 | Red Hat Container Images 1009 | Red Hat Enterprise Linux for Real Time 1010 | Red Hat Enterprise Linux Atomic Host 1011 | Red Hat S-JIS Support (for RHEL Server) - Extended Update Support 1012 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 1013 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 1014 | Red Hat Enterprise Linux Atomic Host Beta 1015 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 1016 | Red Hat Container Images Beta 1017 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 1018 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 1019 | Red Hat Enterprise Linux High Availability (for RHEL Server) 1020 | Red Hat Enterprise Linux Server 1021 | Red Hat Software Collections Beta (for RHEL Server) 1022 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 1023 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 1024 | Red Hat Developer Toolset (for RHEL Server) 1025 | SKU: RH2262474 1026 | Contract: 10835765 1027 | Pool ID: 8a85f9815160b99701516248e856181a 1028 | Provides Management: Yes 1029 | Available: 100 1030 | Suggested: 1 1031 | Service Level: Self-Support 1032 | Service Type: L1-L3 1033 | Subscription Type: Standard 1034 | Ends: 12/01/2016 1035 | System Type: Virtual 1036 | 1037 | Subscription Name: 60 Day Self-Supported Red Hat Enterprise Linux with Smart Virtualization and Management Evaluation 1038 | Provides: Red Hat Enterprise Linux Server - Extended Update Support 1039 | Red Hat Beta 1040 | Oracle Java (for RHEL Server) - Extended Update Support 1041 | JBoss Enterprise Application Platform 1042 | Red Hat Software Collections (for RHEL Server) 1043 | Red Hat Enterprise Virtualization 1044 | Oracle Java (for RHEL Server) 1045 | Red Hat Enterprise Linux Server 1046 | Red Hat Software Collections Beta (for RHEL Server) 1047 | SKU: SER0447 1048 | Contract: 10826088 1049 | Pool ID: 8a85f981511f6e7a015121684c6512ca 1050 | Provides Management: Yes 1051 | Available: Unlimited 1052 | Suggested: 1 1053 | Service Level: Self-Support 1054 | Service Type: L1-L3 1055 | Subscription Type: Standard 1056 | Ends: 01/17/2016 1057 | System Type: Virtual 1058 | 1059 | Subscription Name: 90 Day Self-Supported Red Hat JBoss BPM Suite with Management Evaluation 1060 | Provides: Red Hat JBoss A-MQ Clients 1061 | JBoss Enterprise Application Platform 1062 | JBoss Enterprise Web Server 1063 | SKU: MW2463104 1064 | Contract: 10801400 1065 | Pool ID: 8a85f98150676ebd01506bb877f33b36 1066 | Provides Management: No 1067 | Available: Unlimited 1068 | Suggested: 1 1069 | Service Level: Self-Support 1070 | Service Type: L1-L3 1071 | Subscription Type: Standard 1072 | Ends: 01/12/2016 1073 | System Type: Physical 1074 | 1075 | Subscription Name: 90 Day Self-Supported Red Hat JBoss A-MQ with Management Evaluation 1076 | Provides: Red Hat JBoss A-MQ Clients 1077 | JBoss Enterprise Application Platform 1078 | JBoss Enterprise Web Server 1079 | Red Hat Enterprise MRG Messaging 1080 | SKU: MW2349839 1081 | Contract: 10801969 1082 | Pool ID: 8a85f981506e17b101506f154e2a27cc 1083 | Provides Management: No 1084 | Available: Unlimited 1085 | Suggested: 1 1086 | Service Level: Self-Support 1087 | Service Type: L1-L3 1088 | Subscription Type: Standard 1089 | Ends: 01/13/2016 1090 | System Type: Physical 1091 | 1092 | Subscription Name: Employee SKU 1093 | Provides: Oracle Java (for RHEL Server) - AUS 1094 | Oracle Java (for RHEL Client) 1095 | Red Hat Enterprise Linux 7 High Availability High Touch Beta 1096 | Red Hat Enterprise Linux High Availability (for IBM z Systems) 1097 | Red Hat Enterprise Linux 6 Server HTB 1098 | Red Hat EUCJP Support (for RHEL Server) 1099 | Red Hat Enterprise Linux for Power, little endian 1100 | Red Hat Enterprise Linux EUS Compute Node 1101 | Red Hat Enterprise Linux for Power, big endian - Extended Update Support 1102 | Red Hat OpenShift Enterprise JBoss EAP add-on 1103 | Oracle Java (for RHEL Server) - Extended Update Support 1104 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - AUS 1105 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 1106 | JBoss Enterprise Web Server 1107 | Red Hat Ceph Storage MON 1108 | JBoss Enterprise Web Platform 1109 | Red Hat Enterprise Linux 7 Load Balancer High Touch Beta 1110 | Red Hat OpenShift Enterprise Infrastructure Beta 1111 | Kernel Derivative Works for Bluegene/Q 1112 | Oracle Java (for RHEL Compute Node) - Extended Update Support 1113 | Red Hat Enterprise Linux 7 for HPC Compute Node High Touch Beta 1114 | Red Hat Enterprise Linux Scalable File System (for RHEL Workstation) 1115 | Red Hat Enterprise Linux Desktop 1116 | OLD Red Hat Enterprise Linux Server for ARM Development Preview 1117 | Red Hat Enterprise Linux for IBM z Systems - Extended Update Support 1118 | JBoss Enterprise Application Platform - ELS 1119 | Red Hat OpenShift Enterprise Client Tools Beta 1120 | Atomic Enterprise Platform Beta 1121 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 1122 | Red Hat OpenShift Enterprise JBoss FUSE add-on 1123 | Red Hat Ceph Storage 1124 | Red Hat Cloud Infrastructure 1125 | Red Hat Certificate System with Advanced Access 1126 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 1127 | Red Hat OpenShift Enterprise Infrastructure 1128 | Red Hat Enterprise Linux 7 Desktop High Touch Beta 1129 | Red Hat Software Collections (for RHEL Server) 1130 | Red Hat Enterprise Linux 7 for IBM z Systems High Touch Beta 1131 | Red Hat Enterprise Linux High Performance Networking (for RHEL for IBM POWER) 1132 | Red Hat Gluster Storage Nagios Server 1133 | Red Hat Enterprise Linux Server for ARM Beta 1134 | Red Hat Gluster Storage Server for On-premise 1135 | Red Hat Beta 1136 | Red Hat Enterprise Linux Server - Extended Update Support 1137 | Red Hat OpenShift Enterprise 1138 | Red Hat OpenShift Enterprise Application Node Beta 1139 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 1140 | Oracle Java (for RHEL Server) 1141 | Red Hat Enterprise Linux for Real Time 1142 | Red Hat Enterprise Linux Atomic Host 1143 | Red Hat Developer Toolset (for RHEL Workstation) 1144 | Red Hat OpenShift Enterprise JBoss EAP add-on Beta 1145 | Red Hat OpenShift Enterprise Application Node 1146 | Kernel Derivative Works for HPC for Power Systems 1147 | Red Hat Enterprise Linux for Scientific Computing 1148 | Red Hat Enterprise Linux 7 Resilient Storage High Touch Beta 1149 | Red Hat Enterprise Linux High Availability (for RHEL Server) - AUS 1150 | Red Hat Container Images HTB 1151 | Red Hat Container Images Beta 1152 | Red Hat Enterprise Virtualization for IBM Power 1153 | Red Hat Developer Toolset (for RHEL Server EUS) 1154 | Red Hat OpenStack 1155 | Red Hat OpenShift Enterprise Client Tools 1156 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 1157 | Red Hat CloudForms Beta 1158 | Red Hat Enterprise Linux High Availability (for RHEL Server) 1159 | Red Hat Certification (for RHEL Server) 1160 | Red Hat Gluster Storage Management Console (for RHEL Server) 1161 | Red Hat OpenStack Beta 1162 | Red Hat Ceph Storage OSD 1163 | Red Hat Enterprise Virtualization 1164 | MRG Grid Execute 1165 | Red Hat Container Development Kit 1166 | Red Hat Enterprise Linux Workstation 1167 | Red Hat Enterprise Linux for SAP 1168 | MRG Realtime 1169 | Red Hat Enterprise Linux Server - AUS 1170 | JBoss Enterprise Application Platform 1171 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 1172 | Red Hat Container Images 1173 | Red Hat Enterprise MRG Messaging 3 for RHEL 7 1174 | Red Hat Enterprise Linux Resilient Storage (for IBM z Systems) 1175 | Red Hat Certificate System 1176 | Red Hat CloudForms 1177 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - AUS 1178 | Red Hat S-JIS Support (for RHEL Server) 1179 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 1180 | Red Hat OpenStack Beta Certification Test Suite 1181 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 1182 | Red Hat Enterprise Linux Atomic Host Beta 1183 | Red Hat Enterprise Linux EUS Compute Node High Performance Networking 1184 | Red Hat Enterprise Linux 7 Server High Touch Beta 1185 | Oracle Java (for Middleware) 1186 | MRG Management 1187 | Red Hat Enterprise Linux 7 Workstation High Touch Beta 1188 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 1189 | Red Hat Enterprise Linux 6 Workstation HTB 1190 | Red Hat JBoss A-MQ Clients 1191 | Red Hat Directory Server 1192 | Red Hat Enterprise Linux Server - Extended Life Cycle Support 1193 | Red Hat Enterprise Linux for IBM z Systems 1194 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 1195 | Red Hat Developer Toolset (for RHEL Server) 1196 | Red Hat Hardware Certification Test Suite 1197 | Red Hat Enterprise Linux Atomic Host HTB 1198 | Red Hat Software Collections Beta (for RHEL Workstation) 1199 | Red Hat Software Collections (for RHEL Workstation) 1200 | Oracle Java (for RHEL Workstation) 1201 | Red Hat Ceph Storage Calamari 1202 | Red Hat Enterprise MRG Messaging 1203 | Red Hat Enterprise Linux for SAP Hana 1204 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - AUS 1205 | MRG Grid 1206 | Oracle Java (for RHEL Compute Node) 1207 | Red Hat Enterprise Linux for Power, big endian 1208 | Red Hat Enterprise Linux 7 for IBM POWER High Touch Beta 1209 | Red Hat Storage 1210 | Red Hat Enterprise Linux EUS Compute Node Scalable File System 1211 | Red Hat Enterprise Linux Server for ARM Development Preview 1212 | Red Hat Software Collections Beta (for RHEL Client) 1213 | Red Hat Enterprise Linux Scalable File System (for RHEL Compute Node) 1214 | Red Hat Enterprise Linux Server 1215 | Red Hat Software Collections Beta (for RHEL Server) 1216 | SKU: ES0113909 1217 | Contract: 10649089 1218 | Pool ID: 8a85f9894bba16dc014bccdd905a5e23 1219 | Provides Management: Yes 1220 | Available: Unlimited 1221 | Suggested: 1 1222 | Service Level: Self-Support 1223 | Service Type: L1-L3 1224 | Subscription Type: Standard 1225 | Ends: 02/26/2016 1226 | System Type: Virtual 1227 | 1228 | Subscription Name: Employee SKU 1229 | Provides: Oracle Java (for RHEL Server) - AUS 1230 | Oracle Java (for RHEL Client) 1231 | Red Hat Enterprise Linux 7 High Availability High Touch Beta 1232 | Red Hat Enterprise Linux High Availability (for IBM z Systems) 1233 | Red Hat Enterprise Linux 6 Server HTB 1234 | Red Hat EUCJP Support (for RHEL Server) 1235 | Red Hat Enterprise Linux for Power, little endian 1236 | Red Hat Enterprise Linux EUS Compute Node 1237 | Red Hat Enterprise Linux for Power, big endian - Extended Update Support 1238 | Red Hat OpenShift Enterprise JBoss EAP add-on 1239 | Oracle Java (for RHEL Server) - Extended Update Support 1240 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - AUS 1241 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 1242 | JBoss Enterprise Web Server 1243 | Red Hat Ceph Storage MON 1244 | JBoss Enterprise Web Platform 1245 | Red Hat Enterprise Linux 7 Load Balancer High Touch Beta 1246 | Red Hat OpenShift Enterprise Infrastructure Beta 1247 | Kernel Derivative Works for Bluegene/Q 1248 | Oracle Java (for RHEL Compute Node) - Extended Update Support 1249 | Red Hat Enterprise Linux 7 for HPC Compute Node High Touch Beta 1250 | Red Hat Enterprise Linux Scalable File System (for RHEL Workstation) 1251 | Red Hat Enterprise Linux Desktop 1252 | OLD Red Hat Enterprise Linux Server for ARM Development Preview 1253 | Red Hat Enterprise Linux for IBM z Systems - Extended Update Support 1254 | JBoss Enterprise Application Platform - ELS 1255 | Red Hat OpenShift Enterprise Client Tools Beta 1256 | Atomic Enterprise Platform Beta 1257 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 1258 | Red Hat OpenShift Enterprise JBoss FUSE add-on 1259 | Red Hat Ceph Storage 1260 | Red Hat Cloud Infrastructure 1261 | Red Hat Certificate System with Advanced Access 1262 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 1263 | Red Hat OpenShift Enterprise Infrastructure 1264 | Red Hat Enterprise Linux 7 Desktop High Touch Beta 1265 | Red Hat Software Collections (for RHEL Server) 1266 | Red Hat Enterprise Linux 7 for IBM z Systems High Touch Beta 1267 | Red Hat Enterprise Linux High Performance Networking (for RHEL for IBM POWER) 1268 | Red Hat Gluster Storage Nagios Server 1269 | Red Hat Enterprise Linux Server for ARM Beta 1270 | Red Hat Gluster Storage Server for On-premise 1271 | Red Hat Beta 1272 | Red Hat Enterprise Linux Server - Extended Update Support 1273 | Red Hat OpenShift Enterprise 1274 | Red Hat OpenShift Enterprise Application Node Beta 1275 | Red Hat OpenShift Enterprise JBoss A-MQ add-on 1276 | Oracle Java (for RHEL Server) 1277 | Red Hat Enterprise Linux for Real Time 1278 | Red Hat Enterprise Linux Atomic Host 1279 | Red Hat Developer Toolset (for RHEL Workstation) 1280 | Red Hat OpenShift Enterprise JBoss EAP add-on Beta 1281 | Red Hat OpenShift Enterprise Application Node 1282 | Kernel Derivative Works for HPC for Power Systems 1283 | Red Hat Enterprise Linux for Scientific Computing 1284 | Red Hat Enterprise Linux 7 Resilient Storage High Touch Beta 1285 | Red Hat Enterprise Linux High Availability (for RHEL Server) - AUS 1286 | Red Hat Container Images HTB 1287 | Red Hat Container Images Beta 1288 | Red Hat Enterprise Virtualization for IBM Power 1289 | Red Hat Developer Toolset (for RHEL Server EUS) 1290 | Red Hat OpenStack 1291 | Red Hat OpenShift Enterprise Client Tools 1292 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 1293 | Red Hat CloudForms Beta 1294 | Red Hat Enterprise Linux High Availability (for RHEL Server) 1295 | Red Hat Certification (for RHEL Server) 1296 | Red Hat Gluster Storage Management Console (for RHEL Server) 1297 | Red Hat OpenStack Beta 1298 | Red Hat Ceph Storage OSD 1299 | Red Hat Enterprise Virtualization 1300 | MRG Grid Execute 1301 | Red Hat Container Development Kit 1302 | Red Hat Enterprise Linux Workstation 1303 | Red Hat Enterprise Linux for SAP 1304 | MRG Realtime 1305 | Red Hat Enterprise Linux Server - AUS 1306 | JBoss Enterprise Application Platform 1307 | Red Hat Enterprise Linux High Performance Networking (for RHEL Compute Node) 1308 | Red Hat Container Images 1309 | Red Hat Enterprise MRG Messaging 3 for RHEL 7 1310 | Red Hat Enterprise Linux Resilient Storage (for IBM z Systems) 1311 | Red Hat Certificate System 1312 | Red Hat CloudForms 1313 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - AUS 1314 | Red Hat S-JIS Support (for RHEL Server) 1315 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 1316 | Red Hat OpenStack Beta Certification Test Suite 1317 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 1318 | Red Hat Enterprise Linux Atomic Host Beta 1319 | Red Hat Enterprise Linux EUS Compute Node High Performance Networking 1320 | Red Hat Enterprise Linux 7 Server High Touch Beta 1321 | Oracle Java (for Middleware) 1322 | MRG Management 1323 | Red Hat Enterprise Linux 7 Workstation High Touch Beta 1324 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 1325 | Red Hat Enterprise Linux 6 Workstation HTB 1326 | Red Hat JBoss A-MQ Clients 1327 | Red Hat Directory Server 1328 | Red Hat Enterprise Linux Server - Extended Life Cycle Support 1329 | Red Hat Enterprise Linux for IBM z Systems 1330 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 1331 | Red Hat Developer Toolset (for RHEL Server) 1332 | Red Hat Hardware Certification Test Suite 1333 | Red Hat Enterprise Linux Atomic Host HTB 1334 | Red Hat Software Collections Beta (for RHEL Workstation) 1335 | Red Hat Software Collections (for RHEL Workstation) 1336 | Oracle Java (for RHEL Workstation) 1337 | Red Hat Ceph Storage Calamari 1338 | Red Hat Enterprise MRG Messaging 1339 | Red Hat Enterprise Linux for SAP Hana 1340 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - AUS 1341 | MRG Grid 1342 | Oracle Java (for RHEL Compute Node) 1343 | Red Hat Enterprise Linux for Power, big endian 1344 | Red Hat Enterprise Linux 7 for IBM POWER High Touch Beta 1345 | Red Hat Storage 1346 | Red Hat Enterprise Linux EUS Compute Node Scalable File System 1347 | Red Hat Enterprise Linux Server for ARM Development Preview 1348 | Red Hat Software Collections Beta (for RHEL Client) 1349 | Red Hat Enterprise Linux Scalable File System (for RHEL Compute Node) 1350 | Red Hat Enterprise Linux Server 1351 | Red Hat Software Collections Beta (for RHEL Server) 1352 | SKU: ES0113909 1353 | Contract: 10254446 1354 | Pool ID: 8a85f9874011071c01407da00b3f7c5e 1355 | Provides Management: Yes 1356 | Available: 100 1357 | Suggested: 1 1358 | Service Level: Self-Support 1359 | Service Type: L1-L3 1360 | Subscription Type: Standard 1361 | Ends: 12/31/2021 1362 | System Type: Physical 1363 | 1364 | Subscription Name: 30 Day Self-Supported Red Hat Enterprise Linux Developer Workstation Evaluation 1365 | Provides: Red Hat Software Collections Beta (for RHEL Workstation) 1366 | Oracle Java (for RHEL Client) 1367 | Red Hat Software Collections (for RHEL Workstation) 1368 | Oracle Java (for RHEL Workstation) 1369 | Red Hat Software Collections (for RHEL Server) 1370 | Red Hat Enterprise Linux Workstation 1371 | MRG Realtime 1372 | Red Hat Beta 1373 | Red Hat Enterprise Linux Server - Extended Update Support 1374 | Oracle Java (for RHEL Server) - Extended Update Support 1375 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) - Extended Update Support 1376 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) 1377 | Oracle Java (for RHEL Server) 1378 | Red Hat Enterprise Linux for Real Time 1379 | Red Hat Developer Toolset (for RHEL Workstation) 1380 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) 1381 | Red Hat Enterprise Linux Resilient Storage (for RHEL Server) - Extended Update Support 1382 | Red Hat Enterprise Linux Desktop 1383 | Red Hat Enterprise Linux High Availability (for RHEL Server) - Extended Update Support 1384 | Red Hat Developer Toolset (for RHEL Server EUS) 1385 | Red Hat Software Collections Beta (for RHEL Client) 1386 | Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support 1387 | Red Hat Software Collections (for RHEL Client) 1388 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support 1389 | Red Hat Enterprise Linux High Availability (for RHEL Server) 1390 | Red Hat Enterprise Linux Server 1391 | Red Hat Software Collections Beta (for RHEL Server) 1392 | Red Hat Enterprise Linux High Performance Networking (for RHEL Server) 1393 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 1394 | Red Hat Developer Toolset (for RHEL Server) 1395 | SKU: RH3414706 1396 | Contract: 10825143 1397 | Pool ID: 8a85f981511b954701511cb111e25525 1398 | Provides Management: Yes 1399 | Available: 1 1400 | Suggested: 1 1401 | Service Level: Self-Support 1402 | Service Type: L1-L3 1403 | Subscription Type: Standard 1404 | Ends: 12/17/2015 1405 | System Type: Virtual 1406 | 1407 | Subscription Name: Red Hat Enterprise Linux Beta for Power 1408 | Provides: 1409 | SKU: RH00070 1410 | Contract: 10712013 1411 | Pool ID: 8a85f9814d9b4387014dbae4df946c05 1412 | Provides Management: No 1413 | Available: 92 1414 | Suggested: 1 1415 | Service Level: Self-Support 1416 | Service Type: L1-L3 1417 | Subscription Type: Instance Based 1418 | Ends: 06/02/2016 1419 | System Type: Physical 1420 | 1421 | Subscription Name: 60 Day Self-Supported Red Hat Enterprise Linux OpenStack Platform Preview 1422 | Provides: Red Hat Beta 1423 | Red Hat OpenStack Beta 1424 | Red Hat Software Collections (for RHEL Server) 1425 | Oracle Java (for RHEL Server) 1426 | Red Hat OpenStack 1427 | Red Hat Enterprise MRG Messaging 1428 | Red Hat Enterprise Linux High Availability (for RHEL Server) 1429 | Red Hat Enterprise Linux Server 1430 | Red Hat Software Collections Beta (for RHEL Server) 1431 | Red Hat Enterprise Linux Load Balancer (for RHEL Server) 1432 | SKU: SER0406 1433 | Contract: 10823521 1434 | Pool ID: 8a85f981511033370151146c2d3b3728 1435 | Provides Management: No 1436 | Available: Unlimited 1437 | Suggested: 1 1438 | Service Level: Self-Support 1439 | Service Type: L1-L3 1440 | Subscription Type: Standard 1441 | Ends: 01/15/2016 1442 | System Type: Virtual 1443 | 1444 | --------------------------------------------------------------------------------