We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86ebabf + 3354552 commit f7b4e76Copy full SHA for f7b4e76
pkg/rancher-deskboard/index.ts
@@ -25,6 +25,16 @@ export default function(plugin: IPlugin, internal: IInternal): void {
25
logoRoute,
26
logo: require(`./assets/logo.svg`),
27
});
28
+
29
+ // Hide buttons in the header that don't work in Rancher Desktop.
30
+ // KubeConfig buttons don't function (issues #2208) and Kubectl Shell
31
+ // is not useful since users can use a local terminal (issue #8151).
32
+ store.commit('type-map/product', {
33
+ name: 'explorer',
34
+ hideKubeShell: true,
35
+ hideKubeConfig: true,
36
+ hideCopyConfig: true,
37
+ });
38
}
39
40
/**
0 commit comments