You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,13 +54,12 @@ connection "kubernetes" {
54
54
# If no kubeconfig file can be found, the plugin will attempt to use the service account Kubernetes gives to pods.
55
55
# This authentication method is intended for clients that expect to be running inside a pod running on Kubernetes.
56
56
57
-
# Specify the source of the resource. Possible values: `deployed`, `helm`, `manifest`, and `all`.
58
-
# Default set to `all`. Set the argument to override the default value.
59
-
# If the value is set to `deployed`, tables will show all the deployed resources.
60
-
# If set to `helm`, tables will only show resources from the configured helm charts.
61
-
# If set to `manifest`, tables will show all the resources from the kubernetes manifest. Make sure that the `manifest_file_paths` arg is set.
62
-
# If `all`, tables will show all the deployed and manifest resources.
63
-
# source_type = "all"
57
+
# Specify the source(s) of the resource(s). Possible values: `deployed`, `helm` and `manifest`.
58
+
# Defaults to all possible values. Set the argument to override the default value.
59
+
# If `deployed` is contained in the value, tables will show all the deployed resources.
60
+
# If `helm` is contained in the value, tables will show resources from the configured helm charts.
61
+
# If `manifest` is contained in the value, tables will show all the resources from the kubernetes manifest. Make sure that the `manifest_file_paths` arg is set.
Copy file name to clipboardExpand all lines: config/kubernetes.spc
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,12 @@ connection "kubernetes" {
28
28
# If no kubeconfig file can be found, the plugin will attempt to use the service account Kubernetes gives to pods.
29
29
# This authentication method is intended for clients that expect to be running inside a pod running on Kubernetes.
30
30
31
-
# Specify the source of the resource. Possible values: `deployed`, `helm`, `manifest`, and `all`.
32
-
# Default set to `all`. Set the argument to override the default value.
33
-
# If the value is set to `deployed`, tables will show all the deployed resources.
34
-
# If set to `helm`, tables will only show resources from the configured helm charts.
35
-
# If set to `manifest`, tables will show all the resources from the kubernetes manifest. Make sure that the `manifest_file_paths` arg is set.
36
-
# If `all`, tables will show all the deployed and manifest resources.
37
-
# source_type = "all"
31
+
# Specify the source(s) of the resource(s). Possible values: `deployed`, `helm` and `manifest`.
32
+
# Defaults to all possible values. Set the argument to override the default value.
33
+
# If `deployed` is contained in the value, tables will show all the deployed resources.
34
+
# If `helm` is contained in the value, tables will show resources from the configured helm charts.
35
+
# If `manifest` is contained in the value, tables will show all the resources from the kubernetes manifest. Make sure that the `manifest_file_paths` arg is set.
**Note**: If any path matches on `*` without `.yml` or `.yaml` or `.json`, all files (including non-Kubernetes manifest files) in the directory will be matched, which may cause errors if incompatible file types exist.
181
186
182
-
By default the plugin always lists the resources deployed in the current Kubernetes cluster context. If you want to restrict this behavior to read resource configurations from the configured manifest files only, add the `source_type` argument to the config and set the value to `manifest`. For example:
187
+
By default the plugin always lists the resources deployed in the current Kubernetes cluster context. If you want to restrict this behavior to read resource configurations from the configured manifest files only, add the `source_types` argument to the config and set the value to `manifest`. For example:
0 commit comments