diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-26 14:35:14 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-26 14:35:14 -0500 |
commit | 7326cbc58d39ff44f157d289e3870c40aa53a772 (patch) | |
tree | 5a2e96110f0892fbb9f7e34b7a2278c1cf630250 | |
parent | 55a2f757ea3d81860cee54f30264275d059f754a (diff) | |
parent | 2f11e4a8efd4e2ce1b788ee47acfaa45e358be57 (diff) | |
download | openshift-7326cbc58d39ff44f157d289e3870c40aa53a772.tar.gz openshift-7326cbc58d39ff44f157d289e3870c40aa53a772.tar.bz2 openshift-7326cbc58d39ff44f157d289e3870c40aa53a772.tar.xz openshift-7326cbc58d39ff44f157d289e3870c40aa53a772.zip |
Merge pull request #1499 from abutcher/readme-warnings
Add warnings for bin/cluster and READMEs
-rw-r--r-- | README_AWS.md | 1 | ||||
-rw-r--r-- | README_GCE.md | 1 | ||||
-rw-r--r-- | README_libvirt.md | 2 | ||||
-rw-r--r-- | README_openstack.md | 2 | ||||
-rw-r--r-- | README_vagrant.md | 2 | ||||
-rwxr-xr-x | bin/cluster | 7 |
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 7c02c522d..8b46252b3 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', |