Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
36cb9d05
Commit
36cb9d05
authored
Mar 09, 2016
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #22728 from spxtr/tidy-shell
Auto commit by PR queue bot
parents
3f7f1677
9845639e
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
32 additions
and
90 deletions
+32
-90
util.sh
cluster/aws/util.sh
+1
-0
upgrade.sh
cluster/gce/upgrade.sh
+0
-1
kube-down.sh
cluster/kube-down.sh
+0
-1
kube-env.sh
cluster/kube-env.sh
+0
-52
kube-push.sh
cluster/kube-push.sh
+0
-1
kube-up.sh
cluster/kube-up.sh
+0
-1
kube-util.sh
cluster/kube-util.sh
+9
-8
kubectl.sh
cluster/kubectl.sh
+0
-1
util.sh
cluster/lib/util.sh
+8
-0
log-dump.sh
cluster/log-dump.sh
+0
-1
kube-up.sh
cluster/rackspace/kube-up.sh
+1
-2
test-e2e.sh
cluster/test-e2e.sh
+1
-1
validate-cluster.sh
cluster/validate-cluster.sh
+1
-1
build-release.sh
hack/e2e-internal/build-release.sh
+1
-2
e2e-cluster-size.sh
hack/e2e-internal/e2e-cluster-size.sh
+1
-2
e2e-down.sh
hack/e2e-internal/e2e-down.sh
+1
-2
e2e-push.sh
hack/e2e-internal/e2e-push.sh
+1
-2
e2e-status.sh
hack/e2e-internal/e2e-status.sh
+1
-2
e2e-up.sh
hack/e2e-internal/e2e-up.sh
+1
-2
e2e-upgrade.sh
hack/e2e-internal/e2e-upgrade.sh
+1
-2
ginkgo-e2e.sh
hack/ginkgo-e2e.sh
+1
-3
update-all.sh
hack/update-all.sh
+1
-1
verify-all.sh
hack/verify-all.sh
+1
-1
common.sh
test/kubemark/common.sh
+1
-1
No files found.
cluster/aws/util.sh
View file @
36cb9d05
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/../..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/../..
source
"
${
KUBE_ROOT
}
/cluster/aws/
${
KUBE_CONFIG_FILE
-
"config-default.sh"
}
"
source
"
${
KUBE_ROOT
}
/cluster/aws/
${
KUBE_CONFIG_FILE
-
"config-default.sh"
}
"
source
"
${
KUBE_ROOT
}
/cluster/common.sh"
source
"
${
KUBE_ROOT
}
/cluster/common.sh"
source
"
${
KUBE_ROOT
}
/cluster/lib/util.sh"
ALLOCATE_NODE_CIDRS
=
true
ALLOCATE_NODE_CIDRS
=
true
...
...
cluster/gce/upgrade.sh
View file @
36cb9d05
...
@@ -28,7 +28,6 @@ if [[ "${KUBERNETES_PROVIDER:-gce}" != "gce" ]]; then
...
@@ -28,7 +28,6 @@ if [[ "${KUBERNETES_PROVIDER:-gce}" != "gce" ]]; then
fi
fi
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/../..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/../..
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
function
usage
()
{
function
usage
()
{
...
...
cluster/kube-down.sh
View file @
36cb9d05
...
@@ -26,7 +26,6 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
...
@@ -26,7 +26,6 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
fi
fi
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
echo
"Bringing down cluster using provider:
$KUBERNETES_PROVIDER
"
echo
"Bringing down cluster using provider:
$KUBERNETES_PROVIDER
"
...
...
cluster/kube-env.sh
deleted
100755 → 0
View file @
3f7f1677
#!/bin/bash
# Copyright 2014 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# 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', 'gke', 'aws', 'vagrant', 'vsphere', 'libvirt-coreos', 'juju'
KUBERNETES_PROVIDER
=
${
KUBERNETES_PROVIDER
:-
gce
}
# Some useful colors.
if
[[
-z
"
${
color_start
-
}
"
]]
;
then
declare
-r
color_start
=
"
\0
33["
declare
-r
color_red
=
"
${
color_start
}
0;31m"
declare
-r
color_yellow
=
"
${
color_start
}
0;33m"
declare
-r
color_green
=
"
${
color_start
}
0;32m"
declare
-r
color_norm
=
"
${
color_start
}
0m"
fi
# Returns the server version as MMmmpp, with MM as the major
# component, mm the minor component, and pp as the patch
# revision. e.g. 0.7.1 is echoed as 701, and 1.0.11 would be
# 10011. (This makes for easy integer comparison in bash.)
function
kube_server_version
()
{
local
server_version
local
major
local
minor
local
patch
# This sed expression is the POSIX BRE to match strings like:
# Server Version: &version.Info{Major:"0", Minor:"7+", GitVersion:"v0.7.0-dirty", GitCommit:"ad44234f7152e9c66bc2853575445c7071335e57", GitTreeState:"dirty"}
# and capture the GitVersion portion (which has the patch level)
server_version
=
$(${
KUBECTL
}
--match-server-version
=
false
version |
grep
"Server Version:"
)
read
major minor patch < <
(
echo
${
server_version
}
|
\
sed
"s/.*GitVersion:
\"
v
\(
[0-9]
\{
1,
\}\)\.\(
[0-9]
\{
1,
\}\)\.\(
[0-9]
\{
1,
\}\)
.*/
\1
\2
\3
/"
)
printf
"%02d%02d%02d"
${
major
}
${
minor
}
${
patch
}
|
sed
's/^0*//'
}
cluster/kube-push.sh
View file @
36cb9d05
...
@@ -29,7 +29,6 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
...
@@ -29,7 +29,6 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
fi
fi
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
function
usage
()
{
function
usage
()
{
...
...
cluster/kube-up.sh
View file @
36cb9d05
...
@@ -31,7 +31,6 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
...
@@ -31,7 +31,6 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
fi
fi
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
...
...
cluster/kube-util.sh
View file @
36cb9d05
...
@@ -14,9 +14,12 @@
...
@@ -14,9 +14,12 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# A library of helper functions that each provider hosting Kubernetes must implement to use cluster/kube-*.sh scripts.
# This script contains skeletons of helper functions that each provider hosting
# Kubernetes must implement to use cluster/kube-*.sh scripts.
# It sets KUBERNETES_PROVIDER to its default value (gce) if it is unset, and
# then sources cluster/${KUBERNETES_PROVIDER}/util.sh.
KUBE
_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE
RNETES_PROVIDER
=
"
${
KUBERNETES_PROVIDER
:-
gce
}
"
# Must ensure that the following ENV vars are set
# Must ensure that the following ENV vars are set
function
detect-master
{
function
detect-master
{
...
@@ -91,10 +94,8 @@ function test-teardown {
...
@@ -91,10 +94,8 @@ function test-teardown {
echo
"TODO: test-teardown"
1>&2
echo
"TODO: test-teardown"
1>&2
}
}
# Providers util.sh scripts should define functions that override the above default functions impls
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
if
[
-n
"
${
KUBERNETES_PROVIDER
}
"
]
;
then
PROVIDER_UTILS
=
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
PROVIDER_UTILS
=
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
if
[
-f
${
PROVIDER_UTILS
}
]
;
then
if
[
-f
${
PROVIDER_UTILS
}
]
;
then
source
"
${
PROVIDER_UTILS
}
"
source
"
${
PROVIDER_UTILS
}
"
fi
fi
fi
cluster/kubectl.sh
View file @
36cb9d05
...
@@ -31,7 +31,6 @@ set -o pipefail
...
@@ -31,7 +31,6 @@ set -o pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
# Get the absolute path of the directory component of a file, i.e. the
# Get the absolute path of the directory component of a file, i.e. the
...
...
cluster/lib/util.sh
View file @
36cb9d05
...
@@ -25,3 +25,11 @@ kube::util::wait-for-jobs() {
...
@@ -25,3 +25,11 @@ kube::util::wait-for-jobs() {
return
${
fail
}
return
${
fail
}
}
}
# Some useful colors.
if
[[
-z
"
${
color_start
-
}
"
]]
;
then
declare
-r
color_start
=
"
\0
33["
declare
-r
color_red
=
"
${
color_start
}
0;31m"
declare
-r
color_yellow
=
"
${
color_start
}
0;33m"
declare
-r
color_green
=
"
${
color_start
}
0;32m"
declare
-r
color_norm
=
"
${
color_start
}
0m"
fi
cluster/log-dump.sh
View file @
36cb9d05
...
@@ -24,7 +24,6 @@ set -o pipefail
...
@@ -24,7 +24,6 @@ set -o pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
:
${
KUBE_CONFIG_FILE
:
=
"config-test.sh"
}
:
${
KUBE_CONFIG_FILE
:
=
"config-test.sh"
}
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
readonly
report_dir
=
"
${
1
:-
_artifacts
}
"
readonly
report_dir
=
"
${
1
:-
_artifacts
}
"
...
...
cluster/rackspace/kube-up.sh
View file @
36cb9d05
...
@@ -23,8 +23,7 @@
...
@@ -23,8 +23,7 @@
# exit on any error
# exit on any error
set
-e
set
-e
source
$(
dirname
$0
)
/../kube-env.sh
source
$(
dirname
$0
)
/../kube-util.sh
source
$(
dirname
$0
)
/../
$KUBERNETES_PROVIDER
/util.sh
echo
"Starting cluster using provider:
$KUBERNETES_PROVIDER
"
echo
"Starting cluster using provider:
$KUBERNETES_PROVIDER
"
...
...
cluster/test-e2e.sh
View file @
36cb9d05
...
@@ -22,7 +22,7 @@ set -o nounset
...
@@ -22,7 +22,7 @@ set -o nounset
set
-o
pipefail
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
source
"
${
KUBE_ROOT
}
/cluster/kube-
env
.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-
util
.sh"
echo
"Testing cluster with provider:
${
KUBERNETES_PROVIDER
}
"
1>&2
echo
"Testing cluster with provider:
${
KUBERNETES_PROVIDER
}
"
1>&2
...
...
cluster/validate-cluster.sh
View file @
36cb9d05
...
@@ -30,7 +30,7 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
...
@@ -30,7 +30,7 @@ if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
source
"
${
KUBE_ROOT
}
/cluster/env.sh"
fi
fi
source
"
${
KUBE_ROOT
}
/cluster/
kube-env
.sh"
source
"
${
KUBE_ROOT
}
/cluster/
lib/util
.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
ALLOWED_NOTREADY_NODES
=
"
${
ALLOWED_NOTREADY_NODES
:-
0
}
"
ALLOWED_NOTREADY_NODES
=
"
${
ALLOWED_NOTREADY_NODES
:-
0
}
"
...
...
hack/e2e-internal/build-release.sh
View file @
36cb9d05
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
...
...
hack/e2e-internal/e2e-cluster-size.sh
View file @
36cb9d05
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
...
...
hack/e2e-internal/e2e-down.sh
View file @
36cb9d05
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
...
...
hack/e2e-internal/e2e-push.sh
View file @
36cb9d05
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
...
...
hack/e2e-internal/e2e-status.sh
View file @
36cb9d05
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
...
...
hack/e2e-internal/e2e-up.sh
View file @
36cb9d05
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
...
...
hack/e2e-internal/e2e-upgrade.sh
View file @
36cb9d05
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
...
@@ -25,8 +25,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-env.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
...
...
hack/ginkgo-e2e.sh
View file @
36cb9d05
...
@@ -38,7 +38,7 @@ e2e_test=$(kube::util::find-binary "e2e.test")
...
@@ -38,7 +38,7 @@ e2e_test=$(kube::util::find-binary "e2e.test")
export
KUBECTL KUBE_CONFIG_FILE
export
KUBECTL KUBE_CONFIG_FILE
source
"
${
KUBE_ROOT
}
/cluster/kube-
env
.sh"
source
"
${
KUBE_ROOT
}
/cluster/kube-
util
.sh"
# ---- Do cloud-provider-specific setup
# ---- Do cloud-provider-specific setup
if
[[
-n
"
${
KUBERNETES_CONFORMANCE_TEST
:-}
"
]]
;
then
if
[[
-n
"
${
KUBERNETES_CONFORMANCE_TEST
:-}
"
]]
;
then
...
@@ -53,8 +53,6 @@ if [[ -n "${KUBERNETES_CONFORMANCE_TEST:-}" ]]; then
...
@@ -53,8 +53,6 @@ if [[ -n "${KUBERNETES_CONFORMANCE_TEST:-}" ]]; then
else
else
echo
"Setting up for KUBERNETES_PROVIDER=
\"
${
KUBERNETES_PROVIDER
}
\"
."
echo
"Setting up for KUBERNETES_PROVIDER=
\"
${
KUBERNETES_PROVIDER
}
\"
."
source
"
${
KUBE_ROOT
}
/cluster/
${
KUBERNETES_PROVIDER
}
/util.sh"
prepare-e2e
prepare-e2e
detect-master
>
/dev/null
detect-master
>
/dev/null
...
...
hack/update-all.sh
View file @
36cb9d05
...
@@ -20,7 +20,7 @@ set -o nounset
...
@@ -20,7 +20,7 @@ set -o nounset
set
-o
pipefail
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
source
"
${
KUBE_ROOT
}
/cluster/
kube-env
.sh"
source
"
${
KUBE_ROOT
}
/cluster/
lib/util
.sh"
SILENT
=
true
SILENT
=
true
ALL
=
false
ALL
=
false
...
...
hack/verify-all.sh
View file @
36cb9d05
...
@@ -19,7 +19,7 @@ set -o nounset
...
@@ -19,7 +19,7 @@ set -o nounset
set
-o
pipefail
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
source
"
${
KUBE_ROOT
}
/cluster/
kube-env
.sh"
source
"
${
KUBE_ROOT
}
/cluster/
lib/util
.sh"
SILENT
=
true
SILENT
=
true
...
...
test/kubemark/common.sh
View file @
36cb9d05
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
source
"
${
KUBE_ROOT
}
/cluster/kubemark/config-default.sh"
source
"
${
KUBE_ROOT
}
/cluster/kubemark/config-default.sh"
source
"
${
KUBE_ROOT
}
/cluster/kubemark/util.sh"
source
"
${
KUBE_ROOT
}
/cluster/kubemark/util.sh"
source
"
${
KUBE_ROOT
}
/cluster/
kube-env
.sh"
source
"
${
KUBE_ROOT
}
/cluster/
lib/util
.sh"
detect-project &> /dev/null
detect-project &> /dev/null
export
PROJECT
export
PROJECT
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment