-
Notifications
You must be signed in to change notification settings - Fork 5
[minor] Support AI Service upgrade functionality #120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
bbe69e9
[patch] Initial changes for supporting mas upgrade for AI Service
2eabe08
[patch] Fix precommit issue
39a2282
[patch] Add launchAiServiceUpgradePipeline function
3365f8d
[patch] Fix pre-commit issue
a8629cb
[patch] Add aiservice-upgrade pipeline:
230a46c
[patch] Merge branch 'stable' into aisvc-upgrade
8f76ee4
Merge branch 'stable' into aisvc-upgrade
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
src/mas/devops/templates/pipelinerun-aiservice-upgrade.yml.j2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| --- | ||
| apiVersion: tekton.dev/v1beta1 | ||
| kind: PipelineRun | ||
| metadata: | ||
| name: "{{ aiservice_instance_id }}-upgrade-{{ timestamp }}" | ||
| labels: | ||
| tekton.dev/pipeline: aiservice-upgrade | ||
| spec: | ||
| pipelineRef: | ||
| name: aiservice-upgrade | ||
|
|
||
| serviceAccountName: "{{ service_account_name | default('pipeline', True) }}" | ||
| timeouts: | ||
| pipeline: "0" | ||
|
|
||
| params: | ||
| # Target AI Service Instance | ||
| # ------------------------------------------------------------------------- | ||
| - name: aiservice_instance_id | ||
| value: "{{ aiservice_instance_id }}" | ||
| - name: aiservice_channel | ||
| value: "{{ aiservice_channel }}" | ||
|
|
||
| # IBM Entitlement Key | ||
| # ------------------------------------------------------------------------- | ||
| - name: ibm_entitlement_key | ||
| value: "{{ ibm_entitlement_key }}" | ||
|
|
||
| {%- if skip_pre_check is defined and skip_pre_check != "" %} | ||
| # Skip pre-check | ||
| # ------------------------------------------------------------------------- | ||
| - name: skip_pre_check | ||
| value: "{{ skip_pre_check }}" | ||
| {%- endif %} | ||
| {%- if artifactory_username is defined and artifactory_username != "" %} | ||
|
|
||
| # Enable development catalogs | ||
| # ------------------------------------------------------------------------- | ||
| - name: artifactory_username | ||
| value: "{{ artifactory_username }}" | ||
| - name: artifactory_token | ||
| value: "{{ artifactory_token }}" | ||
| {%- endif %} | ||
|
|
||
| workspaces: | ||
| # The generated configuration files | ||
| # ------------------------------------------------------------------------- | ||
| - name: shared-configs | ||
| persistentVolumeClaim: | ||
| claimName: config-pvc | ||
|
|
||
| # PodTemplates configurations | ||
| # ------------------------------------------------------------------------- | ||
| - name: shared-pod-templates | ||
| secret: | ||
| secretName: pipeline-pod-templates |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.