mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 09:22:44 +00:00
Merge pull request #16986 from pmorie/gce-sc
Auto commit by PR queue bot
This commit is contained in:
commit
18c74de9a8
@ -113,7 +113,7 @@ if [[ "${ENABLE_DAEMONSETS}" == "true" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Admission Controllers to invoke prior to persisting objects in cluster
|
# Admission Controllers to invoke prior to persisting objects in cluster
|
||||||
ADMISSION_CONTROL=NamespaceLifecycle,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota
|
ADMISSION_CONTROL=NamespaceLifecycle,LimitRanger,ServiceAccount,ResourceQuota
|
||||||
|
|
||||||
# Optional: if set to true kube-up will automatically check for existing resources and clean them up.
|
# Optional: if set to true kube-up will automatically check for existing resources and clean them up.
|
||||||
KUBE_UP_AUTOMATIC_CLEANUP=${KUBE_UP_AUTOMATIC_CLEANUP:-false}
|
KUBE_UP_AUTOMATIC_CLEANUP=${KUBE_UP_AUTOMATIC_CLEANUP:-false}
|
||||||
|
@ -713,7 +713,7 @@ function kube-up {
|
|||||||
|
|
||||||
# curl in mavericks is borked.
|
# curl in mavericks is borked.
|
||||||
secure=""
|
secure=""
|
||||||
if which sw_vers > /dev/null; then
|
if which sw_vers >& /dev/null; then
|
||||||
if [[ $(sw_vers | grep ProductVersion | awk '{print $2}') = "10.9."* ]]; then
|
if [[ $(sw_vers | grep ProductVersion | awk '{print $2}') = "10.9."* ]]; then
|
||||||
secure="--insecure"
|
secure="--insecure"
|
||||||
fi
|
fi
|
||||||
|
@ -225,6 +225,7 @@ func ModifyConfig(configAccess ConfigAccess, newConfig clientcmdapi.Config, rela
|
|||||||
|
|
||||||
configToWrite := getConfigFromFileOrDie(destinationFile)
|
configToWrite := getConfigFromFileOrDie(destinationFile)
|
||||||
t := *cluster
|
t := *cluster
|
||||||
|
|
||||||
configToWrite.Clusters[key] = &t
|
configToWrite.Clusters[key] = &t
|
||||||
configToWrite.Clusters[key].LocationOfOrigin = destinationFile
|
configToWrite.Clusters[key].LocationOfOrigin = destinationFile
|
||||||
if relativizePaths {
|
if relativizePaths {
|
||||||
@ -429,6 +430,10 @@ func getConfigFromFileOrDie(filename string) *clientcmdapi.Config {
|
|||||||
return clientcmdapi.NewConfig()
|
return clientcmdapi.NewConfig()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if config.Clusters == nil {
|
||||||
|
config.Clusters = map[string]*clientcmdapi.Cluster{}
|
||||||
|
}
|
||||||
|
|
||||||
return config
|
return config
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user