Skip to content

Commit

Permalink
NO-RANCHER Remove okapi without version from install.json
Browse files Browse the repository at this point in the history
  • Loading branch information
OHaimanov committed Jan 30, 2025
1 parent 3051cbe commit c874a07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Logger logger = new Logger(this, env.JOB_BASE_NAME)

String installJsonS3Path = "${Constants.PSQL_DUMP_BACKUPS_BUCKET_NAME}/ecs-snapshot/"
List newInstallJson = new GitHubUtility(this).getEnableList('platform-complete', 'snapshot')
newInstallJson.removeAll { module -> module.id == 'okapi' }
InstallRequestParams installRequestParams = new InstallRequestParams(reinstall: true)
.withTenantParameters("centralTenantId=cs00000int")
Main main = new Main(this, namespace.generateDomain('okapi'), namespace.getSuperTenant())
Expand Down
1 change: 1 addition & 0 deletions vars/folioNamespaceCreate.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ void call(CreateNamespaceParameters args) {
boolean isRelease = args.folioBranch ==~ /^R\d-\d{4}.*/
String commitHash = common.getLastCommitHash(folioRepository, args.folioBranch)
List installJson = new GitHubUtility(this).getEnableList(folioRepository, args.folioBranch)
installJson.removeAll { module -> module.id == 'okapi' }
TenantUi tenantUi = new TenantUi("${namespace.getClusterName()}-${namespace.getNamespaceName()}",
commitHash, args.folioBranch)
InstallRequestParams installRequestParams = new InstallRequestParams()
Expand Down

0 comments on commit c874a07

Please sign in to comment.