diff --git a/pages/c/_cluster/apps/install.vue b/pages/c/_cluster/apps/install.vue index 4e552a28af..a3110dca94 100644 --- a/pages/c/_cluster/apps/install.vue +++ b/pages/c/_cluster/apps/install.vue @@ -737,8 +737,8 @@ export default { const defaultRegistry = this.defaultRegistrySetting?.value || ''; const serverUrl = this.serverUrlSetting?.value || ''; const isWindows = cluster.providerOs === 'windows'; - const pathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.pathPrefix || ''; - const windowsPathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.winPathPrefix || ''; + const pathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.prefixPath || ''; + const windowsPathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.winPrefixPath || ''; setIfNotSet(cattle, 'clusterId', cluster.id); setIfNotSet(cattle, 'clusterName', cluster.nameDisplay); @@ -770,8 +770,8 @@ export default { const defaultRegistry = this.defaultRegistrySetting?.value || ''; const serverUrl = this.serverUrlSetting?.value || ''; const isWindows = cluster.providerOs === 'windows'; - const pathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.pathPrefix || ''; - const windowsPathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.winPathPrefix || ''; + const pathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.prefixPath || ''; + const windowsPathPrefix = cluster.spec?.rancherKubernetesEngineConfig?.winPrefixPath || ''; if ( values.global?.cattle ) { deleteIfEqual(values.global.cattle, 'clusterId', cluster.id);