@eclipse-che/che-e2e 7.106.0-next-5d2b584 → 7.106.0-next-45f4fb4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/configs/inversify.config.ts +8 -0
- package/configs/inversify.types.ts +5 -1
- package/constants/TIMEOUT_CONSTANTS.ts +6 -0
- package/dist/configs/inversify.config.js +8 -0
- package/dist/configs/inversify.config.js.map +1 -1
- package/dist/configs/inversify.types.js +5 -1
- package/dist/configs/inversify.types.js.map +1 -1
- package/dist/constants/TIMEOUT_CONSTANTS.js +4 -0
- package/dist/constants/TIMEOUT_CONSTANTS.js.map +1 -1
- package/dist/driver/ChromeDriver.js +5 -1
- package/dist/driver/ChromeDriver.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/pageobjects/ide/CommandPalette.js +117 -0
- package/dist/pageobjects/ide/CommandPalette.js.map +1 -0
- package/dist/pageobjects/ide/ExplorerView.js +108 -0
- package/dist/pageobjects/ide/ExplorerView.js.map +1 -0
- package/dist/pageobjects/ide/ExtensionsView.js +162 -0
- package/dist/pageobjects/ide/ExtensionsView.js.map +1 -0
- package/dist/pageobjects/ide/NotificationHandler.js +83 -0
- package/dist/pageobjects/ide/NotificationHandler.js.map +1 -0
- package/dist/pageobjects/ide/ViewsMoreActionsButton.js +9 -0
- package/dist/pageobjects/ide/ViewsMoreActionsButton.js.map +1 -1
- package/dist/specs/dashboard-samples/RecommendedExtensions.spec.js +13 -2
- package/dist/specs/dashboard-samples/RecommendedExtensions.spec.js.map +1 -1
- package/dist/specs/miscellaneous/VsixInstallationDisableTest.spec.js +205 -0
- package/dist/specs/miscellaneous/VsixInstallationDisableTest.spec.js.map +1 -0
- package/dist/utils/DevWorkspaceConfigurationHelper.js +11 -13
- package/dist/utils/DevWorkspaceConfigurationHelper.js.map +1 -1
- package/driver/ChromeDriver.ts +5 -1
- package/index.ts +4 -0
- package/package.json +1 -1
- package/pageobjects/ide/CommandPalette.ts +114 -0
- package/pageobjects/ide/ExplorerView.ts +106 -0
- package/pageobjects/ide/ExtensionsView.ts +167 -0
- package/pageobjects/ide/NotificationHandler.ts +70 -0
- package/pageobjects/ide/ViewsMoreActionsButton.ts +11 -0
- package/resources/configmap-disable-vsix-installation.yaml +22 -0
- package/resources/configmap-enable-vsix-installation.yaml +22 -0
- package/resources/default-extensions-configmap.yaml +12 -0
- package/specs/dashboard-samples/RecommendedExtensions.spec.ts +26 -2
- package/specs/miscellaneous/VsixInstallationDisableTest.spec.ts +243 -0
- package/utils/DevWorkspaceConfigurationHelper.ts +12 -15
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/** *******************************************************************
|
|
2
|
+
* copyright (c) 2025 Red Hat, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This program and the accompanying materials are made
|
|
5
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
6
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
7
|
+
*
|
|
8
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
**********************************************************************/
|
|
10
|
+
|
|
11
|
+
import 'reflect-metadata';
|
|
12
|
+
import { e2eContainer } from '../../configs/inversify.config';
|
|
13
|
+
import { CLASSES, TYPES } from '../../configs/inversify.types';
|
|
14
|
+
import { expect } from 'chai';
|
|
15
|
+
import * as fs from 'fs';
|
|
16
|
+
import * as path from 'path';
|
|
17
|
+
|
|
18
|
+
import { WorkspaceHandlingTests } from '../../tests-library/WorkspaceHandlingTests';
|
|
19
|
+
import { ProjectAndFileTests } from '../../tests-library/ProjectAndFileTests';
|
|
20
|
+
import { LoginTests } from '../../tests-library/LoginTests';
|
|
21
|
+
import { registerRunningWorkspace } from '../MochaHooks';
|
|
22
|
+
|
|
23
|
+
import { KubernetesCommandLineToolsExecutor } from '../../utils/KubernetesCommandLineToolsExecutor';
|
|
24
|
+
import { ShellExecutor } from '../../utils/ShellExecutor';
|
|
25
|
+
import { ITestWorkspaceUtil } from '../../utils/workspace/ITestWorkspaceUtil';
|
|
26
|
+
|
|
27
|
+
import { Dashboard } from '../../pageobjects/dashboard/Dashboard';
|
|
28
|
+
import { NotificationHandler } from '../../pageobjects/ide/NotificationHandler';
|
|
29
|
+
import { CommandPalette } from '../../pageobjects/ide/CommandPalette';
|
|
30
|
+
import { ExtensionsView } from '../../pageobjects/ide/ExtensionsView';
|
|
31
|
+
import { ExplorerView } from '../../pageobjects/ide/ExplorerView';
|
|
32
|
+
|
|
33
|
+
import { DriverHelper } from '../../utils/DriverHelper';
|
|
34
|
+
import { BrowserTabsUtil } from '../../utils/BrowserTabsUtil';
|
|
35
|
+
import { BASE_TEST_CONSTANTS } from '../../constants/BASE_TEST_CONSTANTS';
|
|
36
|
+
import { Logger } from '../../utils/Logger';
|
|
37
|
+
|
|
38
|
+
suite(`Verify VSIX installation can be disabled via configuration ${BASE_TEST_CONSTANTS.TEST_ENVIRONMENT}`, function (): void {
|
|
39
|
+
const workspaceHandlingTests: WorkspaceHandlingTests = e2eContainer.get(CLASSES.WorkspaceHandlingTests);
|
|
40
|
+
const projectAndFileTests: ProjectAndFileTests = e2eContainer.get(CLASSES.ProjectAndFileTests);
|
|
41
|
+
const loginTests: LoginTests = e2eContainer.get(CLASSES.LoginTests);
|
|
42
|
+
const kubernetesCommandLineToolsExecutor: KubernetesCommandLineToolsExecutor = e2eContainer.get(
|
|
43
|
+
CLASSES.KubernetesCommandLineToolsExecutor
|
|
44
|
+
);
|
|
45
|
+
const shellExecutor: ShellExecutor = e2eContainer.get(CLASSES.ShellExecutor);
|
|
46
|
+
const testWorkspaceUtil: ITestWorkspaceUtil = e2eContainer.get(TYPES.WorkspaceUtil);
|
|
47
|
+
const dashboard: Dashboard = e2eContainer.get(CLASSES.Dashboard);
|
|
48
|
+
const driverHelper: DriverHelper = e2eContainer.get(CLASSES.DriverHelper);
|
|
49
|
+
const browserTabsUtil: BrowserTabsUtil = e2eContainer.get(CLASSES.BrowserTabsUtil);
|
|
50
|
+
const notificationHandler: NotificationHandler = e2eContainer.get(CLASSES.NotificationHandler);
|
|
51
|
+
const commandPalette: CommandPalette = e2eContainer.get(CLASSES.CommandPalette);
|
|
52
|
+
const extensionsView: ExtensionsView = e2eContainer.get(CLASSES.ExtensionsView);
|
|
53
|
+
const explorerView: ExplorerView = e2eContainer.get(CLASSES.ExplorerView);
|
|
54
|
+
|
|
55
|
+
const TEST_REPO_URL: string = 'https://github.com/crw-qe/web-nodejs-sample-with-disabled-vsix/tree/install-from-vsix-disabled-7-100';
|
|
56
|
+
const RESOURCES_PATH: string = path.join(__dirname, '../../../resources');
|
|
57
|
+
const DEFAULT_EXTENSIONS: string[] = ['YAML'];
|
|
58
|
+
const VSIX_FILE_NAME: string = 'redhat.vscode-yaml-1.17.0.vsix';
|
|
59
|
+
|
|
60
|
+
const CONFIG_MAP_NAMES: { VSIX_CONFIG: string; DEFAULT_EXTENSIONS: string } = {
|
|
61
|
+
VSIX_CONFIG: 'vscode-editor-configurations',
|
|
62
|
+
DEFAULT_EXTENSIONS: 'default-extensions'
|
|
63
|
+
};
|
|
64
|
+
const CONFIG_MAP_NAMESPACES: { VSIX_CONFIG: string; DEFAULT_EXTENSIONS: string } = {
|
|
65
|
+
VSIX_CONFIG: 'openshift-devspaces',
|
|
66
|
+
DEFAULT_EXTENSIONS: 'admin-devspaces'
|
|
67
|
+
};
|
|
68
|
+
const CONFIG_FILES: { ENABLE_VSIX: string; DEFAULT_EXTENSIONS: string; DISABLE_VSIX: string } = {
|
|
69
|
+
DISABLE_VSIX: 'configmap-disable-vsix-installation.yaml',
|
|
70
|
+
ENABLE_VSIX: 'configmap-enable-vsix-installation.yaml',
|
|
71
|
+
DEFAULT_EXTENSIONS: 'default-extensions-configmap.yaml'
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
let workspaceName: string = '';
|
|
75
|
+
|
|
76
|
+
function applyConfigMap(configFileName: string): void {
|
|
77
|
+
const configPath: string = path.join(RESOURCES_PATH, configFileName);
|
|
78
|
+
const configContent: string = fs.readFileSync(configPath, 'utf8');
|
|
79
|
+
shellExecutor.executeCommand(`oc apply -f - <<EOF\n${configContent}\nEOF`);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
function cleanupConfigMaps(): void {
|
|
83
|
+
Logger.debug(`Deleting ConfigMap ${CONFIG_MAP_NAMES.VSIX_CONFIG} from namespace ${CONFIG_MAP_NAMESPACES.VSIX_CONFIG}`);
|
|
84
|
+
shellExecutor.executeCommand(
|
|
85
|
+
`oc delete configmap ${CONFIG_MAP_NAMES.VSIX_CONFIG} -n ${CONFIG_MAP_NAMESPACES.VSIX_CONFIG} --ignore-not-found=true`
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
Logger.debug(
|
|
89
|
+
`Deleting ConfigMap ${CONFIG_MAP_NAMES.DEFAULT_EXTENSIONS} from namespace ${CONFIG_MAP_NAMESPACES.DEFAULT_EXTENSIONS}`
|
|
90
|
+
);
|
|
91
|
+
shellExecutor.executeCommand(
|
|
92
|
+
`oc delete configmap ${CONFIG_MAP_NAMES.DEFAULT_EXTENSIONS} -n ${CONFIG_MAP_NAMESPACES.DEFAULT_EXTENSIONS} --ignore-not-found=true`
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// ========== Test Execution ==========
|
|
97
|
+
|
|
98
|
+
suiteSetup('Login to cluster and setup initial state', function (): void {
|
|
99
|
+
kubernetesCommandLineToolsExecutor.loginToOcp();
|
|
100
|
+
cleanupConfigMaps();
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
suiteSetup('Login to application', async function (): Promise<void> {
|
|
104
|
+
await loginTests.loginIntoChe();
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
test('Apply ConfigMaps that disable VSIX and set default extensions', function (): void {
|
|
108
|
+
applyConfigMap(CONFIG_FILES.DISABLE_VSIX);
|
|
109
|
+
applyConfigMap(CONFIG_FILES.DEFAULT_EXTENSIONS);
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
test('Create and open workspace from Git repository', async function (): Promise<void> {
|
|
113
|
+
await workspaceHandlingTests.createAndOpenWorkspaceFromGitRepository(TEST_REPO_URL);
|
|
114
|
+
await workspaceHandlingTests.obtainWorkspaceNameFromStartingPage();
|
|
115
|
+
workspaceName = WorkspaceHandlingTests.getWorkspaceName();
|
|
116
|
+
registerRunningWorkspace(workspaceName);
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
test('Wait workspace readiness', async function (): Promise<void> {
|
|
120
|
+
await projectAndFileTests.waitWorkspaceReadinessForCheCodeEditor();
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
test('Verify VSIX disabled notifications', async function (): Promise<void> {
|
|
124
|
+
const hasDisableNotification: boolean = await notificationHandler.checkForNotification('install from vsix command is disabled');
|
|
125
|
+
expect(hasDisableNotification).to.be.true;
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
test('Perform trust author dialog', async function (): Promise<void> {
|
|
129
|
+
await projectAndFileTests.performTrustAuthorDialog();
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
test('Verify VSIX installation is disabled in UI and extensions are not installed', async function (): Promise<void> {
|
|
133
|
+
// check Command Palette
|
|
134
|
+
await commandPalette.openCommandPalette();
|
|
135
|
+
await commandPalette.searchCommand('Install from VSIX');
|
|
136
|
+
const commandAvailable: boolean = await commandPalette.isCommandVisible('Extensions: Install from VSIX...');
|
|
137
|
+
await commandPalette.closeCommandPalette();
|
|
138
|
+
expect(commandAvailable).to.equal(false, 'Command Palette should not contain Install from VSIX command');
|
|
139
|
+
|
|
140
|
+
// check Extensions view menu
|
|
141
|
+
await extensionsView.openExtensionsView();
|
|
142
|
+
await extensionsView.openMoreActionsMenu();
|
|
143
|
+
const extensionMenuAvailable: boolean = await extensionsView.isMoreActionsMenuItemVisible('Install from VSIX');
|
|
144
|
+
await extensionsView.closeMoreActionsMenu();
|
|
145
|
+
expect(extensionMenuAvailable).to.equal(false, 'Extensions view should not contain Install from VSIX action');
|
|
146
|
+
|
|
147
|
+
// check Explorer context menu
|
|
148
|
+
await explorerView.openFileContextMenu(VSIX_FILE_NAME);
|
|
149
|
+
const contextMenuAvailable: boolean = await explorerView.isContextMenuItemVisible('Install Extension VSIX');
|
|
150
|
+
await explorerView.closeContextMenu();
|
|
151
|
+
expect(contextMenuAvailable).to.equal(false, 'Explorer context menu should not contain Install Extension VSIX action');
|
|
152
|
+
|
|
153
|
+
// verify default extensions are not auto-installed
|
|
154
|
+
await extensionsView.openExtensionsView();
|
|
155
|
+
const installedExtensions: string[] = await extensionsView.getInstalledExtensionNames();
|
|
156
|
+
|
|
157
|
+
Logger.debug(`Found installed extensions: ${installedExtensions.join(', ')}`);
|
|
158
|
+
|
|
159
|
+
for (const extensionName of DEFAULT_EXTENSIONS) {
|
|
160
|
+
const isInstalled: boolean = installedExtensions.some((installed: string): boolean =>
|
|
161
|
+
installed.toLowerCase().includes(extensionName.toLowerCase())
|
|
162
|
+
);
|
|
163
|
+
expect(isInstalled).to.equal(false, `Default VSIX extension "${extensionName}" should not be auto-installed`);
|
|
164
|
+
}
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
test('Enable VSIX installation and create new workspace', async function (): Promise<void> {
|
|
168
|
+
// clean up current workspace
|
|
169
|
+
await dashboard.openDashboard();
|
|
170
|
+
await testWorkspaceUtil.deleteWorkspaceByName(workspaceName);
|
|
171
|
+
registerRunningWorkspace('');
|
|
172
|
+
|
|
173
|
+
// apply ConfigMaps that enable VSIX and set default extensions
|
|
174
|
+
applyConfigMap(CONFIG_FILES.ENABLE_VSIX);
|
|
175
|
+
applyConfigMap(CONFIG_FILES.DEFAULT_EXTENSIONS);
|
|
176
|
+
|
|
177
|
+
Logger.info('Waiting for new ConfigMap settings to take effect...');
|
|
178
|
+
await driverHelper.wait(30000);
|
|
179
|
+
|
|
180
|
+
// create new workspace
|
|
181
|
+
await workspaceHandlingTests.createAndOpenWorkspaceFromGitRepository(TEST_REPO_URL);
|
|
182
|
+
await workspaceHandlingTests.obtainWorkspaceNameFromStartingPage();
|
|
183
|
+
workspaceName = WorkspaceHandlingTests.getWorkspaceName();
|
|
184
|
+
registerRunningWorkspace(workspaceName);
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
test('Wait workspace readiness', async function (): Promise<void> {
|
|
188
|
+
await projectAndFileTests.waitWorkspaceReadinessForCheCodeEditor();
|
|
189
|
+
});
|
|
190
|
+
|
|
191
|
+
test('Verify default extension installation success notifications', async function (): Promise<void> {
|
|
192
|
+
const hasSuccessNotification: boolean = await notificationHandler.checkForNotification('Completed installing extension');
|
|
193
|
+
expect(hasSuccessNotification).to.be.true;
|
|
194
|
+
});
|
|
195
|
+
|
|
196
|
+
test('Perform trust author dialog', async function (): Promise<void> {
|
|
197
|
+
await projectAndFileTests.performTrustAuthorDialog();
|
|
198
|
+
});
|
|
199
|
+
|
|
200
|
+
test('Verify VSIX installation is enabled in UI and extensions are installed', async function (): Promise<void> {
|
|
201
|
+
// check Command Palette
|
|
202
|
+
await commandPalette.openCommandPalette();
|
|
203
|
+
await commandPalette.searchCommand('Install from VSIX');
|
|
204
|
+
const commandAvailable: boolean = await commandPalette.isCommandVisible('Extensions: Install from VSIX...');
|
|
205
|
+
await commandPalette.closeCommandPalette();
|
|
206
|
+
expect(commandAvailable).to.equal(true, 'Command Palette should contain Install from VSIX command');
|
|
207
|
+
|
|
208
|
+
// check Extensions view menu
|
|
209
|
+
await extensionsView.openExtensionsView();
|
|
210
|
+
await extensionsView.openMoreActionsMenu();
|
|
211
|
+
const extensionMenuAvailable: boolean = await extensionsView.isMoreActionsMenuItemVisible('Install from VSIX');
|
|
212
|
+
await extensionsView.closeMoreActionsMenu();
|
|
213
|
+
expect(extensionMenuAvailable).to.equal(true, 'Extensions view should contain Install from VSIX action');
|
|
214
|
+
|
|
215
|
+
// check Explorer context menu
|
|
216
|
+
await explorerView.openFileContextMenu(VSIX_FILE_NAME);
|
|
217
|
+
const contextMenuAvailable: boolean = await explorerView.isContextMenuItemVisible('Install Extension VSIX');
|
|
218
|
+
await explorerView.closeContextMenu();
|
|
219
|
+
expect(contextMenuAvailable).to.equal(true, 'Explorer context menu should contain Install Extension VSIX action');
|
|
220
|
+
|
|
221
|
+
// verify default extensions are auto-installed when VSIX enabled
|
|
222
|
+
await extensionsView.openExtensionsView();
|
|
223
|
+
const installedExtensions: string[] = await extensionsView.getInstalledExtensionNames();
|
|
224
|
+
|
|
225
|
+
Logger.debug(`Found installed extensions: ${installedExtensions.join(', ')}`);
|
|
226
|
+
|
|
227
|
+
for (const extensionName of DEFAULT_EXTENSIONS) {
|
|
228
|
+
const isInstalled: boolean = installedExtensions.some((installed: string): boolean =>
|
|
229
|
+
installed.toLowerCase().includes(extensionName.toLowerCase())
|
|
230
|
+
);
|
|
231
|
+
expect(isInstalled).to.equal(true, `Default VSIX extension "${extensionName}" should be auto-installed`);
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
|
|
235
|
+
suiteTeardown('Clean up ConfigMaps and workspace', async function (): Promise<void> {
|
|
236
|
+
cleanupConfigMaps();
|
|
237
|
+
await dashboard.openDashboard();
|
|
238
|
+
await browserTabsUtil.closeAllTabsExceptCurrent();
|
|
239
|
+
await testWorkspaceUtil.stopAndDeleteWorkspaceByName(workspaceName);
|
|
240
|
+
registerRunningWorkspace('');
|
|
241
|
+
Logger.info('Cleanup completed');
|
|
242
|
+
});
|
|
243
|
+
});
|
|
@@ -15,6 +15,7 @@ import * as axios from 'axios';
|
|
|
15
15
|
import { Logger } from './Logger';
|
|
16
16
|
import { ShellExecutor } from './ShellExecutor';
|
|
17
17
|
import { API_TEST_CONSTANTS } from '../constants/API_TEST_CONSTANTS';
|
|
18
|
+
import { BASE_TEST_CONSTANTS } from '../constants/BASE_TEST_CONSTANTS';
|
|
18
19
|
import { injectable } from 'inversify';
|
|
19
20
|
import { IContextParams } from './IContextParams';
|
|
20
21
|
import { e2eContainer } from '../configs/inversify.config';
|
|
@@ -69,7 +70,9 @@ export class DevWorkspaceConfigurationHelper {
|
|
|
69
70
|
axios.default as any
|
|
70
71
|
);
|
|
71
72
|
|
|
72
|
-
|
|
73
|
+
if (BASE_TEST_CONSTANTS.TESTING_APPLICATION_NAME() === 'devspaces') {
|
|
74
|
+
this.addMissedDevWorkspaceConfigAttributes(devfileContext);
|
|
75
|
+
}
|
|
73
76
|
|
|
74
77
|
return devfileContext;
|
|
75
78
|
}
|
|
@@ -104,26 +107,20 @@ export class DevWorkspaceConfigurationHelper {
|
|
|
104
107
|
return content;
|
|
105
108
|
}
|
|
106
109
|
|
|
107
|
-
patchDevWorkspaceConfigWithBuildContainerAttribute(devfileContextDevWorkspace: any): void {
|
|
108
|
-
Logger.debug();
|
|
109
|
-
devfileContextDevWorkspace.spec.template.attributes = YAML.parse(`
|
|
110
|
-
controller.devfile.io/devworkspace-config:
|
|
111
|
-
name: devworkspace-config
|
|
112
|
-
namespace: openshift-devspaces
|
|
113
|
-
controller.devfile.io/scc: container-build
|
|
114
|
-
controller.devfile.io/storage-type: per-user`);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
110
|
/**
|
|
118
|
-
* add
|
|
111
|
+
* add missed attributes to fix issues CRW-8922, CRW-9187.
|
|
119
112
|
*/
|
|
120
|
-
|
|
113
|
+
addMissedDevWorkspaceConfigAttributes(
|
|
121
114
|
devfileContextDevWorkspace: DevfileContext,
|
|
122
|
-
storageType: string = API_TEST_CONSTANTS.TS_API_TEST_STORAGE_TYPE
|
|
115
|
+
storageType: string | undefined = API_TEST_CONSTANTS.TS_API_TEST_STORAGE_TYPE
|
|
123
116
|
): void {
|
|
124
117
|
Logger.debug();
|
|
125
118
|
devfileContextDevWorkspace.devWorkspace?.spec?.template &&
|
|
126
119
|
(devfileContextDevWorkspace.devWorkspace.spec.template.attributes = YAML.parse(`
|
|
127
|
-
|
|
120
|
+
controller.devfile.io/devworkspace-config:
|
|
121
|
+
name: devworkspace-config
|
|
122
|
+
namespace: openshift-devspaces
|
|
123
|
+
controller.devfile.io/scc: container-build
|
|
124
|
+
controller.devfile.io/storage-type: ${storageType}`));
|
|
128
125
|
}
|
|
129
126
|
}
|