Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ public void InitializeStep(WizardArgs wizardArgs)
availableModules.Add(Module.Horizon);
GetHorizonTags();
GetHorizonAssetsTags(args.Topology);
availableModules.Add(Module.PublishingService);
GetSpsTags();
GetSpsAssetsTags(args.Topology);
// Disable the support of Publishing Service till the issue #694 is not fixed
//availableModules.Add(Module.PublishingService);
//GetSpsTags();
//GetSpsAssetsTags(args.Topology);
}

ModulesListBox.ItemsSource = availableModules;
Expand Down Expand Up @@ -390,7 +391,8 @@ private void SpsAssetsTagsComboBox_SelectionChanged(object sender, System.Window

private void GetSpsTags()
{
SpsTagsComboBox.DataContext = tagRepository.GetSortedShortTags(DockerSettings.SpsImagePath, DockerSettings.SitecoreModuleNamespace).ToArray();
// Add support only of PS 6.0.0 and later since the previous version 5.0.0 contains significant bugs and 'SITECORE_Sitecore' duplicated environment varialbes for the 'sps-mssql-init' and 'sps' services
SpsTagsComboBox.DataContext = tagRepository.GetSortedShortTags(DockerSettings.SpsImagePath, DockerSettings.SitecoreModuleNamespace).Where(tag => !tag.StartsWith("5.0")).ToArray();
SpsTagsComboBox.SelectedIndex = 0;
}

Expand Down