From 0ff873de7ba06ca047d543bb5bd73029ac4ffeb1 Mon Sep 17 00:00:00 2001 From: Andrew Butcher Date: Fri, 19 Feb 2016 11:39:14 -0500 Subject: Add byo examples for network cidr and api/console ports. --- inventory/byo/hosts.aep.example | 10 ++++++++++ inventory/byo/hosts.origin.example | 10 ++++++++++ inventory/byo/hosts.ose.example | 10 ++++++++++ 3 files changed, 30 insertions(+) (limited to 'inventory/byo') diff --git a/inventory/byo/hosts.aep.example b/inventory/byo/hosts.aep.example index 8cd4caac4..485b02b4b 100644 --- a/inventory/byo/hosts.aep.example +++ b/inventory/byo/hosts.aep.example @@ -157,6 +157,16 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Disable the OpenShift SDN plugin # openshift_use_openshift_sdn=False +# Configure SDN cluster network CIDR block. This network block should +# be a private block and should not conflict with existing network +# blocks in your infrastructure that pods may require access to. +# Can not be changed after deployment. +#osm_cluster_network_cidr=10.1.0.0/16 + +# Configure master API and console ports. +#openshift_master_api_port=8443 +#openshift_master_console_port=8443 + # set RPM version for debugging purposes #openshift_pkg_version=-3.1.0.0 diff --git a/inventory/byo/hosts.origin.example b/inventory/byo/hosts.origin.example index fffdcaab4..5d85addb5 100644 --- a/inventory/byo/hosts.origin.example +++ b/inventory/byo/hosts.origin.example @@ -162,6 +162,16 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Disable the OpenShift SDN plugin # openshift_use_openshift_sdn=False +# Configure SDN cluster network CIDR block. This network block should +# be a private block and should not conflict with existing network +# blocks in your infrastructure that pods may require access to. +# Can not be changed after deployment. +#osm_cluster_network_cidr=10.1.0.0/16 + +# Configure master API and console ports. +#openshift_master_api_port=8443 +#openshift_master_console_port=8443 + # set RPM version for debugging purposes #openshift_pkg_version=-1.1 diff --git a/inventory/byo/hosts.ose.example b/inventory/byo/hosts.ose.example index 233c1c8e2..b2aaeaf84 100644 --- a/inventory/byo/hosts.ose.example +++ b/inventory/byo/hosts.ose.example @@ -158,6 +158,16 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Disable the OpenShift SDN plugin # openshift_use_openshift_sdn=False +# Configure SDN cluster network CIDR block. This network block should +# be a private block and should not conflict with existing network +# blocks in your infrastructure that pods may require access to. +# Can not be changed after deployment. +#osm_cluster_network_cidr=10.1.0.0/16 + +# Configure master API and console ports. +#openshift_master_api_port=8443 +#openshift_master_console_port=8443 + # set RPM version for debugging purposes #openshift_pkg_version=-3.1.0.0 -- cgit v1.2.3 From ad62a606342a0301fcba02ed1e3b3d7badaef236 Mon Sep 17 00:00:00 2001 From: Andrew Butcher Date: Thu, 25 Feb 2016 11:08:20 -0500 Subject: Add host subnet length example. --- inventory/byo/hosts.aep.example | 4 ++++ inventory/byo/hosts.origin.example | 4 ++++ inventory/byo/hosts.ose.example | 4 ++++ 3 files changed, 12 insertions(+) (limited to 'inventory/byo') diff --git a/inventory/byo/hosts.aep.example b/inventory/byo/hosts.aep.example index 485b02b4b..2bb50e97c 100644 --- a/inventory/byo/hosts.aep.example +++ b/inventory/byo/hosts.aep.example @@ -163,6 +163,10 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Can not be changed after deployment. #osm_cluster_network_cidr=10.1.0.0/16 +# Configure number of bits to allocate to each host’s subnet e.g. 8 +# would mean a /24 network on the host. +#osm_host_subnet_length=8 + # Configure master API and console ports. #openshift_master_api_port=8443 #openshift_master_console_port=8443 diff --git a/inventory/byo/hosts.origin.example b/inventory/byo/hosts.origin.example index 5d85addb5..c529a46d5 100644 --- a/inventory/byo/hosts.origin.example +++ b/inventory/byo/hosts.origin.example @@ -168,6 +168,10 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Can not be changed after deployment. #osm_cluster_network_cidr=10.1.0.0/16 +# Configure number of bits to allocate to each host’s subnet e.g. 8 +# would mean a /24 network on the host. +#osm_host_subnet_length=8 + # Configure master API and console ports. #openshift_master_api_port=8443 #openshift_master_console_port=8443 diff --git a/inventory/byo/hosts.ose.example b/inventory/byo/hosts.ose.example index b2aaeaf84..a40082dcb 100644 --- a/inventory/byo/hosts.ose.example +++ b/inventory/byo/hosts.ose.example @@ -164,6 +164,10 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Can not be changed after deployment. #osm_cluster_network_cidr=10.1.0.0/16 +# Configure number of bits to allocate to each host’s subnet e.g. 8 +# would mean a /24 network on the host. +#osm_host_subnet_length=8 + # Configure master API and console ports. #openshift_master_api_port=8443 #openshift_master_console_port=8443 -- cgit v1.2.3