summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-02-25 12:54:53 -0500
committerAndrew Butcher <abutcher@redhat.com>2016-02-25 15:22:08 -0500
commit2f11e4a8efd4e2ce1b788ee47acfaa45e358be57 (patch)
tree32b710a5074facefd47f41195e9e71e985c931da
parent65b9391f661f463255e4f705a2c58fc54cc1cf5e (diff)
downloadopenshift-2f11e4a8efd4e2ce1b788ee47acfaa45e358be57.tar.gz
openshift-2f11e4a8efd4e2ce1b788ee47acfaa45e358be57.tar.bz2
openshift-2f11e4a8efd4e2ce1b788ee47acfaa45e358be57.tar.xz
openshift-2f11e4a8efd4e2ce1b788ee47acfaa45e358be57.zip
Add warnings to bin/cluster and READMEs
-rw-r--r--README_AWS.md1
-rw-r--r--README_GCE.md1
-rw-r--r--README_libvirt.md2
-rw-r--r--README_openstack.md2
-rw-r--r--README_vagrant.md2
-rwxr-xr-xbin/cluster7
6 files changed, 15 insertions, 0 deletions
diff --git a/README_AWS.md b/README_AWS.md
index 4a2399d42..978905f68 100644
--- a/README_AWS.md
+++ b/README_AWS.md
@@ -1,3 +1,4 @@
+:warning: **WARNING** :warning: This feature is community supported and has not been tested by Red Hat. Visit [docs.openshift.com](https://docs.openshift.com) for [OpenShift Enterprise](https://docs.openshift.com/enterprise/latest/install_config/install/index.html) or [OpenShift Origin](https://docs.openshift.org/latest/install_config/install/index.html) supported installation docs.
AWS Setup Instructions
======================
diff --git a/README_GCE.md b/README_GCE.md
index 9439b569e..df9942f24 100644
--- a/README_GCE.md
+++ b/README_GCE.md
@@ -1,3 +1,4 @@
+:warning: **WARNING** :warning: This feature is community supported and has not been tested by Red Hat. Visit [docs.openshift.com](https://docs.openshift.com) for [OpenShift Enterprise](https://docs.openshift.com/enterprise/latest/install_config/install/index.html) or [OpenShift Origin](https://docs.openshift.org/latest/install_config/install/index.html) supported installation docs.
GCE Setup Instructions
======================
diff --git a/README_libvirt.md b/README_libvirt.md
index 3e5df2dca..b244db7ad 100644
--- a/README_libvirt.md
+++ b/README_libvirt.md
@@ -1,3 +1,5 @@
+:warning: **WARNING** :warning: This feature is community supported and has not been tested by Red Hat. Visit [docs.openshift.com](https://docs.openshift.com) for [OpenShift Enterprise](https://docs.openshift.com/enterprise/latest/install_config/install/index.html) or [OpenShift Origin](https://docs.openshift.org/latest/install_config/install/index.html) supported installation docs.
+
LIBVIRT Setup instructions
==========================
diff --git a/README_openstack.md b/README_openstack.md
index 9a2b627e2..e3cc7cc93 100644
--- a/README_openstack.md
+++ b/README_openstack.md
@@ -1,3 +1,5 @@
+:warning: **WARNING** :warning: This feature is community supported and has not been tested by Red Hat. Visit [docs.openshift.com](https://docs.openshift.com) for [OpenShift Enterprise](https://docs.openshift.com/enterprise/latest/install_config/install/index.html) or [OpenShift Origin](https://docs.openshift.org/latest/install_config/install/index.html) supported installation docs.
+
OPENSTACK Setup instructions
============================
diff --git a/README_vagrant.md b/README_vagrant.md
index 73fd31476..a0bb0afbb 100644
--- a/README_vagrant.md
+++ b/README_vagrant.md
@@ -1,3 +1,5 @@
+:warning: **WARNING** :warning: This feature is community supported and has not been tested by Red Hat. Visit [docs.openshift.com](https://docs.openshift.com) for [OpenShift Enterprise](https://docs.openshift.com/enterprise/latest/install_config/install/index.html) or [OpenShift Origin](https://docs.openshift.org/latest/install_config/install/index.html) supported installation docs.
+
Requirements
------------
- ansible (the latest 1.9 release is preferred, but any version greater than 1.9.1 should be sufficient).
diff --git a/bin/cluster b/bin/cluster
index c3b101c98..ecb8bc58e 100755
--- a/bin/cluster
+++ b/bin/cluster
@@ -264,6 +264,13 @@ if __name__ == '__main__':
providers = gce,aws,libvirt,openstack
"""
+ warning = ("================================================================================\n"
+ "ATTENTION: You are running a community supported utility that has not been\n"
+ "tested by Red Hat. Visit https://docs.openshift.com for supported installation\n"
+ "instructions.\n"
+ "================================================================================\n\n")
+ sys.stderr.write(warning)
+
cluster_config = ConfigParser.SafeConfigParser({
'cluster_ids': 'marketing,sales',
'validate_cluster_ids': 'False',