Merge pull request #680 from mfojtik/kube_env

Allow to set global KUBERNETES_PROVIDER env var
This commit is contained in:
brendandburns 2014-07-29 15:04:38 -07:00
commit 28668055c7

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}