Skip to content

Commit

Permalink
[patch] Fix --skip-grafana-install flag & ICD image mirroring (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
HariPalleti authored Aug 9, 2024
1 parent 6942b57 commit 757a322
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion image/cli/mascli/functions/mirror_images
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ function mirror_to_registry() {
export MIRROR_SPARK
export MIRROR_COGNOS
export MIRROR_APPCONNECT
export MIRROR_MAS_IC
export MIRROR_MAS_ICD
export MIRROR_EVERYTHING

# Authentication
Expand Down
5 changes: 2 additions & 3 deletions python/src/mas/cli/install/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,7 @@ def install(self, argv):
self.waitForPVC = not args.no_wait_for_pvc
self.licenseAccepted = args.accept_license
self.devMode = args.dev_mode
self.skipGrafanaInstall = args.skip_grafana_install

self.approvals = {}

Expand All @@ -889,9 +890,7 @@ def install(self, argv):
# These flags work for setting params in both interactive and non-interactive modes
if args.skip_pre_check:
self.setParam("skip_pre_check", "true")
if args.skip_grafana_install:
self.skipGrafanaInstall = True


self.installOptions = [
{
"#": 1,
Expand Down

0 comments on commit 757a322

Please sign in to comment.