2020-10-15 10:48:41 -07:00
|
|
|
---
|
|
|
|
id: kubectl
|
|
|
|
title: Kubectl Context
|
|
|
|
sidebar_label: Kubectl
|
|
|
|
---
|
|
|
|
|
|
|
|
## What
|
|
|
|
|
2021-02-10 18:23:00 -08:00
|
|
|
Display the currently active Kubernetes context name and namespace name.
|
2020-10-15 10:48:41 -07:00
|
|
|
|
|
|
|
## Sample Configuration
|
|
|
|
|
2023-03-31 11:55:36 -07:00
|
|
|
import Config from '@site/src/components/Config.js';
|
|
|
|
|
|
|
|
<Config data={{
|
2020-10-15 10:48:41 -07:00
|
|
|
"type": "kubectl",
|
|
|
|
"style": "powerline",
|
2020-10-16 11:07:38 -07:00
|
|
|
"powerline_symbol": "\uE0B0",
|
2020-10-15 10:48:41 -07:00
|
|
|
"foreground": "#000000",
|
|
|
|
"background": "#ebcc34",
|
2022-03-27 01:12:47 -07:00
|
|
|
"template": " \uFD31 {{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}} "
|
2023-03-31 11:55:36 -07:00
|
|
|
}}/>
|
2021-02-10 18:23:00 -08:00
|
|
|
|
|
|
|
## Properties
|
|
|
|
|
2022-09-16 07:32:48 -07:00
|
|
|
| Name | Type | Description |
|
|
|
|
| ------------------ | --------- | ----------------------------------------------------------------------------------------------------- |
|
|
|
|
| `display_error` | `boolean` | show the error context when failing to retrieve the kubectl information - defaults to `false` |
|
|
|
|
| `parse_kubeconfig` | `boolean` | parse kubeconfig files instead of calling out to kubectl to improve performance - defaults to `false` |
|
2021-02-10 18:23:00 -08:00
|
|
|
|
2022-02-01 03:10:46 -08:00
|
|
|
## Template ([info][templates])
|
|
|
|
|
|
|
|
:::note default template
|
|
|
|
|
2022-09-16 07:32:48 -07:00
|
|
|
```template
|
2022-02-01 03:10:46 -08:00
|
|
|
{{ .Context }}{{ if .Namespace }} :: {{ .Namespace }}{{ end }}
|
|
|
|
```
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
### Properties
|
2021-02-10 18:23:00 -08:00
|
|
|
|
2022-09-16 07:32:48 -07:00
|
|
|
| Name | Type | Description |
|
|
|
|
| ------------ | -------- | ------------------------------------- |
|
|
|
|
| `.Context` | `string` | the current kubectl context |
|
|
|
|
| `.Namespace` | `string` | the current kubectl context namespace |
|
|
|
|
| `.User` | `string` | the current kubectl context user |
|
|
|
|
| `.Cluster` | `string` | the current kubectl context cluster |
|
2021-02-10 18:23:00 -08:00
|
|
|
|
|
|
|
## Tips
|
|
|
|
|
|
|
|
It is common for the Kubernetes "default" namespace to be used when no namespace is provided. If you want your prompt to
|
2022-09-16 07:32:48 -07:00
|
|
|
render an empty current namespace using the word "default", you can use something like this for the template:
|
2021-02-10 18:23:00 -08:00
|
|
|
|
|
|
|
`{{.Context}} :: {{if .Namespace}}{{.Namespace}}{{else}}default{{end}}`
|
|
|
|
|
2022-04-20 09:43:59 -07:00
|
|
|
[templates]: /docs/configuration/templates
|