Kubectl config: Difference between revisions
Jump to navigation
Jump to search
Line 34: | Line 34: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
In case the context being updated is the current context, the current context will also be updated. | In case the context being updated is the current context, the current context will also be updated. | ||
==<tt>get-contexts</tt>== | |||
==<tt>get-clusters</tt>== |
Revision as of 00:10, 5 December 2023
Internal
Overview
current-context
Displays the current context:
kubectl config current-context
use-context
Sets the current context:
kubectl config use-context <new-context-name>
view
Displays the content of ~/.kube/cofig:
kubectl config view
rename-context
Renames a context from the .kube/conf file:
kubectl config rename-context <old-context-name> <new-context-name>
In case the context being updated is the current context, the current context will also be updated.