mas-cli 15.10.0__py3-none-any.whl → 15.11.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mas-cli might be problematic. Click here for more details.
- mas/cli/__init__.py +1 -1
- mas/cli/aiservice/install/app.py +5 -2
- mas/cli/aiservice/upgrade/__init__.py +11 -0
- mas/cli/aiservice/upgrade/app.py +139 -0
- mas/cli/aiservice/upgrade/argParser.py +69 -0
- mas/cli/cli.py +2 -1
- mas/cli/install/app.py +5 -2
- mas/cli/install/catalogs.py +3 -2
- mas/cli/install/settings/db2Settings.py +7 -5
- mas/cli/templates/ibm-mas-tekton.yaml +547 -198
- mas/cli/uninstall/app.py +5 -2
- mas/cli/update/app.py +11 -6
- mas/cli/upgrade/app.py +6 -2
- mas/cli/validators.py +15 -1
- {mas_cli-15.10.0.data → mas_cli-15.11.0.data}/scripts/mas-cli +4 -0
- {mas_cli-15.10.0.dist-info → mas_cli-15.11.0.dist-info}/METADATA +3 -2
- {mas_cli-15.10.0.dist-info → mas_cli-15.11.0.dist-info}/RECORD +19 -16
- {mas_cli-15.10.0.dist-info → mas_cli-15.11.0.dist-info}/WHEEL +0 -0
- {mas_cli-15.10.0.dist-info → mas_cli-15.11.0.dist-info}/top_level.txt +0 -0
|
@@ -129,7 +129,7 @@ spec:
|
|
|
129
129
|
|
|
130
130
|
steps:
|
|
131
131
|
- name: start-pipelinerun
|
|
132
|
-
image: quay.io/ibmmas/cli:15.
|
|
132
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
133
133
|
imagePullPolicy: $(params.image_pull_policy)
|
|
134
134
|
command:
|
|
135
135
|
- ansible-playbook
|
|
@@ -201,7 +201,7 @@ spec:
|
|
|
201
201
|
optional: false
|
|
202
202
|
|
|
203
203
|
- name: wait-for-pipelinerun
|
|
204
|
-
image: quay.io/ibmmas/cli:15.
|
|
204
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
205
205
|
imagePullPolicy: $(params.image_pull_policy)
|
|
206
206
|
# 50 retries at 5 minute intervals = 4 hours
|
|
207
207
|
command:
|
|
@@ -281,7 +281,7 @@ spec:
|
|
|
281
281
|
|
|
282
282
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
283
283
|
- name: app-cfg-post-verify
|
|
284
|
-
image: quay.io/ibmmas/cli:15.
|
|
284
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
285
285
|
imagePullPolicy: $(params.image_pull_policy)
|
|
286
286
|
command:
|
|
287
287
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -513,7 +513,7 @@ spec:
|
|
|
513
513
|
command:
|
|
514
514
|
- /opt/app-root/src/run-role.sh
|
|
515
515
|
- aiservice_tenant
|
|
516
|
-
image: quay.io/ibmmas/cli:15.
|
|
516
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
517
517
|
imagePullPolicy: $(params.image_pull_policy)
|
|
518
518
|
workingDir: /workspace/configs
|
|
519
519
|
|
|
@@ -521,6 +521,76 @@ spec:
|
|
|
521
521
|
- name: configs
|
|
522
522
|
optional: true
|
|
523
523
|
# --------------------------------------------------------------------------------
|
|
524
|
+
# /home/runner/work/cli/cli/tekton/target/tasks/aiservice-upgrade.yaml
|
|
525
|
+
# --------------------------------------------------------------------------------
|
|
526
|
+
---
|
|
527
|
+
apiVersion: tekton.dev/v1beta1
|
|
528
|
+
kind: Task
|
|
529
|
+
metadata:
|
|
530
|
+
name: mas-devops-aiservice-upgrade
|
|
531
|
+
spec:
|
|
532
|
+
params:
|
|
533
|
+
# Common: Control the image pull policy for the CLI container image
|
|
534
|
+
- name: image_pull_policy
|
|
535
|
+
type: string
|
|
536
|
+
default: IfNotPresent
|
|
537
|
+
|
|
538
|
+
# Common: Support for saving task execution results to a MongoDb instance
|
|
539
|
+
- name: devops_suite_name
|
|
540
|
+
type: string
|
|
541
|
+
description: Optional name for the junit suite, used to enable save-junit-to-mongo.py
|
|
542
|
+
default: ""
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
- name: aiservice_instance_id
|
|
546
|
+
type: string
|
|
547
|
+
description: AI Service Instance ID
|
|
548
|
+
- name: aiservice_channel
|
|
549
|
+
type: string
|
|
550
|
+
description: AI Service Channnel
|
|
551
|
+
|
|
552
|
+
- name: skip_compatibility_check
|
|
553
|
+
type: string
|
|
554
|
+
default: "False"
|
|
555
|
+
|
|
556
|
+
stepTemplate:
|
|
557
|
+
env:
|
|
558
|
+
- name: DEVOPS_MONGO_URI
|
|
559
|
+
valueFrom:
|
|
560
|
+
secretKeyRef:
|
|
561
|
+
name: mas-devops
|
|
562
|
+
key: DEVOPS_MONGO_URI
|
|
563
|
+
optional: true
|
|
564
|
+
- name: DEVOPS_BUILD_NUMBER
|
|
565
|
+
valueFrom:
|
|
566
|
+
secretKeyRef:
|
|
567
|
+
name: mas-devops
|
|
568
|
+
key: DEVOPS_BUILD_NUMBER
|
|
569
|
+
optional: true
|
|
570
|
+
- name: DEVOPS_ENVIRONMENT
|
|
571
|
+
valueFrom:
|
|
572
|
+
secretKeyRef:
|
|
573
|
+
name: mas-devops
|
|
574
|
+
key: MAS_INSTANCE_ID
|
|
575
|
+
optional: true
|
|
576
|
+
- name: DEVOPS_SUITE_NAME
|
|
577
|
+
value: $(params.devops_suite_name)
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
- name: AISERVICE_INSTANCE_ID
|
|
581
|
+
value: $(params.aiservice_instance_id)
|
|
582
|
+
- name: AISERVICE_CHANNEL
|
|
583
|
+
value: $(params.aiservice_channel)
|
|
584
|
+
- name: SKIP_COMPATIBILITY_CHECK
|
|
585
|
+
value: $(params.skip_compatibility_check)
|
|
586
|
+
steps:
|
|
587
|
+
- name: aiservice-upgrade
|
|
588
|
+
command:
|
|
589
|
+
- /opt/app-root/src/run-role.sh
|
|
590
|
+
- aiservice_upgrade
|
|
591
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
592
|
+
imagePullPolicy: $(params.image_pull_policy)
|
|
593
|
+
# --------------------------------------------------------------------------------
|
|
524
594
|
# /home/runner/work/cli/cli/tekton/target/tasks/aiservice.yaml
|
|
525
595
|
# --------------------------------------------------------------------------------
|
|
526
596
|
---
|
|
@@ -747,7 +817,7 @@ spec:
|
|
|
747
817
|
command:
|
|
748
818
|
- /opt/app-root/src/run-role.sh
|
|
749
819
|
- aiservice
|
|
750
|
-
image: quay.io/ibmmas/cli:15.
|
|
820
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
751
821
|
imagePullPolicy: $(params.image_pull_policy)
|
|
752
822
|
workingDir: /workspace/configs
|
|
753
823
|
|
|
@@ -863,7 +933,7 @@ spec:
|
|
|
863
933
|
command:
|
|
864
934
|
- /opt/app-root/src/run-role.sh
|
|
865
935
|
- appconnect
|
|
866
|
-
image: quay.io/ibmmas/cli:15.
|
|
936
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
867
937
|
imagePullPolicy: $(params.image_pull_policy)
|
|
868
938
|
workingDir: /workspace/configs
|
|
869
939
|
|
|
@@ -981,7 +1051,7 @@ spec:
|
|
|
981
1051
|
command:
|
|
982
1052
|
- /opt/app-root/src/run-role.sh
|
|
983
1053
|
- arcgis
|
|
984
|
-
image: quay.io/ibmmas/cli:15.
|
|
1054
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
985
1055
|
imagePullPolicy: $(params.image_pull_policy)
|
|
986
1056
|
# --------------------------------------------------------------------------------
|
|
987
1057
|
# /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
|
|
@@ -1051,7 +1121,7 @@ spec:
|
|
|
1051
1121
|
command:
|
|
1052
1122
|
- /opt/app-root/src/run-role.sh
|
|
1053
1123
|
- cert_manager
|
|
1054
|
-
image: quay.io/ibmmas/cli:15.
|
|
1124
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
1055
1125
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1056
1126
|
workingDir: /workspace/configs
|
|
1057
1127
|
# --------------------------------------------------------------------------------
|
|
@@ -1117,7 +1187,7 @@ spec:
|
|
|
1117
1187
|
command:
|
|
1118
1188
|
- /opt/app-root/src/run-role.sh
|
|
1119
1189
|
- common_services
|
|
1120
|
-
image: quay.io/ibmmas/cli:15.
|
|
1190
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
1121
1191
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1122
1192
|
workingDir: /workspace/configs
|
|
1123
1193
|
# --------------------------------------------------------------------------------
|
|
@@ -1244,7 +1314,7 @@ spec:
|
|
|
1244
1314
|
command:
|
|
1245
1315
|
- /opt/app-root/src/run-role.sh
|
|
1246
1316
|
- cos
|
|
1247
|
-
image: quay.io/ibmmas/cli:15.
|
|
1317
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
1248
1318
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1249
1319
|
workingDir: /workspace/configs
|
|
1250
1320
|
|
|
@@ -1364,7 +1434,7 @@ spec:
|
|
|
1364
1434
|
command:
|
|
1365
1435
|
- /opt/app-root/src/run-role.sh
|
|
1366
1436
|
- cp4d_service
|
|
1367
|
-
image: quay.io/ibmmas/cli:15.
|
|
1437
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
1368
1438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1369
1439
|
workingDir: /workspace/configs
|
|
1370
1440
|
# --------------------------------------------------------------------------------
|
|
@@ -1481,7 +1551,7 @@ spec:
|
|
|
1481
1551
|
command:
|
|
1482
1552
|
- /opt/app-root/src/run-role.sh
|
|
1483
1553
|
- cp4d_service
|
|
1484
|
-
image: quay.io/ibmmas/cli:15.
|
|
1554
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
1485
1555
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1486
1556
|
workingDir: /workspace/configs
|
|
1487
1557
|
|
|
@@ -1587,7 +1657,7 @@ spec:
|
|
|
1587
1657
|
command:
|
|
1588
1658
|
- /opt/app-root/src/run-role.sh
|
|
1589
1659
|
- cp4d
|
|
1590
|
-
image: quay.io/ibmmas/cli:15.
|
|
1660
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
1591
1661
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1592
1662
|
# --------------------------------------------------------------------------------
|
|
1593
1663
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1909,7 +1979,7 @@ spec:
|
|
|
1909
1979
|
command:
|
|
1910
1980
|
- /opt/app-root/src/run-role.sh
|
|
1911
1981
|
- db2
|
|
1912
|
-
image: quay.io/ibmmas/cli:15.
|
|
1982
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
1913
1983
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1914
1984
|
workingDir: /workspace/configs
|
|
1915
1985
|
|
|
@@ -2019,7 +2089,7 @@ spec:
|
|
|
2019
2089
|
command:
|
|
2020
2090
|
- /opt/app-root/src/run-role.sh
|
|
2021
2091
|
- eck
|
|
2022
|
-
image: quay.io/ibmmas/cli:15.
|
|
2092
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
2023
2093
|
imagePullPolicy: $(params.image_pull_policy)
|
|
2024
2094
|
# --------------------------------------------------------------------------------
|
|
2025
2095
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -2108,7 +2178,7 @@ spec:
|
|
|
2108
2178
|
command:
|
|
2109
2179
|
- /opt/app-root/src/run-role.sh
|
|
2110
2180
|
- gencfg_workspace
|
|
2111
|
-
image: quay.io/ibmmas/cli:15.
|
|
2181
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
2112
2182
|
imagePullPolicy: $(params.image_pull_policy)
|
|
2113
2183
|
workingDir: /workspace/configs
|
|
2114
2184
|
|
|
@@ -2302,7 +2372,7 @@ spec:
|
|
|
2302
2372
|
- -c
|
|
2303
2373
|
name: gitops-aiservice-tenant
|
|
2304
2374
|
imagePullPolicy: IfNotPresent
|
|
2305
|
-
image: quay.io/ibmmas/cli:15.
|
|
2375
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
2306
2376
|
workspaces:
|
|
2307
2377
|
- name: configs
|
|
2308
2378
|
# --------------------------------------------------------------------------------
|
|
@@ -2496,7 +2566,7 @@ spec:
|
|
|
2496
2566
|
- -c
|
|
2497
2567
|
name: gitops-aiservice
|
|
2498
2568
|
imagePullPolicy: IfNotPresent
|
|
2499
|
-
image: quay.io/ibmmas/cli:15.
|
|
2569
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
2500
2570
|
workspaces:
|
|
2501
2571
|
- name: configs
|
|
2502
2572
|
# --------------------------------------------------------------------------------
|
|
@@ -2597,7 +2667,7 @@ spec:
|
|
|
2597
2667
|
- -c
|
|
2598
2668
|
name: gitops-bootstrap
|
|
2599
2669
|
imagePullPolicy: IfNotPresent
|
|
2600
|
-
image: quay.io/ibmmas/cli:15.
|
|
2670
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
2601
2671
|
workspaces:
|
|
2602
2672
|
- name: configs
|
|
2603
2673
|
# --------------------------------------------------------------------------------
|
|
@@ -2679,7 +2749,7 @@ spec:
|
|
|
2679
2749
|
- -c
|
|
2680
2750
|
name: gitops-cis-compliance
|
|
2681
2751
|
imagePullPolicy: IfNotPresent
|
|
2682
|
-
image: quay.io/ibmmas/cli:15.
|
|
2752
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
2683
2753
|
workspaces:
|
|
2684
2754
|
- name: configs
|
|
2685
2755
|
# --------------------------------------------------------------------------------
|
|
@@ -3019,7 +3089,7 @@ spec:
|
|
|
3019
3089
|
- -c
|
|
3020
3090
|
name: gitops-cluster
|
|
3021
3091
|
imagePullPolicy: Always
|
|
3022
|
-
image: quay.io/ibmmas/cli:15.
|
|
3092
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
3023
3093
|
workspaces:
|
|
3024
3094
|
- name: configs
|
|
3025
3095
|
- name: gitops-cluster-configs
|
|
@@ -3128,7 +3198,7 @@ spec:
|
|
|
3128
3198
|
- -c
|
|
3129
3199
|
name: gitops-cos
|
|
3130
3200
|
imagePullPolicy: IfNotPresent
|
|
3131
|
-
image: quay.io/ibmmas/cli:15.
|
|
3201
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
3132
3202
|
workspaces:
|
|
3133
3203
|
- name: configs
|
|
3134
3204
|
# --------------------------------------------------------------------------------
|
|
@@ -3276,7 +3346,7 @@ spec:
|
|
|
3276
3346
|
- -c
|
|
3277
3347
|
name: gitops-cp4d-service
|
|
3278
3348
|
imagePullPolicy: IfNotPresent
|
|
3279
|
-
image: quay.io/ibmmas/cli:15.
|
|
3349
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
3280
3350
|
workspaces:
|
|
3281
3351
|
- name: configs
|
|
3282
3352
|
- name: shared-gitops-configs
|
|
@@ -3405,7 +3475,7 @@ spec:
|
|
|
3405
3475
|
- -c
|
|
3406
3476
|
name: gitops-cp4d
|
|
3407
3477
|
imagePullPolicy: IfNotPresent
|
|
3408
|
-
image: quay.io/ibmmas/cli:15.
|
|
3478
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
3409
3479
|
workspaces:
|
|
3410
3480
|
- name: configs
|
|
3411
3481
|
- name: shared-gitops-configs
|
|
@@ -3696,7 +3766,7 @@ spec:
|
|
|
3696
3766
|
- -c
|
|
3697
3767
|
name: gitops-db2u-database
|
|
3698
3768
|
imagePullPolicy: Always
|
|
3699
|
-
image: quay.io/ibmmas/cli:15.
|
|
3769
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
3700
3770
|
workspaces:
|
|
3701
3771
|
- name: configs
|
|
3702
3772
|
- name: shared-gitops-configs
|
|
@@ -3794,7 +3864,7 @@ spec:
|
|
|
3794
3864
|
- -c
|
|
3795
3865
|
name: gitops-db2u
|
|
3796
3866
|
imagePullPolicy: IfNotPresent
|
|
3797
|
-
image: quay.io/ibmmas/cli:15.
|
|
3867
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
3798
3868
|
workspaces:
|
|
3799
3869
|
- name: configs
|
|
3800
3870
|
# --------------------------------------------------------------------------------
|
|
@@ -3921,7 +3991,7 @@ spec:
|
|
|
3921
3991
|
- -c
|
|
3922
3992
|
name: gitops-delete-jdbc-config
|
|
3923
3993
|
imagePullPolicy: IfNotPresent
|
|
3924
|
-
image: quay.io/ibmmas/cli:15.
|
|
3994
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
3925
3995
|
workspaces:
|
|
3926
3996
|
- name: configs
|
|
3927
3997
|
# --------------------------------------------------------------------------------
|
|
@@ -4019,7 +4089,7 @@ spec:
|
|
|
4019
4089
|
- -c
|
|
4020
4090
|
name: gitops-delete-kafka-config
|
|
4021
4091
|
imagePullPolicy: Always
|
|
4022
|
-
image: quay.io/ibmmas/cli:15.
|
|
4092
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4023
4093
|
workspaces:
|
|
4024
4094
|
- name: configs
|
|
4025
4095
|
|
|
@@ -4115,7 +4185,7 @@ spec:
|
|
|
4115
4185
|
- -c
|
|
4116
4186
|
name: gitops-deprovision-aiservice-tenant
|
|
4117
4187
|
imagePullPolicy: IfNotPresent
|
|
4118
|
-
image: quay.io/ibmmas/cli:15.
|
|
4188
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4119
4189
|
workspaces:
|
|
4120
4190
|
- name: configs
|
|
4121
4191
|
# --------------------------------------------------------------------------------
|
|
@@ -4203,7 +4273,7 @@ spec:
|
|
|
4203
4273
|
- -c
|
|
4204
4274
|
name: gitops-deprovision-aiservice
|
|
4205
4275
|
imagePullPolicy: IfNotPresent
|
|
4206
|
-
image: quay.io/ibmmas/cli:15.
|
|
4276
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4207
4277
|
workspaces:
|
|
4208
4278
|
- name: configs
|
|
4209
4279
|
# --------------------------------------------------------------------------------
|
|
@@ -4291,7 +4361,7 @@ spec:
|
|
|
4291
4361
|
- -c
|
|
4292
4362
|
name: gitops-deprovision-app-config
|
|
4293
4363
|
imagePullPolicy: IfNotPresent
|
|
4294
|
-
image: quay.io/ibmmas/cli:15.
|
|
4364
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4295
4365
|
workspaces:
|
|
4296
4366
|
- name: configs
|
|
4297
4367
|
# --------------------------------------------------------------------------------
|
|
@@ -4376,7 +4446,7 @@ spec:
|
|
|
4376
4446
|
- -c
|
|
4377
4447
|
name: gitops-deprovision-app-install
|
|
4378
4448
|
imagePullPolicy: IfNotPresent
|
|
4379
|
-
image: quay.io/ibmmas/cli:15.
|
|
4449
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4380
4450
|
workspaces:
|
|
4381
4451
|
- name: configs
|
|
4382
4452
|
# --------------------------------------------------------------------------------
|
|
@@ -4461,7 +4531,7 @@ spec:
|
|
|
4461
4531
|
- -c
|
|
4462
4532
|
name: gitops-deprovision-cluster
|
|
4463
4533
|
imagePullPolicy: IfNotPresent
|
|
4464
|
-
image: quay.io/ibmmas/cli:15.
|
|
4534
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4465
4535
|
workspaces:
|
|
4466
4536
|
- name: configs
|
|
4467
4537
|
# --------------------------------------------------------------------------------
|
|
@@ -4580,7 +4650,7 @@ spec:
|
|
|
4580
4650
|
- -c
|
|
4581
4651
|
name: gitops-deprovision-cos
|
|
4582
4652
|
imagePullPolicy: IfNotPresent
|
|
4583
|
-
image: quay.io/ibmmas/cli:15.
|
|
4653
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4584
4654
|
workspaces:
|
|
4585
4655
|
- name: configs
|
|
4586
4656
|
# --------------------------------------------------------------------------------
|
|
@@ -4685,7 +4755,7 @@ spec:
|
|
|
4685
4755
|
- -c
|
|
4686
4756
|
name: gitops-deprovision-cp4d-service
|
|
4687
4757
|
imagePullPolicy: IfNotPresent
|
|
4688
|
-
image: quay.io/ibmmas/cli:15.
|
|
4758
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4689
4759
|
workspaces:
|
|
4690
4760
|
- name: configs# --------------------------------------------------------------------------------
|
|
4691
4761
|
# /home/runner/work/cli/cli/tekton/target/tasks/gitops-deprovision-cp4d.yaml
|
|
@@ -4772,7 +4842,7 @@ spec:
|
|
|
4772
4842
|
- -c
|
|
4773
4843
|
name: gitops-deprovision-cp4d
|
|
4774
4844
|
imagePullPolicy: IfNotPresent
|
|
4775
|
-
image: quay.io/ibmmas/cli:15.
|
|
4845
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4776
4846
|
workspaces:
|
|
4777
4847
|
- name: configs
|
|
4778
4848
|
# --------------------------------------------------------------------------------
|
|
@@ -4857,7 +4927,7 @@ spec:
|
|
|
4857
4927
|
- -c
|
|
4858
4928
|
name: gitops-deprovision-customer-subscription
|
|
4859
4929
|
imagePullPolicy: IfNotPresent
|
|
4860
|
-
image: quay.io/ibmmas/cli:15.
|
|
4930
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4861
4931
|
workspaces:
|
|
4862
4932
|
- name: shared-entitlement
|
|
4863
4933
|
# --------------------------------------------------------------------------------
|
|
@@ -4950,7 +5020,7 @@ spec:
|
|
|
4950
5020
|
- -c
|
|
4951
5021
|
name: gitops-deprovision-db2u-database
|
|
4952
5022
|
imagePullPolicy: IfNotPresent
|
|
4953
|
-
image: quay.io/ibmmas/cli:15.
|
|
5023
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
4954
5024
|
workspaces:
|
|
4955
5025
|
- name: configs
|
|
4956
5026
|
|
|
@@ -5033,7 +5103,7 @@ spec:
|
|
|
5033
5103
|
- -c
|
|
5034
5104
|
name: gitops-deprovision-db2u
|
|
5035
5105
|
imagePullPolicy: IfNotPresent
|
|
5036
|
-
image: quay.io/ibmmas/cli:15.
|
|
5106
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5037
5107
|
workspaces:
|
|
5038
5108
|
- name: configs
|
|
5039
5109
|
|
|
@@ -5145,12 +5215,30 @@ spec:
|
|
|
5145
5215
|
--skip-delete-storage-class \
|
|
5146
5216
|
|| exit 1
|
|
5147
5217
|
|
|
5218
|
+
mas gitops-deprovision-efs -c $CLUSTER_NAME -m $MAS_INSTANCE_ID \
|
|
5219
|
+
--cloud-provider $CLOUD_PROVIDER \
|
|
5220
|
+
--aws-region $SM_AWS_REGION \
|
|
5221
|
+
--aws-secret-key $SM_AWS_SECRET_ACCESS_KEY \
|
|
5222
|
+
--aws-access-key $SM_AWS_ACCESS_KEY_ID \
|
|
5223
|
+
--efs-unique-id "efs-${CLUSTER_NAME}-${MAS_INSTANCE_ID}-manage-main" \
|
|
5224
|
+
--skip-delete-storage-class \
|
|
5225
|
+
|| exit 1
|
|
5226
|
+
|
|
5227
|
+
mas gitops-deprovision-efs -c $CLUSTER_NAME -m $MAS_INSTANCE_ID \
|
|
5228
|
+
--cloud-provider $CLOUD_PROVIDER \
|
|
5229
|
+
--aws-region $SM_AWS_REGION \
|
|
5230
|
+
--aws-secret-key $SM_AWS_SECRET_ACCESS_KEY \
|
|
5231
|
+
--aws-access-key $SM_AWS_ACCESS_KEY_ID \
|
|
5232
|
+
--efs-unique-id "efs-${CLUSTER_NAME}-${MAS_INSTANCE_ID}-facilities-main" \
|
|
5233
|
+
--skip-delete-storage-class \
|
|
5234
|
+
|| exit 1
|
|
5235
|
+
|
|
5148
5236
|
command:
|
|
5149
5237
|
- /bin/sh
|
|
5150
5238
|
- -c
|
|
5151
5239
|
name: gitops-deprovision-efs
|
|
5152
5240
|
imagePullPolicy: IfNotPresent
|
|
5153
|
-
image: quay.io/ibmmas/cli:15.
|
|
5241
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5154
5242
|
workspaces:
|
|
5155
5243
|
- name: configs
|
|
5156
5244
|
|
|
@@ -5260,7 +5348,7 @@ spec:
|
|
|
5260
5348
|
- -c
|
|
5261
5349
|
name: gitops-deprovision-kafka
|
|
5262
5350
|
imagePullPolicy: IfNotPresent
|
|
5263
|
-
image: quay.io/ibmmas/cli:15.
|
|
5351
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5264
5352
|
workspaces:
|
|
5265
5353
|
- name: configs
|
|
5266
5354
|
# --------------------------------------------------------------------------------
|
|
@@ -5363,7 +5451,7 @@ spec:
|
|
|
5363
5451
|
- -c
|
|
5364
5452
|
name: gitops-deprovision-mongo
|
|
5365
5453
|
imagePullPolicy: IfNotPresent
|
|
5366
|
-
image: quay.io/ibmmas/cli:15.
|
|
5454
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5367
5455
|
workspaces:
|
|
5368
5456
|
- name: configs
|
|
5369
5457
|
|
|
@@ -5454,7 +5542,7 @@ spec:
|
|
|
5454
5542
|
- -c
|
|
5455
5543
|
name: gitops-deprovision-odh
|
|
5456
5544
|
imagePullPolicy: IfNotPresent
|
|
5457
|
-
image: quay.io/ibmmas/cli:15.
|
|
5545
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5458
5546
|
workspaces:
|
|
5459
5547
|
- name: configs
|
|
5460
5548
|
# --------------------------------------------------------------------------------
|
|
@@ -5508,7 +5596,7 @@ spec:
|
|
|
5508
5596
|
- -c
|
|
5509
5597
|
name: gitops-deprovision-rosa
|
|
5510
5598
|
imagePullPolicy: IfNotPresent
|
|
5511
|
-
image: quay.io/ibmmas/cli:15.
|
|
5599
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5512
5600
|
workspaces:
|
|
5513
5601
|
- name: configs
|
|
5514
5602
|
# --------------------------------------------------------------------------------
|
|
@@ -5635,7 +5723,7 @@ spec:
|
|
|
5635
5723
|
--mas-app-id "iot" \
|
|
5636
5724
|
--dir /tmp/deprovision-suite-config-iotdb \
|
|
5637
5725
|
--jdbc-type "$JDBC_TYPE_IOT" \
|
|
5638
|
-
--
|
|
5726
|
+
--jdbc-connection-url-additional-params "$JDBC_CONNECTION_URL_ADDITIONAL_PARAMS_IOT" \
|
|
5639
5727
|
--jdbc-route "$JDBC_ROUTE_IOT" \
|
|
5640
5728
|
--jdbc-instance-name "$JDBC_INSTANCE_NAME_IOT" \
|
|
5641
5729
|
|| exit 1
|
|
@@ -5718,7 +5806,7 @@ spec:
|
|
|
5718
5806
|
- -c
|
|
5719
5807
|
name: gitops-deprovision-suite-config
|
|
5720
5808
|
imagePullPolicy: IfNotPresent
|
|
5721
|
-
image: quay.io/ibmmas/cli:15.
|
|
5809
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5722
5810
|
workspaces:
|
|
5723
5811
|
- name: configs
|
|
5724
5812
|
|
|
@@ -5816,7 +5904,7 @@ spec:
|
|
|
5816
5904
|
- -c
|
|
5817
5905
|
name: gitops-deprovision-suite-idp-config
|
|
5818
5906
|
imagePullPolicy: IfNotPresent
|
|
5819
|
-
image: quay.io/ibmmas/cli:15.
|
|
5907
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5820
5908
|
workspaces:
|
|
5821
5909
|
- name: configs
|
|
5822
5910
|
# --------------------------------------------------------------------------------
|
|
@@ -5908,7 +5996,7 @@ spec:
|
|
|
5908
5996
|
- -c
|
|
5909
5997
|
name: gitops-deprovision-suite-objectstorage-config
|
|
5910
5998
|
imagePullPolicy: IfNotPresent
|
|
5911
|
-
image: quay.io/ibmmas/cli:15.
|
|
5999
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
5912
6000
|
workspaces:
|
|
5913
6001
|
- name: configs
|
|
5914
6002
|
# --------------------------------------------------------------------------------
|
|
@@ -6120,7 +6208,7 @@ spec:
|
|
|
6120
6208
|
- -c
|
|
6121
6209
|
name: gitops-deprovision-suite-smtp-config
|
|
6122
6210
|
imagePullPolicy: IfNotPresent
|
|
6123
|
-
image: quay.io/ibmmas/cli:15.
|
|
6211
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6124
6212
|
workspaces:
|
|
6125
6213
|
- name: configs
|
|
6126
6214
|
# --------------------------------------------------------------------------------
|
|
@@ -6213,7 +6301,7 @@ spec:
|
|
|
6213
6301
|
- -c
|
|
6214
6302
|
name: gitops-deprovision-suite-watson-studio-config
|
|
6215
6303
|
imagePullPolicy: IfNotPresent
|
|
6216
|
-
image: quay.io/ibmmas/cli:15.
|
|
6304
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6217
6305
|
workspaces:
|
|
6218
6306
|
- name: configs
|
|
6219
6307
|
# --------------------------------------------------------------------------------
|
|
@@ -6304,7 +6392,7 @@ spec:
|
|
|
6304
6392
|
- -c
|
|
6305
6393
|
name: gitops-deprovision-suite-workspace
|
|
6306
6394
|
imagePullPolicy: Always
|
|
6307
|
-
image: quay.io/ibmmas/cli:15.
|
|
6395
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6308
6396
|
workspaces:
|
|
6309
6397
|
- name: configs
|
|
6310
6398
|
# --------------------------------------------------------------------------------
|
|
@@ -6397,7 +6485,7 @@ spec:
|
|
|
6397
6485
|
- -c
|
|
6398
6486
|
name: gitops-deprovision-suite
|
|
6399
6487
|
imagePullPolicy: IfNotPresent
|
|
6400
|
-
image: quay.io/ibmmas/cli:15.
|
|
6488
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6401
6489
|
workspaces:
|
|
6402
6490
|
- name: configs
|
|
6403
6491
|
|
|
@@ -6510,7 +6598,7 @@ spec:
|
|
|
6510
6598
|
- -c
|
|
6511
6599
|
name: gitops-dro
|
|
6512
6600
|
imagePullPolicy: IfNotPresent
|
|
6513
|
-
image: quay.io/ibmmas/cli:15.
|
|
6601
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6514
6602
|
workspaces:
|
|
6515
6603
|
- name: configs
|
|
6516
6604
|
# --------------------------------------------------------------------------------
|
|
@@ -6632,12 +6720,32 @@ spec:
|
|
|
6632
6720
|
--skip-create-storage-class \
|
|
6633
6721
|
|| exit 1
|
|
6634
6722
|
|
|
6723
|
+
mas gitops-efs -c $CLUSTER_NAME -m $MAS_INSTANCE_ID \
|
|
6724
|
+
--cloud-provider $CLOUD_PROVIDER \
|
|
6725
|
+
--aws-region $SM_AWS_REGION \
|
|
6726
|
+
--aws-secret-key $SM_AWS_SECRET_ACCESS_KEY \
|
|
6727
|
+
--aws-access-key $SM_AWS_ACCESS_KEY_ID \
|
|
6728
|
+
--creation-token-prefix "" \
|
|
6729
|
+
--efs-unique-id "efs-${CLUSTER_NAME}-${MAS_INSTANCE_ID}-manage-main" \
|
|
6730
|
+
--skip-create-storage-class \
|
|
6731
|
+
|| exit 1
|
|
6732
|
+
|
|
6733
|
+
mas gitops-efs -c $CLUSTER_NAME -m $MAS_INSTANCE_ID \
|
|
6734
|
+
--cloud-provider $CLOUD_PROVIDER \
|
|
6735
|
+
--aws-region $SM_AWS_REGION \
|
|
6736
|
+
--aws-secret-key $SM_AWS_SECRET_ACCESS_KEY \
|
|
6737
|
+
--aws-access-key $SM_AWS_ACCESS_KEY_ID \
|
|
6738
|
+
--creation-token-prefix "" \
|
|
6739
|
+
--efs-unique-id "efs-${CLUSTER_NAME}-${MAS_INSTANCE_ID}-facilities-main" \
|
|
6740
|
+
--skip-create-storage-class \
|
|
6741
|
+
|| exit 1
|
|
6742
|
+
|
|
6635
6743
|
command:
|
|
6636
6744
|
- /bin/sh
|
|
6637
6745
|
- -c
|
|
6638
6746
|
name: gitops-efs
|
|
6639
6747
|
imagePullPolicy: IfNotPresent
|
|
6640
|
-
image: quay.io/ibmmas/cli:15.
|
|
6748
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6641
6749
|
workspaces:
|
|
6642
6750
|
- name: configs
|
|
6643
6751
|
|
|
@@ -6772,7 +6880,7 @@ spec:
|
|
|
6772
6880
|
- -c
|
|
6773
6881
|
name: gitops-jdbc-config
|
|
6774
6882
|
imagePullPolicy: Always
|
|
6775
|
-
image: quay.io/ibmmas/cli:15.
|
|
6883
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6776
6884
|
workspaces:
|
|
6777
6885
|
- name: configs
|
|
6778
6886
|
- name: shared-gitops-configs
|
|
@@ -6868,7 +6976,7 @@ spec:
|
|
|
6868
6976
|
- -c
|
|
6869
6977
|
name: gitops-kafka-config
|
|
6870
6978
|
imagePullPolicy: Always
|
|
6871
|
-
image: quay.io/ibmmas/cli:15.
|
|
6979
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6872
6980
|
workspaces:
|
|
6873
6981
|
- name: configs
|
|
6874
6982
|
|
|
@@ -6990,7 +7098,7 @@ spec:
|
|
|
6990
7098
|
- -c
|
|
6991
7099
|
name: gitops-kafka
|
|
6992
7100
|
imagePullPolicy: IfNotPresent
|
|
6993
|
-
image: quay.io/ibmmas/cli:15.
|
|
7101
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
6994
7102
|
workspaces:
|
|
6995
7103
|
- name: configs
|
|
6996
7104
|
# --------------------------------------------------------------------------------
|
|
@@ -7147,7 +7255,7 @@ spec:
|
|
|
7147
7255
|
- -c
|
|
7148
7256
|
name: gitops-license
|
|
7149
7257
|
imagePullPolicy: Always
|
|
7150
|
-
image: quay.io/ibmmas/cli:15.
|
|
7258
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
7151
7259
|
workspaces:
|
|
7152
7260
|
- name: shared-entitlement
|
|
7153
7261
|
|
|
@@ -7869,7 +7977,7 @@ spec:
|
|
|
7869
7977
|
- -c
|
|
7870
7978
|
name: gitops-mas-fvt-preparer
|
|
7871
7979
|
imagePullPolicy: Always
|
|
7872
|
-
image: quay.io/ibmmas/cli:15.
|
|
7980
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
7873
7981
|
workspaces:
|
|
7874
7982
|
- name: configs
|
|
7875
7983
|
- name: shared-additional-configs
|
|
@@ -8369,7 +8477,7 @@ spec:
|
|
|
8369
8477
|
- -c
|
|
8370
8478
|
name: gitops-mas-initiator
|
|
8371
8479
|
imagePullPolicy: IfNotPresent
|
|
8372
|
-
image: quay.io/ibmmas/cli:15.
|
|
8480
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
8373
8481
|
workspaces:
|
|
8374
8482
|
- name: configs
|
|
8375
8483
|
# --------------------------------------------------------------------------------
|
|
@@ -8510,7 +8618,7 @@ spec:
|
|
|
8510
8618
|
- -c
|
|
8511
8619
|
name: gitops-mas-provisioner
|
|
8512
8620
|
imagePullPolicy: IfNotPresent
|
|
8513
|
-
image: quay.io/ibmmas/cli:15.
|
|
8621
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
8514
8622
|
workspaces:
|
|
8515
8623
|
- name: configs
|
|
8516
8624
|
- name: gitops-cluster-configs
|
|
@@ -8619,7 +8727,7 @@ spec:
|
|
|
8619
8727
|
- -c
|
|
8620
8728
|
name: gitops-mongo
|
|
8621
8729
|
imagePullPolicy: IfNotPresent
|
|
8622
|
-
image: quay.io/ibmmas/cli:15.
|
|
8730
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
8623
8731
|
workspaces:
|
|
8624
8732
|
- name: configs
|
|
8625
8733
|
|
|
@@ -8745,7 +8853,7 @@ spec:
|
|
|
8745
8853
|
- -c
|
|
8746
8854
|
name: gitops-nvidia-gpu
|
|
8747
8855
|
imagePullPolicy: IfNotPresent
|
|
8748
|
-
image: quay.io/ibmmas/cli:15.
|
|
8856
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
8749
8857
|
workspaces:
|
|
8750
8858
|
- name: configs
|
|
8751
8859
|
# --------------------------------------------------------------------------------
|
|
@@ -8879,7 +8987,7 @@ spec:
|
|
|
8879
8987
|
- -c
|
|
8880
8988
|
name: gitops-odh
|
|
8881
8989
|
imagePullPolicy: IfNotPresent
|
|
8882
|
-
image: quay.io/ibmmas/cli:15.
|
|
8990
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
8883
8991
|
workspaces:
|
|
8884
8992
|
- name: configs
|
|
8885
8993
|
# --------------------------------------------------------------------------------
|
|
@@ -8997,7 +9105,7 @@ spec:
|
|
|
8997
9105
|
- -c
|
|
8998
9106
|
name: gitops-process-mongo-user
|
|
8999
9107
|
imagePullPolicy: IfNotPresent
|
|
9000
|
-
image: quay.io/ibmmas/cli:15.
|
|
9108
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9001
9109
|
workspaces:
|
|
9002
9110
|
- name: configs
|
|
9003
9111
|
# --------------------------------------------------------------------------------
|
|
@@ -9053,7 +9161,7 @@ spec:
|
|
|
9053
9161
|
- -c
|
|
9054
9162
|
name: gitops-rosa
|
|
9055
9163
|
imagePullPolicy: IfNotPresent
|
|
9056
|
-
image: quay.io/ibmmas/cli:15.
|
|
9164
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9057
9165
|
workspaces:
|
|
9058
9166
|
- name: configs
|
|
9059
9167
|
# --------------------------------------------------------------------------------
|
|
@@ -9186,7 +9294,7 @@ spec:
|
|
|
9186
9294
|
- -c
|
|
9187
9295
|
name: gitops-sls
|
|
9188
9296
|
imagePullPolicy: Always
|
|
9189
|
-
image: quay.io/ibmmas/cli:15.
|
|
9297
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9190
9298
|
workspaces:
|
|
9191
9299
|
- name: shared-entitlement
|
|
9192
9300
|
- name: configs
|
|
@@ -9371,7 +9479,7 @@ spec:
|
|
|
9371
9479
|
- -c
|
|
9372
9480
|
name: gitops-suite-app-config
|
|
9373
9481
|
imagePullPolicy: IfNotPresent
|
|
9374
|
-
image: quay.io/ibmmas/cli:15.
|
|
9482
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9375
9483
|
workspaces:
|
|
9376
9484
|
- name: configs
|
|
9377
9485
|
- name: shared-gitops-configs
|
|
@@ -9529,7 +9637,7 @@ spec:
|
|
|
9529
9637
|
- -c
|
|
9530
9638
|
name: gitops-suite-app-install
|
|
9531
9639
|
imagePullPolicy: Always
|
|
9532
|
-
image: quay.io/ibmmas/cli:15.
|
|
9640
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9533
9641
|
workspaces:
|
|
9534
9642
|
- name: configs
|
|
9535
9643
|
- name: shared-gitops-configs
|
|
@@ -9635,7 +9743,7 @@ spec:
|
|
|
9635
9743
|
- -c
|
|
9636
9744
|
name: gitops-suite-certs
|
|
9637
9745
|
imagePullPolicy: IfNotPresent
|
|
9638
|
-
image: quay.io/ibmmas/cli:15.
|
|
9746
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9639
9747
|
workspaces:
|
|
9640
9748
|
- name: configs
|
|
9641
9749
|
- name: certificates
|
|
@@ -9810,7 +9918,7 @@ spec:
|
|
|
9810
9918
|
- -c
|
|
9811
9919
|
name: gitops-suite-config
|
|
9812
9920
|
imagePullPolicy: IfNotPresent
|
|
9813
|
-
image: quay.io/ibmmas/cli:15.
|
|
9921
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9814
9922
|
workspaces:
|
|
9815
9923
|
- name: configs
|
|
9816
9924
|
- name: shared-additional-configs
|
|
@@ -9910,7 +10018,7 @@ spec:
|
|
|
9910
10018
|
- -c
|
|
9911
10019
|
name: gitops-suite-dns
|
|
9912
10020
|
imagePullPolicy: IfNotPresent
|
|
9913
|
-
image: quay.io/ibmmas/cli:15.
|
|
10021
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
9914
10022
|
workspaces:
|
|
9915
10023
|
- name: configs
|
|
9916
10024
|
|
|
@@ -10034,7 +10142,7 @@ spec:
|
|
|
10034
10142
|
- -c
|
|
10035
10143
|
name: gitops-suite-idp-config
|
|
10036
10144
|
imagePullPolicy: IfNotPresent
|
|
10037
|
-
image: quay.io/ibmmas/cli:15.
|
|
10145
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
10038
10146
|
workspaces:
|
|
10039
10147
|
- name: configs
|
|
10040
10148
|
- name: shared-additional-configs
|
|
@@ -10135,7 +10243,7 @@ spec:
|
|
|
10135
10243
|
- -c
|
|
10136
10244
|
name: gitops-suite-objectstorage-config
|
|
10137
10245
|
imagePullPolicy: IfNotPresent
|
|
10138
|
-
image: quay.io/ibmmas/cli:15.
|
|
10246
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
10139
10247
|
workspaces:
|
|
10140
10248
|
- name: configs
|
|
10141
10249
|
- name: shared-gitops-configs
|
|
@@ -10557,7 +10665,7 @@ spec:
|
|
|
10557
10665
|
- -c
|
|
10558
10666
|
name: gitops-suite-smtp-config
|
|
10559
10667
|
imagePullPolicy: IfNotPresent
|
|
10560
|
-
image: quay.io/ibmmas/cli:15.
|
|
10668
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
10561
10669
|
workspaces:
|
|
10562
10670
|
- name: configs
|
|
10563
10671
|
- name: shared-gitops-configs
|
|
@@ -10677,7 +10785,7 @@ spec:
|
|
|
10677
10785
|
- -c
|
|
10678
10786
|
name: gitops-suite-watson-studio-config
|
|
10679
10787
|
imagePullPolicy: IfNotPresent
|
|
10680
|
-
image: quay.io/ibmmas/cli:15.
|
|
10788
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
10681
10789
|
workspaces:
|
|
10682
10790
|
- name: configs
|
|
10683
10791
|
- name: shared-gitops-configs
|
|
@@ -10779,7 +10887,7 @@ spec:
|
|
|
10779
10887
|
- -c
|
|
10780
10888
|
name: gitops-suite-workspace
|
|
10781
10889
|
imagePullPolicy: IfNotPresent
|
|
10782
|
-
image: quay.io/ibmmas/cli:15.
|
|
10890
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
10783
10891
|
workspaces:
|
|
10784
10892
|
- name: configs
|
|
10785
10893
|
# --------------------------------------------------------------------------------
|
|
@@ -11117,7 +11225,7 @@ spec:
|
|
|
11117
11225
|
- -c
|
|
11118
11226
|
name: gitops-suite
|
|
11119
11227
|
imagePullPolicy: IfNotPresent
|
|
11120
|
-
image: quay.io/ibmmas/cli:15.
|
|
11228
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
11121
11229
|
workspaces:
|
|
11122
11230
|
- name: configs
|
|
11123
11231
|
- name: shared-gitops-configs
|
|
@@ -11167,7 +11275,7 @@ spec:
|
|
|
11167
11275
|
|
|
11168
11276
|
steps:
|
|
11169
11277
|
- name: grafana
|
|
11170
|
-
image: quay.io/ibmmas/cli:15.
|
|
11278
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
11171
11279
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11172
11280
|
command:
|
|
11173
11281
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11301,7 +11409,7 @@ spec:
|
|
|
11301
11409
|
command:
|
|
11302
11410
|
- /opt/app-root/src/run-role.sh
|
|
11303
11411
|
- ibm_catalogs
|
|
11304
|
-
image: quay.io/ibmmas/cli:15.
|
|
11412
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
11305
11413
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11306
11414
|
workingDir: /workspace/configs
|
|
11307
11415
|
# --------------------------------------------------------------------------------
|
|
@@ -11543,7 +11651,7 @@ spec:
|
|
|
11543
11651
|
command:
|
|
11544
11652
|
- /opt/app-root/src/run-role.sh
|
|
11545
11653
|
- kafka
|
|
11546
|
-
image: quay.io/ibmmas/cli:15.
|
|
11654
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
11547
11655
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11548
11656
|
workingDir: /workspace/configs
|
|
11549
11657
|
|
|
@@ -11572,7 +11680,7 @@ spec:
|
|
|
11572
11680
|
# Additional results can be added here in the future
|
|
11573
11681
|
steps:
|
|
11574
11682
|
- name: analyze-config
|
|
11575
|
-
image: quay.io/ibmmas/cli:15.
|
|
11683
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
11576
11684
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11577
11685
|
script: |
|
|
11578
11686
|
#!/bin/bash
|
|
@@ -12069,7 +12177,7 @@ spec:
|
|
|
12069
12177
|
description: Extracted component names as a JSON array
|
|
12070
12178
|
steps:
|
|
12071
12179
|
- name: extract
|
|
12072
|
-
image: quay.io/ibmmas/cli:15.
|
|
12180
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
12073
12181
|
script: |
|
|
12074
12182
|
#!/bin/sh
|
|
12075
12183
|
echo "Hello.. Start extraction for $(params.mas_appws_components)"
|
|
@@ -12274,6 +12382,30 @@ spec:
|
|
|
12274
12382
|
name: mas-fvt-core
|
|
12275
12383
|
key: LDAP_CRT
|
|
12276
12384
|
optional: false
|
|
12385
|
+
- name: KEYCLOAK_ADMIN_USERNAME
|
|
12386
|
+
valueFrom:
|
|
12387
|
+
secretKeyRef:
|
|
12388
|
+
name: mas-fvt-core
|
|
12389
|
+
key: KEYCLOAK_ADMIN_USERNAME
|
|
12390
|
+
optional: false
|
|
12391
|
+
- name: KEYCLOAK_ADMIN_PASSWORD
|
|
12392
|
+
valueFrom:
|
|
12393
|
+
secretKeyRef:
|
|
12394
|
+
name: mas-fvt-core
|
|
12395
|
+
key: KEYCLOAK_ADMIN_PASSWORD
|
|
12396
|
+
optional: false
|
|
12397
|
+
- name: KEYCLOAK_BASE_URL
|
|
12398
|
+
valueFrom:
|
|
12399
|
+
secretKeyRef:
|
|
12400
|
+
name: mas-fvt-core
|
|
12401
|
+
key: KEYCLOAK_BASE_URL
|
|
12402
|
+
optional: false
|
|
12403
|
+
- name: KEYCLOAK_REALM_NAME
|
|
12404
|
+
valueFrom:
|
|
12405
|
+
secretKeyRef:
|
|
12406
|
+
name: mas-fvt-core
|
|
12407
|
+
key: KEYCLOAK_REALM_NAME
|
|
12408
|
+
optional: false
|
|
12277
12409
|
|
|
12278
12410
|
steps:
|
|
12279
12411
|
- image: '$(params.fvt_image_registry)/mas-devops/fvt-ibm-mas@$(params.fvt_image_digest)'
|
|
@@ -12422,7 +12554,7 @@ spec:
|
|
|
12422
12554
|
echo "No IBM COS instance to delete"
|
|
12423
12555
|
fi
|
|
12424
12556
|
exit 0
|
|
12425
|
-
image: quay.io/ibmmas/cli:15.
|
|
12557
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
12426
12558
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12427
12559
|
workingDir: /workspace/configs
|
|
12428
12560
|
env:
|
|
@@ -12522,7 +12654,7 @@ spec:
|
|
|
12522
12654
|
echo "No EventStreams instance to delete"
|
|
12523
12655
|
fi
|
|
12524
12656
|
exit 0
|
|
12525
|
-
image: quay.io/ibmmas/cli:15.
|
|
12657
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
12526
12658
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12527
12659
|
workingDir: /workspace/configs
|
|
12528
12660
|
env:
|
|
@@ -12623,7 +12755,7 @@ spec:
|
|
|
12623
12755
|
command:
|
|
12624
12756
|
- /opt/app-root/src/run-role.sh
|
|
12625
12757
|
- ocp_deprovision
|
|
12626
|
-
image: quay.io/ibmmas/cli:15.
|
|
12758
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
12627
12759
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12628
12760
|
env:
|
|
12629
12761
|
- name: DEVOPS_MONGO_URI
|
|
@@ -12780,7 +12912,7 @@ spec:
|
|
|
12780
12912
|
command:
|
|
12781
12913
|
- python3
|
|
12782
12914
|
- /opt/app-root/src/finalizer.py
|
|
12783
|
-
image: quay.io/ibmmas/cli:15.
|
|
12915
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
12784
12916
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12785
12917
|
env:
|
|
12786
12918
|
- name: DEVOPS_MONGO_URI
|
|
@@ -14484,7 +14616,7 @@ spec:
|
|
|
14484
14616
|
command:
|
|
14485
14617
|
- python3
|
|
14486
14618
|
- /opt/app-root/src/mobilever.py
|
|
14487
|
-
image: quay.io/ibmmas/cli:15.
|
|
14619
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
14488
14620
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14489
14621
|
onError: continue
|
|
14490
14622
|
|
|
@@ -14847,7 +14979,7 @@ spec:
|
|
|
14847
14979
|
|
|
14848
14980
|
steps:
|
|
14849
14981
|
- name: post-update-verify
|
|
14850
|
-
image: quay.io/ibmmas/cli:15.
|
|
14982
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
14851
14983
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14852
14984
|
command:
|
|
14853
14985
|
- ansible-playbook
|
|
@@ -14903,7 +15035,7 @@ spec:
|
|
|
14903
15035
|
|
|
14904
15036
|
steps:
|
|
14905
15037
|
- name: create-offline-upgrade-cron
|
|
14906
|
-
image: quay.io/ibmmas/cli:15.
|
|
15038
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
14907
15039
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14908
15040
|
command:
|
|
14909
15041
|
- ansible-playbook
|
|
@@ -14959,7 +15091,7 @@ spec:
|
|
|
14959
15091
|
|
|
14960
15092
|
steps:
|
|
14961
15093
|
- name: create-offline-upgrade-cron
|
|
14962
|
-
image: quay.io/ibmmas/cli:15.
|
|
15094
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
14963
15095
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14964
15096
|
command:
|
|
14965
15097
|
- ansible-playbook
|
|
@@ -15176,6 +15308,30 @@ spec:
|
|
|
15176
15308
|
name: mas-fvt-core
|
|
15177
15309
|
key: PARTIUM_PASSWORD
|
|
15178
15310
|
optional: true
|
|
15311
|
+
- name: KEYCLOAK_ADMIN_USERNAME
|
|
15312
|
+
valueFrom:
|
|
15313
|
+
secretKeyRef:
|
|
15314
|
+
name: mas-fvt-core
|
|
15315
|
+
key: KEYCLOAK_ADMIN_USERNAME
|
|
15316
|
+
optional: false
|
|
15317
|
+
- name: KEYCLOAK_ADMIN_PASSWORD
|
|
15318
|
+
valueFrom:
|
|
15319
|
+
secretKeyRef:
|
|
15320
|
+
name: mas-fvt-core
|
|
15321
|
+
key: KEYCLOAK_ADMIN_PASSWORD
|
|
15322
|
+
optional: false
|
|
15323
|
+
- name: KEYCLOAK_BASE_URL
|
|
15324
|
+
valueFrom:
|
|
15325
|
+
secretKeyRef:
|
|
15326
|
+
name: mas-fvt-core
|
|
15327
|
+
key: KEYCLOAK_BASE_URL
|
|
15328
|
+
optional: false
|
|
15329
|
+
- name: KEYCLOAK_REALM_NAME
|
|
15330
|
+
valueFrom:
|
|
15331
|
+
secretKeyRef:
|
|
15332
|
+
name: mas-fvt-core
|
|
15333
|
+
key: KEYCLOAK_REALM_NAME
|
|
15334
|
+
optional: false
|
|
15179
15335
|
# To enable collection of logs and screenshots
|
|
15180
15336
|
- name: ARTIFACTORY_TOKEN
|
|
15181
15337
|
valueFrom:
|
|
@@ -15393,7 +15549,7 @@ spec:
|
|
|
15393
15549
|
echo '--------------------------------------------------------------------------------'
|
|
15394
15550
|
exit $RESULT
|
|
15395
15551
|
timeout: "0"
|
|
15396
|
-
image: quay.io/ibmmas/cli:15.
|
|
15552
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15397
15553
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15398
15554
|
env:
|
|
15399
15555
|
- name: DEVOPS_MONGO_URI
|
|
@@ -15453,7 +15609,7 @@ spec:
|
|
|
15453
15609
|
echo '--------------------------------------------------------------------------------'
|
|
15454
15610
|
exit $RESULT
|
|
15455
15611
|
timeout: "0"
|
|
15456
|
-
image: quay.io/ibmmas/cli:15.
|
|
15612
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15457
15613
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15458
15614
|
env:
|
|
15459
15615
|
- name: DEVOPS_MONGO_URI
|
|
@@ -15526,7 +15682,7 @@ spec:
|
|
|
15526
15682
|
echo '--------------------------------------------------------------------------------'
|
|
15527
15683
|
exit $RESULT
|
|
15528
15684
|
timeout: "0"
|
|
15529
|
-
image: quay.io/ibmmas/cli:15.
|
|
15685
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15530
15686
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15531
15687
|
env:
|
|
15532
15688
|
- name: DEVOPS_MONGO_URI
|
|
@@ -15572,7 +15728,7 @@ spec:
|
|
|
15572
15728
|
|
|
15573
15729
|
steps:
|
|
15574
15730
|
- name: start-pipelinerun
|
|
15575
|
-
image: quay.io/ibmmas/cli:15.
|
|
15731
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15576
15732
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15577
15733
|
command:
|
|
15578
15734
|
- ansible-playbook
|
|
@@ -15669,7 +15825,7 @@ spec:
|
|
|
15669
15825
|
optional: false
|
|
15670
15826
|
|
|
15671
15827
|
- name: wait-for-pipelinerun
|
|
15672
|
-
image: quay.io/ibmmas/cli:15.
|
|
15828
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15673
15829
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15674
15830
|
# 50 retries at 5 minute intervals = just over 4 hours
|
|
15675
15831
|
command:
|
|
@@ -15713,7 +15869,7 @@ spec:
|
|
|
15713
15869
|
|
|
15714
15870
|
steps:
|
|
15715
15871
|
- name: start-pipelinerun
|
|
15716
|
-
image: quay.io/ibmmas/cli:15.
|
|
15872
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15717
15873
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15718
15874
|
command:
|
|
15719
15875
|
- ansible-playbook
|
|
@@ -15864,9 +16020,32 @@ spec:
|
|
|
15864
16020
|
name: mas-fvt-core
|
|
15865
16021
|
key: LDAP_CRT
|
|
15866
16022
|
optional: false
|
|
15867
|
-
|
|
16023
|
+
- name: KEYCLOAK_ADMIN_USERNAME
|
|
16024
|
+
valueFrom:
|
|
16025
|
+
secretKeyRef:
|
|
16026
|
+
name: mas-fvt-core
|
|
16027
|
+
key: KEYCLOAK_ADMIN_USERNAME
|
|
16028
|
+
optional: false
|
|
16029
|
+
- name: KEYCLOAK_ADMIN_PASSWORD
|
|
16030
|
+
valueFrom:
|
|
16031
|
+
secretKeyRef:
|
|
16032
|
+
name: mas-fvt-core
|
|
16033
|
+
key: KEYCLOAK_ADMIN_PASSWORD
|
|
16034
|
+
optional: false
|
|
16035
|
+
- name: KEYCLOAK_BASE_URL
|
|
16036
|
+
valueFrom:
|
|
16037
|
+
secretKeyRef:
|
|
16038
|
+
name: mas-fvt-core
|
|
16039
|
+
key: KEYCLOAK_BASE_URL
|
|
16040
|
+
optional: false
|
|
16041
|
+
- name: KEYCLOAK_REALM_NAME
|
|
16042
|
+
valueFrom:
|
|
16043
|
+
secretKeyRef:
|
|
16044
|
+
name: mas-fvt-core
|
|
16045
|
+
key: KEYCLOAK_REALM_NAME
|
|
16046
|
+
optional: false
|
|
15868
16047
|
- name: wait-for-pipelinerun
|
|
15869
|
-
image: quay.io/ibmmas/cli:15.
|
|
16048
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15870
16049
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15871
16050
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
15872
16051
|
command:
|
|
@@ -15915,7 +16094,7 @@ spec:
|
|
|
15915
16094
|
|
|
15916
16095
|
steps:
|
|
15917
16096
|
- name: start-pipelinerun
|
|
15918
|
-
image: quay.io/ibmmas/cli:15.
|
|
16097
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15919
16098
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15920
16099
|
command:
|
|
15921
16100
|
- ansible-playbook
|
|
@@ -15965,7 +16144,7 @@ spec:
|
|
|
15965
16144
|
|
|
15966
16145
|
steps:
|
|
15967
16146
|
- name: start-pipelinerun
|
|
15968
|
-
image: quay.io/ibmmas/cli:15.
|
|
16147
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
15969
16148
|
imagePullPolicy: $(params.image_pull_policy)
|
|
15970
16149
|
command:
|
|
15971
16150
|
- ansible-playbook
|
|
@@ -16044,7 +16223,7 @@ spec:
|
|
|
16044
16223
|
optional: false
|
|
16045
16224
|
|
|
16046
16225
|
- name: wait-for-pipelinerun
|
|
16047
|
-
image: quay.io/ibmmas/cli:15.
|
|
16226
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16048
16227
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16049
16228
|
# 15 retries at 5 minute intervals = just over 1 hour
|
|
16050
16229
|
command:
|
|
@@ -16089,7 +16268,7 @@ spec:
|
|
|
16089
16268
|
|
|
16090
16269
|
steps:
|
|
16091
16270
|
- name: start-pipelinerun
|
|
16092
|
-
image: quay.io/ibmmas/cli:15.
|
|
16271
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16093
16272
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16094
16273
|
command:
|
|
16095
16274
|
- ansible-playbook
|
|
@@ -16217,7 +16396,7 @@ spec:
|
|
|
16217
16396
|
optional: false
|
|
16218
16397
|
|
|
16219
16398
|
- name: wait-for-pipelinerun
|
|
16220
|
-
image: quay.io/ibmmas/cli:15.
|
|
16399
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16221
16400
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16222
16401
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
16223
16402
|
command:
|
|
@@ -16261,7 +16440,7 @@ spec:
|
|
|
16261
16440
|
|
|
16262
16441
|
steps:
|
|
16263
16442
|
- name: start-pipelinerun
|
|
16264
|
-
image: quay.io/ibmmas/cli:15.
|
|
16443
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16265
16444
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16266
16445
|
command:
|
|
16267
16446
|
- ansible-playbook
|
|
@@ -16414,7 +16593,7 @@ spec:
|
|
|
16414
16593
|
optional: false
|
|
16415
16594
|
|
|
16416
16595
|
- name: wait-for-pipelinerun
|
|
16417
|
-
image: quay.io/ibmmas/cli:15.
|
|
16596
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16418
16597
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16419
16598
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
16420
16599
|
command:
|
|
@@ -16464,7 +16643,7 @@ spec:
|
|
|
16464
16643
|
|
|
16465
16644
|
steps:
|
|
16466
16645
|
- name: start-pytest-pipelinerun
|
|
16467
|
-
image: quay.io/ibmmas/cli:15.
|
|
16646
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16468
16647
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16469
16648
|
command:
|
|
16470
16649
|
- ansible-playbook
|
|
@@ -16544,7 +16723,7 @@ spec:
|
|
|
16544
16723
|
optional: false
|
|
16545
16724
|
|
|
16546
16725
|
- name: wait-for-pytest-pipelinerun
|
|
16547
|
-
image: quay.io/ibmmas/cli:15.
|
|
16726
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16548
16727
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16549
16728
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
16550
16729
|
command:
|
|
@@ -16570,7 +16749,7 @@ spec:
|
|
|
16570
16749
|
value: "True"
|
|
16571
16750
|
|
|
16572
16751
|
- name: start-testng-pipelinerun
|
|
16573
|
-
image: quay.io/ibmmas/cli:15.
|
|
16752
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16574
16753
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16575
16754
|
command:
|
|
16576
16755
|
- ansible-playbook
|
|
@@ -16669,7 +16848,7 @@ spec:
|
|
|
16669
16848
|
optional: false
|
|
16670
16849
|
|
|
16671
16850
|
- name: wait-for-testng-pipelinerun
|
|
16672
|
-
image: quay.io/ibmmas/cli:15.
|
|
16851
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16673
16852
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16674
16853
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
16675
16854
|
command:
|
|
@@ -16695,7 +16874,7 @@ spec:
|
|
|
16695
16874
|
value: "True"
|
|
16696
16875
|
|
|
16697
16876
|
- name: start-requests-pipelinerun
|
|
16698
|
-
image: quay.io/ibmmas/cli:15.
|
|
16877
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16699
16878
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16700
16879
|
command:
|
|
16701
16880
|
- ansible-playbook
|
|
@@ -16777,7 +16956,7 @@ spec:
|
|
|
16777
16956
|
optional: false
|
|
16778
16957
|
|
|
16779
16958
|
- name: wait-for-requests-pipelinerun
|
|
16780
|
-
image: quay.io/ibmmas/cli:15.
|
|
16959
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16781
16960
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16782
16961
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
16783
16962
|
command:
|
|
@@ -16821,7 +17000,7 @@ spec:
|
|
|
16821
17000
|
|
|
16822
17001
|
steps:
|
|
16823
17002
|
- name: start-pipelinerun
|
|
16824
|
-
image: quay.io/ibmmas/cli:15.
|
|
17003
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16825
17004
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16826
17005
|
command:
|
|
16827
17006
|
- ansible-playbook
|
|
@@ -16912,7 +17091,7 @@ spec:
|
|
|
16912
17091
|
optional: false
|
|
16913
17092
|
|
|
16914
17093
|
- name: wait-for-pipelinerun
|
|
16915
|
-
image: quay.io/ibmmas/cli:15.
|
|
17094
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16916
17095
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16917
17096
|
# 50 retries at 5 minute intervals = 4 hours
|
|
16918
17097
|
command:
|
|
@@ -16956,7 +17135,7 @@ spec:
|
|
|
16956
17135
|
|
|
16957
17136
|
steps:
|
|
16958
17137
|
- name: start-pipelinerun
|
|
16959
|
-
image: quay.io/ibmmas/cli:15.
|
|
17138
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
16960
17139
|
imagePullPolicy: $(params.image_pull_policy)
|
|
16961
17140
|
command:
|
|
16962
17141
|
- ansible-playbook
|
|
@@ -17047,7 +17226,7 @@ spec:
|
|
|
17047
17226
|
optional: false
|
|
17048
17227
|
|
|
17049
17228
|
- name: wait-for-pipelinerun
|
|
17050
|
-
image: quay.io/ibmmas/cli:15.
|
|
17229
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17051
17230
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17052
17231
|
# 50 retries at 5 minute intervals = 4 hours
|
|
17053
17232
|
command:
|
|
@@ -17091,7 +17270,7 @@ spec:
|
|
|
17091
17270
|
|
|
17092
17271
|
steps:
|
|
17093
17272
|
- name: start-pipelinerun
|
|
17094
|
-
image: quay.io/ibmmas/cli:15.
|
|
17273
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17095
17274
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17096
17275
|
command:
|
|
17097
17276
|
- ansible-playbook
|
|
@@ -17170,7 +17349,7 @@ spec:
|
|
|
17170
17349
|
optional: false
|
|
17171
17350
|
|
|
17172
17351
|
- name: wait-for-pipelinerun
|
|
17173
|
-
image: quay.io/ibmmas/cli:15.
|
|
17352
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17174
17353
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17175
17354
|
# 50 retries at 5 minute intervals = 4 hours
|
|
17176
17355
|
command:
|
|
@@ -17214,7 +17393,7 @@ spec:
|
|
|
17214
17393
|
|
|
17215
17394
|
steps:
|
|
17216
17395
|
- name: start-pipelinerun
|
|
17217
|
-
image: quay.io/ibmmas/cli:15.
|
|
17396
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17218
17397
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17219
17398
|
command:
|
|
17220
17399
|
- ansible-playbook
|
|
@@ -17299,7 +17478,7 @@ spec:
|
|
|
17299
17478
|
optional: false
|
|
17300
17479
|
|
|
17301
17480
|
- name: wait-for-pipelinerun
|
|
17302
|
-
image: quay.io/ibmmas/cli:15.
|
|
17481
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17303
17482
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17304
17483
|
# 15 retries at 5 minute intervals = just over 1 hour
|
|
17305
17484
|
command:
|
|
@@ -17343,7 +17522,7 @@ spec:
|
|
|
17343
17522
|
|
|
17344
17523
|
steps:
|
|
17345
17524
|
- name: start-pipelinerun
|
|
17346
|
-
image: quay.io/ibmmas/cli:15.
|
|
17525
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17347
17526
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17348
17527
|
command:
|
|
17349
17528
|
- ansible-playbook
|
|
@@ -17439,7 +17618,7 @@ spec:
|
|
|
17439
17618
|
optional: false
|
|
17440
17619
|
|
|
17441
17620
|
- name: wait-for-pipelinerun
|
|
17442
|
-
image: quay.io/ibmmas/cli:15.
|
|
17621
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17443
17622
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17444
17623
|
# 10 retries at 5 minute intervals = 50 min
|
|
17445
17624
|
command:
|
|
@@ -17487,7 +17666,7 @@ spec:
|
|
|
17487
17666
|
|
|
17488
17667
|
steps:
|
|
17489
17668
|
- name: start-pipelinerun
|
|
17490
|
-
image: quay.io/ibmmas/cli:15.
|
|
17669
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17491
17670
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17492
17671
|
command:
|
|
17493
17672
|
- ansible-playbook
|
|
@@ -17591,7 +17770,7 @@ spec:
|
|
|
17591
17770
|
optional: false
|
|
17592
17771
|
|
|
17593
17772
|
- name: wait-for-pipelinerun
|
|
17594
|
-
image: quay.io/ibmmas/cli:15.
|
|
17773
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17595
17774
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17596
17775
|
# 10 retries at 5 minute intervals = 50 min
|
|
17597
17776
|
command:
|
|
@@ -17635,7 +17814,7 @@ spec:
|
|
|
17635
17814
|
|
|
17636
17815
|
steps:
|
|
17637
17816
|
- name: start-pipelinerun
|
|
17638
|
-
image: quay.io/ibmmas/cli:15.
|
|
17817
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17639
17818
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17640
17819
|
command:
|
|
17641
17820
|
- ansible-playbook
|
|
@@ -17714,7 +17893,7 @@ spec:
|
|
|
17714
17893
|
optional: false
|
|
17715
17894
|
|
|
17716
17895
|
- name: wait-for-pipelinerun
|
|
17717
|
-
image: quay.io/ibmmas/cli:15.
|
|
17896
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17718
17897
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17719
17898
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
17720
17899
|
command:
|
|
@@ -17758,7 +17937,7 @@ spec:
|
|
|
17758
17937
|
|
|
17759
17938
|
steps:
|
|
17760
17939
|
- name: start-pipelinerun
|
|
17761
|
-
image: quay.io/ibmmas/cli:15.
|
|
17940
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17762
17941
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17763
17942
|
command:
|
|
17764
17943
|
- ansible-playbook
|
|
@@ -17863,7 +18042,7 @@ spec:
|
|
|
17863
18042
|
optional: false
|
|
17864
18043
|
|
|
17865
18044
|
- name: wait-for-pipelinerun
|
|
17866
|
-
image: quay.io/ibmmas/cli:15.
|
|
18045
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17867
18046
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17868
18047
|
# 50 retries at 10 minute intervals = just over 8 hours
|
|
17869
18048
|
command:
|
|
@@ -17991,7 +18170,7 @@ spec:
|
|
|
17991
18170
|
command:
|
|
17992
18171
|
- /opt/app-root/src/run-role.sh
|
|
17993
18172
|
- minio
|
|
17994
|
-
image: quay.io/ibmmas/cli:15.
|
|
18173
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
17995
18174
|
imagePullPolicy: $(params.image_pull_policy)
|
|
17996
18175
|
# --------------------------------------------------------------------------------
|
|
17997
18176
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
@@ -18169,7 +18348,7 @@ spec:
|
|
|
18169
18348
|
command:
|
|
18170
18349
|
- /opt/app-root/src/run-role.sh
|
|
18171
18350
|
- mongodb
|
|
18172
|
-
image: quay.io/ibmmas/cli:15.
|
|
18351
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18173
18352
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18174
18353
|
workingDir: /workspace/configs
|
|
18175
18354
|
|
|
@@ -18212,7 +18391,7 @@ spec:
|
|
|
18212
18391
|
- $(params.base_output_dir)
|
|
18213
18392
|
- --extra-namespaces
|
|
18214
18393
|
- selenium
|
|
18215
|
-
image: quay.io/ibmmas/cli:15.
|
|
18394
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18216
18395
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18217
18396
|
env:
|
|
18218
18397
|
- name: DEVOPS_MONGO_URI
|
|
@@ -18329,7 +18508,7 @@ spec:
|
|
|
18329
18508
|
command:
|
|
18330
18509
|
- /opt/app-root/src/run-role.sh
|
|
18331
18510
|
- nvidia_gpu
|
|
18332
|
-
image: quay.io/ibmmas/cli:15.
|
|
18511
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18333
18512
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18334
18513
|
workingDir: /workspace/configs
|
|
18335
18514
|
|
|
@@ -18365,7 +18544,7 @@ spec:
|
|
|
18365
18544
|
# Verify Cluster
|
|
18366
18545
|
# -------------------------------------------------------------------------
|
|
18367
18546
|
- name: ocp-verify-cluster
|
|
18368
|
-
image: quay.io/ibmmas/cli:15.
|
|
18547
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18369
18548
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18370
18549
|
command:
|
|
18371
18550
|
- /opt/app-root/src/run-role.sh
|
|
@@ -18407,7 +18586,7 @@ spec:
|
|
|
18407
18586
|
# Verify Catalogs
|
|
18408
18587
|
# -------------------------------------------------------------------------
|
|
18409
18588
|
- name: ocp-verify-catalogs
|
|
18410
|
-
image: quay.io/ibmmas/cli:15.
|
|
18589
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18411
18590
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18412
18591
|
command:
|
|
18413
18592
|
- /opt/app-root/src/run-role.sh
|
|
@@ -18449,7 +18628,7 @@ spec:
|
|
|
18449
18628
|
# Verify Subscriptions
|
|
18450
18629
|
# -------------------------------------------------------------------------
|
|
18451
18630
|
- name: ocp-verify-subscriptions
|
|
18452
|
-
image: quay.io/ibmmas/cli:15.
|
|
18631
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18453
18632
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18454
18633
|
command:
|
|
18455
18634
|
- /opt/app-root/src/run-role.sh
|
|
@@ -18491,7 +18670,7 @@ spec:
|
|
|
18491
18670
|
# Verify Workloads
|
|
18492
18671
|
# -------------------------------------------------------------------------
|
|
18493
18672
|
- name: ocp-verify-workloads
|
|
18494
|
-
image: quay.io/ibmmas/cli:15.
|
|
18673
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18495
18674
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18496
18675
|
command:
|
|
18497
18676
|
- /opt/app-root/src/run-role.sh
|
|
@@ -18533,7 +18712,7 @@ spec:
|
|
|
18533
18712
|
# Verify Catalogs - Ingress TLS
|
|
18534
18713
|
# -------------------------------------------------------------------------
|
|
18535
18714
|
- name: ocp-verify-ingress
|
|
18536
|
-
image: quay.io/ibmmas/cli:15.
|
|
18715
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18537
18716
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18538
18717
|
command:
|
|
18539
18718
|
- /opt/app-root/src/run-role.sh
|
|
@@ -18659,7 +18838,7 @@ spec:
|
|
|
18659
18838
|
command:
|
|
18660
18839
|
- /opt/app-root/src/run-role.sh
|
|
18661
18840
|
- ocp_verify
|
|
18662
|
-
image: quay.io/ibmmas/cli:15.
|
|
18841
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18663
18842
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18664
18843
|
workingDir: /workspace/configs
|
|
18665
18844
|
# --------------------------------------------------------------------------------
|
|
@@ -18727,7 +18906,7 @@ spec:
|
|
|
18727
18906
|
command:
|
|
18728
18907
|
- /opt/app-root/src/run-role.sh
|
|
18729
18908
|
- ocs
|
|
18730
|
-
image: quay.io/ibmmas/cli:15.
|
|
18909
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18731
18910
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18732
18911
|
workingDir: /workspace/configs
|
|
18733
18912
|
|
|
@@ -18856,7 +19035,7 @@ spec:
|
|
|
18856
19035
|
command:
|
|
18857
19036
|
- /opt/app-root/src/run-role.sh
|
|
18858
19037
|
- aiservice_odh
|
|
18859
|
-
image: quay.io/ibmmas/cli:15.
|
|
19038
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
18860
19039
|
imagePullPolicy: $(params.image_pull_policy)
|
|
18861
19040
|
# --------------------------------------------------------------------------------
|
|
18862
19041
|
# /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
|
|
@@ -19032,7 +19211,7 @@ spec:
|
|
|
19032
19211
|
command:
|
|
19033
19212
|
- /opt/app-root/src/run-role.sh
|
|
19034
19213
|
- sls
|
|
19035
|
-
image: quay.io/ibmmas/cli:15.
|
|
19214
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
19036
19215
|
imagePullPolicy: $(params.image_pull_policy)
|
|
19037
19216
|
workingDir: /workspace/configs
|
|
19038
19217
|
|
|
@@ -19492,12 +19671,12 @@ spec:
|
|
|
19492
19671
|
command:
|
|
19493
19672
|
- /opt/app-root/src/run-role.sh
|
|
19494
19673
|
- suite_app_config
|
|
19495
|
-
image: quay.io/ibmmas/cli:15.
|
|
19674
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
19496
19675
|
imagePullPolicy: $(params.image_pull_policy)
|
|
19497
19676
|
|
|
19498
19677
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
19499
19678
|
- name: app-cfg-post-verify
|
|
19500
|
-
image: quay.io/ibmmas/cli:15.
|
|
19679
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
19501
19680
|
imagePullPolicy: $(params.image_pull_policy)
|
|
19502
19681
|
command:
|
|
19503
19682
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -19692,7 +19871,7 @@ spec:
|
|
|
19692
19871
|
command:
|
|
19693
19872
|
- /opt/app-root/src/run-role.sh
|
|
19694
19873
|
- suite_app_install
|
|
19695
|
-
image: quay.io/ibmmas/cli:15.
|
|
19874
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
19696
19875
|
imagePullPolicy: $(params.image_pull_policy)
|
|
19697
19876
|
|
|
19698
19877
|
workspaces:
|
|
@@ -19781,7 +19960,7 @@ spec:
|
|
|
19781
19960
|
command:
|
|
19782
19961
|
- /opt/app-root/src/run-role.sh
|
|
19783
19962
|
- suite_app_rollback
|
|
19784
|
-
image: quay.io/ibmmas/cli:15.
|
|
19963
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
19785
19964
|
imagePullPolicy: $(params.image_pull_policy)
|
|
19786
19965
|
# --------------------------------------------------------------------------------
|
|
19787
19966
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -19844,7 +20023,7 @@ spec:
|
|
|
19844
20023
|
command:
|
|
19845
20024
|
- /opt/app-root/src/run-role.sh
|
|
19846
20025
|
- suite_app_uninstall
|
|
19847
|
-
image: quay.io/ibmmas/cli:15.
|
|
20026
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
19848
20027
|
imagePullPolicy: $(params.image_pull_policy)
|
|
19849
20028
|
# --------------------------------------------------------------------------------
|
|
19850
20029
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -19919,7 +20098,7 @@ spec:
|
|
|
19919
20098
|
command:
|
|
19920
20099
|
- /opt/app-root/src/run-role.sh
|
|
19921
20100
|
- suite_app_upgrade
|
|
19922
|
-
image: quay.io/ibmmas/cli:15.
|
|
20101
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
19923
20102
|
imagePullPolicy: $(params.image_pull_policy)
|
|
19924
20103
|
# --------------------------------------------------------------------------------
|
|
19925
20104
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -20020,7 +20199,7 @@ spec:
|
|
|
20020
20199
|
command:
|
|
20021
20200
|
- /opt/app-root/src/run-role.sh
|
|
20022
20201
|
- suite_app_verify
|
|
20023
|
-
image: quay.io/ibmmas/cli:15.
|
|
20202
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
20024
20203
|
imagePullPolicy: $(params.image_pull_policy)
|
|
20025
20204
|
# --------------------------------------------------------------------------------
|
|
20026
20205
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -20163,7 +20342,7 @@ spec:
|
|
|
20163
20342
|
command:
|
|
20164
20343
|
- /opt/app-root/src/run-role.sh
|
|
20165
20344
|
- suite_certs
|
|
20166
|
-
image: quay.io/ibmmas/cli:15.
|
|
20345
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
20167
20346
|
imagePullPolicy: $(params.image_pull_policy)
|
|
20168
20347
|
|
|
20169
20348
|
workspaces:
|
|
@@ -20230,7 +20409,7 @@ spec:
|
|
|
20230
20409
|
command:
|
|
20231
20410
|
- /opt/app-root/src/run-role.sh
|
|
20232
20411
|
- suite_config
|
|
20233
|
-
image: quay.io/ibmmas/cli:15.
|
|
20412
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
20234
20413
|
imagePullPolicy: $(params.image_pull_policy)
|
|
20235
20414
|
workingDir: /workspace/configs
|
|
20236
20415
|
|
|
@@ -20562,7 +20741,7 @@ spec:
|
|
|
20562
20741
|
command:
|
|
20563
20742
|
- /opt/app-root/src/run-role.sh
|
|
20564
20743
|
- suite_db2_setup_for_facilities
|
|
20565
|
-
image: quay.io/ibmmas/cli:15.
|
|
20744
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
20566
20745
|
imagePullPolicy: $(params.image_pull_policy)
|
|
20567
20746
|
workingDir: /workspace/configs
|
|
20568
20747
|
|
|
@@ -20634,7 +20813,7 @@ spec:
|
|
|
20634
20813
|
command:
|
|
20635
20814
|
- /opt/app-root/src/run-role.sh
|
|
20636
20815
|
- suite_db2_setup_for_manage
|
|
20637
|
-
image: quay.io/ibmmas/cli:15.
|
|
20816
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
20638
20817
|
imagePullPolicy: $(params.image_pull_policy)
|
|
20639
20818
|
# --------------------------------------------------------------------------------
|
|
20640
20819
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -20829,7 +21008,7 @@ spec:
|
|
|
20829
21008
|
command:
|
|
20830
21009
|
- /opt/app-root/src/run-role.sh
|
|
20831
21010
|
- suite_dns
|
|
20832
|
-
image: quay.io/ibmmas/cli:15.
|
|
21011
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
20833
21012
|
imagePullPolicy: $(params.image_pull_policy)
|
|
20834
21013
|
# --------------------------------------------------------------------------------
|
|
20835
21014
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -21078,7 +21257,7 @@ spec:
|
|
|
21078
21257
|
command:
|
|
21079
21258
|
- /opt/app-root/src/run-role.sh
|
|
21080
21259
|
- suite_install
|
|
21081
|
-
image: quay.io/ibmmas/cli:15.
|
|
21260
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21082
21261
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21083
21262
|
workingDir: /workspace/configs
|
|
21084
21263
|
|
|
@@ -21166,7 +21345,7 @@ spec:
|
|
|
21166
21345
|
command:
|
|
21167
21346
|
- /opt/app-root/src/run-role.sh
|
|
21168
21347
|
- suite_rollback
|
|
21169
|
-
image: quay.io/ibmmas/cli:15.
|
|
21348
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21170
21349
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21171
21350
|
# --------------------------------------------------------------------------------
|
|
21172
21351
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -21231,7 +21410,7 @@ spec:
|
|
|
21231
21410
|
command:
|
|
21232
21411
|
- /opt/app-root/src/run-role.sh
|
|
21233
21412
|
- suite_uninstall
|
|
21234
|
-
image: quay.io/ibmmas/cli:15.
|
|
21413
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21235
21414
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21236
21415
|
# --------------------------------------------------------------------------------
|
|
21237
21416
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -21301,7 +21480,7 @@ spec:
|
|
|
21301
21480
|
command:
|
|
21302
21481
|
- /opt/app-root/src/run-role.sh
|
|
21303
21482
|
- suite_upgrade
|
|
21304
|
-
image: quay.io/ibmmas/cli:15.
|
|
21483
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21305
21484
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21306
21485
|
# --------------------------------------------------------------------------------
|
|
21307
21486
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -21363,12 +21542,12 @@ spec:
|
|
|
21363
21542
|
command:
|
|
21364
21543
|
- /opt/app-root/src/run-role.sh
|
|
21365
21544
|
- suite_verify
|
|
21366
|
-
image: quay.io/ibmmas/cli:15.
|
|
21545
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21367
21546
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21368
21547
|
|
|
21369
21548
|
# If configmap/approval-suite-verify exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
21370
21549
|
- name: suite-post-verify
|
|
21371
|
-
image: quay.io/ibmmas/cli:15.
|
|
21550
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21372
21551
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21373
21552
|
command:
|
|
21374
21553
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -21491,7 +21670,7 @@ spec:
|
|
|
21491
21670
|
command:
|
|
21492
21671
|
- /opt/app-root/src/run-role.sh
|
|
21493
21672
|
- turbonomic
|
|
21494
|
-
image: quay.io/ibmmas/cli:15.
|
|
21673
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21495
21674
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21496
21675
|
# --------------------------------------------------------------------------------
|
|
21497
21676
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -21572,7 +21751,7 @@ spec:
|
|
|
21572
21751
|
# IBM User Data Services (UDS)
|
|
21573
21752
|
# -------------------------------------------------------------------------
|
|
21574
21753
|
- name: uds
|
|
21575
|
-
image: quay.io/ibmmas/cli:15.
|
|
21754
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21576
21755
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21577
21756
|
workingDir: /workspace/configs
|
|
21578
21757
|
command:
|
|
@@ -21635,7 +21814,7 @@ spec:
|
|
|
21635
21814
|
# IBM Data Reporter Operator (DRO)
|
|
21636
21815
|
# -------------------------------------------------------------------------
|
|
21637
21816
|
- name: dro
|
|
21638
|
-
image: quay.io/ibmmas/cli:15.
|
|
21817
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21639
21818
|
imagePullPolicy: $(params.image_pull_policy)
|
|
21640
21819
|
workingDir: /workspace/configs
|
|
21641
21820
|
command:
|
|
@@ -21721,7 +21900,7 @@ spec:
|
|
|
21721
21900
|
description: "The value to set"
|
|
21722
21901
|
steps:
|
|
21723
21902
|
- name: update-configmap
|
|
21724
|
-
image: quay.io/ibmmas/cli:15.
|
|
21903
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21725
21904
|
command:
|
|
21726
21905
|
- /opt/app-root/src/update-configmap.sh
|
|
21727
21906
|
env:
|
|
@@ -21768,7 +21947,7 @@ spec:
|
|
|
21768
21947
|
|
|
21769
21948
|
steps:
|
|
21770
21949
|
- name: wait-for-configmap
|
|
21771
|
-
image: quay.io/ibmmas/cli:15.
|
|
21950
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21772
21951
|
command:
|
|
21773
21952
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
21774
21953
|
env:
|
|
@@ -21849,7 +22028,7 @@ spec:
|
|
|
21849
22028
|
|
|
21850
22029
|
steps:
|
|
21851
22030
|
- name: wait-for-configmap
|
|
21852
|
-
image: quay.io/ibmmas/cli:15.
|
|
22031
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21853
22032
|
command:
|
|
21854
22033
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
21855
22034
|
env:
|
|
@@ -21909,7 +22088,7 @@ spec:
|
|
|
21909
22088
|
|
|
21910
22089
|
steps:
|
|
21911
22090
|
- name: wait
|
|
21912
|
-
image: quay.io/ibmmas/cli:15.
|
|
22091
|
+
image: quay.io/ibmmas/cli:15.11.0
|
|
21913
22092
|
command:
|
|
21914
22093
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
21915
22094
|
env:
|
|
@@ -23495,6 +23674,170 @@ spec:
|
|
|
23495
23674
|
# This variable is only available in the finally tasks and can have any one of the values (Succeeded, Failed, Completed, or None)
|
|
23496
23675
|
value: $(tasks.status)
|
|
23497
23676
|
# --------------------------------------------------------------------------------
|
|
23677
|
+
# /home/runner/work/cli/cli/tekton/target/pipelines/aiservice-upgrade.yaml
|
|
23678
|
+
# --------------------------------------------------------------------------------
|
|
23679
|
+
---
|
|
23680
|
+
apiVersion: tekton.dev/v1beta1
|
|
23681
|
+
kind: Pipeline
|
|
23682
|
+
metadata:
|
|
23683
|
+
name: aiservice-upgrade
|
|
23684
|
+
spec:
|
|
23685
|
+
workspaces:
|
|
23686
|
+
# The generated configuration files
|
|
23687
|
+
- name: shared-configs
|
|
23688
|
+
# PodTemplates configurations
|
|
23689
|
+
- name: shared-pod-templates
|
|
23690
|
+
params:
|
|
23691
|
+
# 1. Common Parameters
|
|
23692
|
+
# -------------------------------------------------------------------------
|
|
23693
|
+
# Common Parameters
|
|
23694
|
+
# -------------------------------------------------------------------------
|
|
23695
|
+
# Tekton Pipeline image pull policy (for ibmmas/cli images)
|
|
23696
|
+
- name: image_pull_policy
|
|
23697
|
+
type: string
|
|
23698
|
+
default: IfNotPresent
|
|
23699
|
+
description: Pull policy for pipeline container images
|
|
23700
|
+
|
|
23701
|
+
# Development Build Support
|
|
23702
|
+
- name: artifactory_username
|
|
23703
|
+
default: ""
|
|
23704
|
+
type: string
|
|
23705
|
+
description: Required to install development MAS catalogs
|
|
23706
|
+
- name: artifactory_token
|
|
23707
|
+
default: ""
|
|
23708
|
+
type: string
|
|
23709
|
+
description: Required to install development MAS catalogs
|
|
23710
|
+
|
|
23711
|
+
# Custom Labels
|
|
23712
|
+
- name: custom_labels
|
|
23713
|
+
type: string
|
|
23714
|
+
default: ""
|
|
23715
|
+
description: Optional custom labels, comma separated list of key=value pairs
|
|
23716
|
+
|
|
23717
|
+
|
|
23718
|
+
# MAS Configuration
|
|
23719
|
+
- name: mas_channel
|
|
23720
|
+
type: string
|
|
23721
|
+
default: ""
|
|
23722
|
+
- name: mas_instance_id
|
|
23723
|
+
type: string
|
|
23724
|
+
default: ""
|
|
23725
|
+
|
|
23726
|
+
|
|
23727
|
+
- name: aiservice_instance_id
|
|
23728
|
+
type: string
|
|
23729
|
+
description: AI Service Instance ID
|
|
23730
|
+
- name: aiservice_channel
|
|
23731
|
+
type: string
|
|
23732
|
+
description: AI Service Channnel
|
|
23733
|
+
- name: skip_pre_check
|
|
23734
|
+
type: string
|
|
23735
|
+
default: ""
|
|
23736
|
+
|
|
23737
|
+
# 2. Upgrade
|
|
23738
|
+
# -------------------------------------------------------------------------
|
|
23739
|
+
- name: skip_compatibility_check
|
|
23740
|
+
type: string
|
|
23741
|
+
default: "False"
|
|
23742
|
+
description: Skip performing compatiblity checks before upgrade
|
|
23743
|
+
|
|
23744
|
+
tasks:
|
|
23745
|
+
# 1. Wait for approval & verify health of the cluster before we change anything
|
|
23746
|
+
# -------------------------------------------------------------------------
|
|
23747
|
+
- name: waitfor-approval
|
|
23748
|
+
timeout: "0"
|
|
23749
|
+
taskRef:
|
|
23750
|
+
kind: Task
|
|
23751
|
+
name: mas-devops-wait-for-configmap-v2
|
|
23752
|
+
params:
|
|
23753
|
+
- name: image_pull_policy
|
|
23754
|
+
value: $(params.image_pull_policy)
|
|
23755
|
+
- name: configmap_name
|
|
23756
|
+
value: approval-upgrade
|
|
23757
|
+
|
|
23758
|
+
- name: pre-upgrade-check
|
|
23759
|
+
timeout: "0"
|
|
23760
|
+
taskRef:
|
|
23761
|
+
kind: Task
|
|
23762
|
+
name: mas-devops-ocp-verify-all
|
|
23763
|
+
params:
|
|
23764
|
+
# Controls the image pull policy for the ibmmas/cli image
|
|
23765
|
+
- name: image_pull_policy
|
|
23766
|
+
value: $(params.image_pull_policy)
|
|
23767
|
+
|
|
23768
|
+
# Pipeline Config
|
|
23769
|
+
- name: skip_pre_check
|
|
23770
|
+
value: $(params.skip_pre_check)
|
|
23771
|
+
- name: devops_suite_name
|
|
23772
|
+
value: pre-upgrade-check
|
|
23773
|
+
when:
|
|
23774
|
+
- input: "$(params.skip_pre_check)"
|
|
23775
|
+
operator: notin
|
|
23776
|
+
values: ["True", "true"]
|
|
23777
|
+
|
|
23778
|
+
runAfter:
|
|
23779
|
+
- waitfor-approval
|
|
23780
|
+
|
|
23781
|
+
# 2. AI Service Upgrade
|
|
23782
|
+
# -------------------------------------------------------------------------
|
|
23783
|
+
- name: aiservice-upgrade
|
|
23784
|
+
timeout: "0"
|
|
23785
|
+
params:
|
|
23786
|
+
- name: aiservice_instance_id
|
|
23787
|
+
value: $(params.aiservice_instance_id)
|
|
23788
|
+
- name: aiservice_channel
|
|
23789
|
+
value: $(params.aiservice_channel)
|
|
23790
|
+
- name: skip_compatibility_check
|
|
23791
|
+
value: $(params.skip_compatibility_check)
|
|
23792
|
+
taskRef:
|
|
23793
|
+
kind: Task
|
|
23794
|
+
name: mas-devops-aiservice-upgrade
|
|
23795
|
+
runAfter:
|
|
23796
|
+
- pre-upgrade-check
|
|
23797
|
+
|
|
23798
|
+
# 3. Verify health of the cluster after upgrade
|
|
23799
|
+
# -------------------------------------------------------------------------
|
|
23800
|
+
- name: post-upgrade-verify
|
|
23801
|
+
timeout: "0"
|
|
23802
|
+
taskRef:
|
|
23803
|
+
kind: Task
|
|
23804
|
+
name: mas-devops-ocp-verify-all
|
|
23805
|
+
params:
|
|
23806
|
+
# Controls the image pull policy for the ibmmas/cli image
|
|
23807
|
+
- name: image_pull_policy
|
|
23808
|
+
value: $(params.image_pull_policy)
|
|
23809
|
+
|
|
23810
|
+
# Pipeline Config
|
|
23811
|
+
- name: skip_pre_check
|
|
23812
|
+
value: $(params.skip_pre_check)
|
|
23813
|
+
- name: devops_suite_name
|
|
23814
|
+
value: post-upgrade-verify
|
|
23815
|
+
when:
|
|
23816
|
+
- input: "$(params.skip_pre_check)"
|
|
23817
|
+
operator: notin
|
|
23818
|
+
values: ["True", "true"]
|
|
23819
|
+
|
|
23820
|
+
runAfter:
|
|
23821
|
+
- aiservice-upgrade
|
|
23822
|
+
|
|
23823
|
+
finally:
|
|
23824
|
+
# Update synchronization configmap
|
|
23825
|
+
# -------------------------------------------------------------------------
|
|
23826
|
+
- name: sync-upgrade
|
|
23827
|
+
timeout: "0"
|
|
23828
|
+
taskRef:
|
|
23829
|
+
kind: Task
|
|
23830
|
+
name: mas-devops-update-configmap
|
|
23831
|
+
params:
|
|
23832
|
+
- name: image_pull_policy
|
|
23833
|
+
value: $(params.image_pull_policy)
|
|
23834
|
+
- name: configmap_name
|
|
23835
|
+
value: sync-upgrade
|
|
23836
|
+
- name: configmap_value
|
|
23837
|
+
# An aggregate status of all the pipelineTasks under the tasks section (excluding the finally section).
|
|
23838
|
+
# This variable is only available in the finally tasks and can have any one of the values (Succeeded, Failed, Completed, or None)
|
|
23839
|
+
value: $(tasks.status)
|
|
23840
|
+
# --------------------------------------------------------------------------------
|
|
23498
23841
|
# /home/runner/work/cli/cli/tekton/target/pipelines/deprovision-cluster-after-deprovision.yaml
|
|
23499
23842
|
# --------------------------------------------------------------------------------
|
|
23500
23843
|
---
|
|
@@ -34141,37 +34484,6 @@ spec:
|
|
|
34141
34484
|
operator: notin
|
|
34142
34485
|
values: [""]
|
|
34143
34486
|
|
|
34144
|
-
- name: kyverno-dependencies
|
|
34145
|
-
timeout: "0"
|
|
34146
|
-
taskRef:
|
|
34147
|
-
kind: Task
|
|
34148
|
-
name: mas-ivt-core
|
|
34149
|
-
workspaces:
|
|
34150
|
-
- name: configs
|
|
34151
|
-
workspace: shared-configs
|
|
34152
|
-
params:
|
|
34153
|
-
- name: mas_instance_id
|
|
34154
|
-
value: $(params.mas_instance_id)
|
|
34155
|
-
- name: mas_workspace_id
|
|
34156
|
-
value: $(params.mas_workspace_id)
|
|
34157
|
-
- name: fvt_image_registry
|
|
34158
|
-
value: $(params.fvt_image_registry)
|
|
34159
|
-
- name: fvt_image_digest
|
|
34160
|
-
value: $(params.ivt_digest_core)
|
|
34161
|
-
|
|
34162
|
-
- name: product_id
|
|
34163
|
-
value: ibm-mas
|
|
34164
|
-
- name: product_channel
|
|
34165
|
-
value: $(params.mas_channel)
|
|
34166
|
-
- name: fvt_test_suite
|
|
34167
|
-
value: kyverno-dependencies
|
|
34168
|
-
when:
|
|
34169
|
-
- input: "$(params.ivt_digest_core)"
|
|
34170
|
-
operator: notin
|
|
34171
|
-
values: [""]
|
|
34172
|
-
runAfter:
|
|
34173
|
-
- kyverno
|
|
34174
|
-
|
|
34175
34487
|
# Core FVT 1.0 coreidp-auth ~20m - Refresh token and authentication patterns
|
|
34176
34488
|
# We are running this test first since it happens to set the Suite accessTokenTimeout from the default of 30m to 12h
|
|
34177
34489
|
# This prevents subsequent test suites that take >30 mins from hitting unexpected 401s due to tokens generated by
|
|
@@ -34201,7 +34513,7 @@ spec:
|
|
|
34201
34513
|
- name: fvt_test_suite
|
|
34202
34514
|
value: coreidp-auth
|
|
34203
34515
|
runAfter:
|
|
34204
|
-
- kyverno
|
|
34516
|
+
- kyverno
|
|
34205
34517
|
|
|
34206
34518
|
# Phase 1
|
|
34207
34519
|
# -------------------------------------------------------------------------
|
|
@@ -41274,6 +41586,43 @@ spec:
|
|
|
41274
41586
|
- name: fvt_test_suite
|
|
41275
41587
|
value: mobile-api-insp-forms
|
|
41276
41588
|
|
|
41589
|
+
- name: mobile-pytest-insp-results
|
|
41590
|
+
taskRef:
|
|
41591
|
+
kind: Task
|
|
41592
|
+
name: mas-fvt-mobile-pytest
|
|
41593
|
+
timeout: "0"
|
|
41594
|
+
workspaces:
|
|
41595
|
+
- name: configs
|
|
41596
|
+
workspace: shared-configs
|
|
41597
|
+
when:
|
|
41598
|
+
- input: "$(params.mas_app_channel_manage)"
|
|
41599
|
+
operator: notin
|
|
41600
|
+
values: [""]
|
|
41601
|
+
- input: "$(params.fvt_digest_mobile_pytest)"
|
|
41602
|
+
operator: notin
|
|
41603
|
+
values: [""]
|
|
41604
|
+
- input: "$(params.launchfvt_mobile_requests)"
|
|
41605
|
+
operator: in
|
|
41606
|
+
values: ["true", "True"]
|
|
41607
|
+
|
|
41608
|
+
params:
|
|
41609
|
+
- name: fvt_image_registry
|
|
41610
|
+
value: $(params.fvt_image_registry)
|
|
41611
|
+
- name: fvt_image_digest
|
|
41612
|
+
value: $(params.fvt_digest_mobile_pytest)
|
|
41613
|
+
- name: mas_instance_id
|
|
41614
|
+
value: $(params.mas_instance_id)
|
|
41615
|
+
- name: mas_workspace_id
|
|
41616
|
+
value: $(params.mas_workspace_id)
|
|
41617
|
+
- name: product_channel
|
|
41618
|
+
value: $(params.mas_app_channel_manage)
|
|
41619
|
+
- name: input_data_file
|
|
41620
|
+
value: "MobilePytestSetup.data"
|
|
41621
|
+
- name: fvt_test_suite
|
|
41622
|
+
value: mobile-api-insp-results
|
|
41623
|
+
runAfter:
|
|
41624
|
+
- mobile-pytest-insp-forms
|
|
41625
|
+
|
|
41277
41626
|
# --------------------------------------------------------------------------------
|
|
41278
41627
|
# /home/runner/work/cli/cli/tekton/target/pipelines/mas-fvt-mobile-testng.yaml
|
|
41279
41628
|
# --------------------------------------------------------------------------------
|