Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 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
4 changes: 3 additions & 1 deletion src/mas/devops/data/catalogs/v9-250403-amd64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ mas_visualinspection_version:
9.0.x: 9.0.8 # updated
8.10.x: 8.8.4 # No Update
8.11.x: 8.9.11 # updated

mas_aibroker_version:
Comment thread
Bhautik-Vala marked this conversation as resolved.
Outdated
9.0.x: 9.0.5

# Extra Images for UDS
# ------------------------------------------------------------------------------
uds_extras_version: 1.5.0
Expand Down
12 changes: 12 additions & 0 deletions src/mas/devops/tekton.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,18 @@ def launchInstallPipeline(dynClient: DynamicClient, params: dict) -> str:
return pipelineURL


def launchInstallPipelineForAiservice(dynClient: DynamicClient, params: dict) -> str:
"""
Create a PipelineRun to install the Aiservice
"""
instanceId = params["mas_instance_id"]
namespace = f"mas-{instanceId}-pipelines"
Comment thread
Bhautik-Vala marked this conversation as resolved.
timestamp = launchPipelineRun(dynClient, namespace, "pipelinerun-aiservice-install", params)

pipelineURL = f"{getConsoleURL(dynClient)}/k8s/ns/mas-{instanceId}-pipelines/tekton.dev~v1beta1~PipelineRun/{instanceId}-install-{timestamp}"
Comment thread
whitfiea marked this conversation as resolved.
return pipelineURL


def launchUpdatePipeline(dynClient: DynamicClient, params: dict) -> str:
"""
Create a PipelineRun to update the Maximo Operator Catalog
Expand Down
Loading
Loading