website/docs/user-guide/kubectl/kubectl_config_set-cluster.md

83 lines
3.1 KiB
Markdown
Raw Normal View History

2016-02-26 12:31:34 +00:00
<!-- BEGIN MUNGE: UNVERSIONED_WARNING -->
<!-- END MUNGE: UNVERSIONED_WARNING -->
## kubectl config set-cluster
Sets a cluster entry in kubeconfig
### Synopsis
Sets a cluster entry in kubeconfig.
Specifying a name that already exists will merge new fields on top of existing values for those fields.
```
kubectl config set-cluster NAME [--server=server] [--certificate-authority=path/to/certficate/authority] [--api-version=apiversion] [--insecure-skip-tls-verify=true]
```
### Examples
```
# Set only the server field on the e2e cluster entry without touching other values.
2016-03-07 16:51:25 +00:00
kubectl config set-cluster e2e --server=https://1.2.3.4
2016-02-26 12:31:34 +00:00
# Embed certificate authority data for the e2e cluster entry
2016-03-07 16:51:25 +00:00
kubectl config set-cluster e2e --certificate-authority=~/.kube/e2e/kubernetes.ca.crt
2016-02-26 12:31:34 +00:00
# Disable cert checking for the dev cluster entry
2016-03-07 16:51:25 +00:00
kubectl config set-cluster e2e --insecure-skip-tls-verify=true
2016-02-26 12:31:34 +00:00
```
### Options
```
--api-version="": api-version for the cluster entry in kubeconfig
--certificate-authority="": path to certificate-authority for the cluster entry in kubeconfig
2016-03-07 16:51:25 +00:00
--embed-certs[=false]: embed-certs for the cluster entry in kubeconfig
--insecure-skip-tls-verify[=false]: insecure-skip-tls-verify for the cluster entry in kubeconfig
2016-02-26 12:31:34 +00:00
--server="": server for the cluster entry in kubeconfig
```
### Options inherited from parent commands
```
--alsologtostderr[=false]: log to standard error as well as files
2016-03-07 16:51:25 +00:00
--client-certificate="": Path to a client certificate file for TLS.
2016-02-26 12:31:34 +00:00
--client-key="": Path to a client key file for TLS.
--cluster="": The name of the kubeconfig cluster to use
--context="": The name of the kubeconfig context to use
--kubeconfig="": use a particular kubeconfig file
--log-backtrace-at=:0: when logging hits line file:N, emit a stack trace
--log-dir="": If non-empty, write log files in this directory
--log-flush-frequency=5s: Maximum number of seconds between log flushes
--logtostderr[=true]: log to standard error instead of files
--match-server-version[=false]: Require server version to match client version
--namespace="": If present, the namespace scope for this CLI request.
--password="": Password for basic authentication to the API server.
--stderrthreshold=2: logs at or above this threshold go to stderr
--token="": Bearer token for authentication to the API server.
--user="": The name of the kubeconfig user to use
--username="": Username for basic authentication to the API server.
--v=0: log level for V logs
--vmodule=: comma-separated list of pattern=N settings for file-filtered logging
```
### SEE ALSO
2016-03-07 16:51:25 +00:00
* [kubectl config](kubectl_config.md) - config modifies kubeconfig files
2016-02-26 12:31:34 +00:00
2016-03-07 16:51:25 +00:00
###### Auto generated by spf13/cobra on 29-Feb-2016
2016-02-26 12:31:34 +00:00
<!-- BEGIN MUNGE: IS_VERSIONED -->
<!-- TAG IS_VERSIONED -->
<!-- END MUNGE: IS_VERSIONED -->
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/user-guide/kubectl/kubectl_config_set-cluster.md?pixel)]()
<!-- END MUNGE: GENERATED_ANALYTICS -->