Allow to set global KUBERNETES_PROVIDER env var

This commit is contained in:
Michal Fojtik 2014-07-29 14:31:37 +02:00
parent f87bd6b8f9
commit 18f32cf03f

View File

@ -14,8 +14,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Set provider independent environment variables
# Set the default provider of Kubernetes cluster to know where to load provider-specific scripts
# You can override the default provider by exporting the KUBERNETES_PROVIDER
# variable in your bashrc
#
# The valid values: 'gce', 'azure' and 'vagrant'
# Set provider of Kubernetes cluster to know where to load provider-specific scripts, values: gce, vagrant, etc.
KUBERNETES_PROVIDER="gce"
#KUBERNETES_PROVIDER="vagrant"
KUBERNETES_PROVIDER=${KUBERNETES_PROVIDER:-gce}