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
voidwindow.showWarningMessage('KUBECONFIG specifies multiple files. Unfortunately, the extension doesn\'t work properly with this setup. Expect things to break.');
* If there are multiple kube config files set, force the user to pick one to use.
135
+
*/
136
+
exportasyncfunctionsetKubeConfig(){
137
+
constkubeConfigFiles=getKubeConfigFiles();
138
+
if(kubeConfigFiles.length>1){
139
+
letselectedFile;
140
+
while(!selectedFile){
141
+
try{
142
+
constpotentialSelection=awaitwindow.showQuickPick(kubeConfigFiles,{canPickMany: false,placeHolder: 'VSCode OpenShift only supports using one kube config. Please select which one to use.'});
0 commit comments