We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e946b05 commit 7c4e4baCopy full SHA for 7c4e4ba
1 file changed
src/mas/devops/tekton.py
@@ -241,6 +241,7 @@ def testCLI() -> None:
241
242
def launchUpgradePipeline(dynClient: DynamicClient,
243
instanceId: str,
244
+ skipPreCheck: bool = False,
245
masChannel: str = "") -> str:
246
"""
247
Create a PipelineRun to upgrade the chosen MAS instance
@@ -257,6 +258,7 @@ def launchUpgradePipeline(dynClient: DynamicClient,
257
258
renderedTemplate = template.render(
259
timestamp=timestamp,
260
mas_instance_id=instanceId,
261
+ skip_pre_check=skipPreCheck,
262
mas_channel=masChannel
263
)
264
pipelineRun = yaml.safe_load(renderedTemplate)
0 commit comments