Skip to content

Commit

Permalink
[patch] Pass skipPreCheck argument to launchUpgradePipeline (#1089)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonahLuckett authored Jul 4, 2024
1 parent 6387fa0 commit 6c311ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/mas-upgrade
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class App(BaseApp):
h.stop_and_persist(symbol=self.successIcon, text=f"Latest Tekton definitions are installed (v{self.version})")

with Halo(text='Submitting PipelineRun for {instanceId} upgrade', spinner=self.spinner) as h:
pipelineURL = launchUpgradePipeline(self.dynamicClient, instanceId)
pipelineURL = launchUpgradePipeline(self.dynamicClient, instanceId, skipPreCheck)
if pipelineURL is not None:
h.stop_and_persist(symbol=self.successIcon, text=f"PipelineRun for {instanceId} upgrade submitted")
print_formatted_text(HTML(f"\nView progress:\n <Cyan><u>{pipelineURL}</u></Cyan>\n"))
Expand Down

0 comments on commit 6c311ff

Please sign in to comment.