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
7296a5bd
Commit
7296a5bd
authored
Aug 14, 2015
by
Jerzy Szczepkowski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12708 from Huawei-PaaS/issue_cluster_kubernetes_auth
Replace "~/.kubernetes_auth" with "${KUBECONFIG:-$DEFAULT_KUBECONFIG}" in util.sh
parents
f29d5211
b6d7a173
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
util.sh
cluster/azure/util.sh
+1
-1
util.sh
cluster/rackspace/util.sh
+1
-1
util.sh
cluster/ubuntu/util.sh
+1
-1
util.sh
cluster/vsphere/util.sh
+1
-1
No files found.
cluster/azure/util.sh
View file @
7296a5bd
...
...
@@ -493,7 +493,7 @@ function kube-down {
# echo
# echo " https://${KUBE_MASTER_IP}"
# echo
# echo "The user name and password to use is located in
~/.kubernetes_auth
."
# echo "The user name and password to use is located in
${KUBECONFIG:-$DEFAULT_KUBECONFIG}
."
# echo
#}
...
...
cluster/rackspace/util.sh
View file @
7296a5bd
...
...
@@ -371,7 +371,7 @@ kube-up() {
echo
echo
" https://
${
KUBE_MASTER_IP
}
"
echo
echo
"The user name and password to use is located in
~/.kubernetes_auth
."
echo
"The user name and password to use is located in
${
KUBECONFIG
:-
$DEFAULT_KUBECONFIG
}
."
echo
echo
"Security note: The server above uses a self signed certificate. This is"
echo
" subject to
\"
Man in the middle
\"
type attacks."
...
...
cluster/ubuntu/util.sh
View file @
7296a5bd
...
...
@@ -261,7 +261,7 @@ EOF
}
# Ensure that we have a password created for validating to the master. Will
# read from $
HOME/.kubernetes_auth
if available.
# read from $
{KUBECONFIG:-$DEFAULT_KUBECONFIG}
if available.
#
# Vars set:
# KUBE_USER
...
...
cluster/vsphere/util.sh
View file @
7296a5bd
...
...
@@ -441,7 +441,7 @@ function kube-push {
echo
echo
" https://
${
KUBE_MASTER_IP
}
"
echo
echo
"The user name and password to use is located in
~/.kubernetes_auth
."
echo
"The user name and password to use is located in
${
KUBECONFIG
:-
$DEFAULT_KUBECONFIG
}
."
echo
}
...
...
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