mas-cli 10.4.0__py3-none-any.whl → 10.4.2__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/cli.py +36 -1
- mas/cli/install/app.py +85 -12
- mas/cli/install/argParser.py +63 -2
- mas/cli/templates/ibm-mas-tekton.yaml +98 -627
- {mas_cli-10.4.0.data → mas_cli-10.4.2.data}/scripts/mas-cli +1 -1
- {mas_cli-10.4.0.dist-info → mas_cli-10.4.2.dist-info}/METADATA +1 -1
- {mas_cli-10.4.0.dist-info → mas_cli-10.4.2.dist-info}/RECORD +10 -10
- {mas_cli-10.4.0.dist-info → mas_cli-10.4.2.dist-info}/WHEEL +1 -1
- {mas_cli-10.4.0.dist-info → mas_cli-10.4.2.dist-info}/top_level.txt +0 -0
|
@@ -108,7 +108,7 @@ spec:
|
|
|
108
108
|
command:
|
|
109
109
|
- /opt/app-root/src/run-role.sh
|
|
110
110
|
- appconnect
|
|
111
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
111
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
112
112
|
imagePullPolicy: $(params.image_pull_policy)
|
|
113
113
|
workingDir: /workspace/configs
|
|
114
114
|
|
|
@@ -226,7 +226,7 @@ spec:
|
|
|
226
226
|
command:
|
|
227
227
|
- /opt/app-root/src/run-role.sh
|
|
228
228
|
- arcgis
|
|
229
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
229
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
230
230
|
imagePullPolicy: $(params.image_pull_policy)
|
|
231
231
|
# --------------------------------------------------------------------------------
|
|
232
232
|
# /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
|
|
@@ -296,7 +296,7 @@ spec:
|
|
|
296
296
|
command:
|
|
297
297
|
- /opt/app-root/src/run-role.sh
|
|
298
298
|
- cert_manager
|
|
299
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
299
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
300
300
|
imagePullPolicy: $(params.image_pull_policy)
|
|
301
301
|
workingDir: /workspace/configs
|
|
302
302
|
# --------------------------------------------------------------------------------
|
|
@@ -359,102 +359,7 @@ spec:
|
|
|
359
359
|
command:
|
|
360
360
|
- /opt/app-root/src/run-role.sh
|
|
361
361
|
- common_services
|
|
362
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
363
|
-
imagePullPolicy: $(params.image_pull_policy)
|
|
364
|
-
workingDir: /workspace/configs
|
|
365
|
-
# --------------------------------------------------------------------------------
|
|
366
|
-
# /home/runner/work/cli/cli/tekton/target/tasks/cos-deprovision.yaml
|
|
367
|
-
# --------------------------------------------------------------------------------
|
|
368
|
-
---
|
|
369
|
-
apiVersion: tekton.dev/v1beta1
|
|
370
|
-
kind: Task
|
|
371
|
-
metadata:
|
|
372
|
-
name: mas-devops-cos-deprovision
|
|
373
|
-
spec:
|
|
374
|
-
params:
|
|
375
|
-
# Common: Control the image pull policy for the CLI container image
|
|
376
|
-
- name: image_pull_policy
|
|
377
|
-
type: string
|
|
378
|
-
default: IfNotPresent
|
|
379
|
-
|
|
380
|
-
# Common: Support for saving task execution results to a MongoDb instance
|
|
381
|
-
- name: devops_suite_name
|
|
382
|
-
type: string
|
|
383
|
-
description: Optional name for the junit suite, used to enable save-junit-to-mongo.py
|
|
384
|
-
default: ""
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
# General
|
|
388
|
-
- name: mas_instance_id
|
|
389
|
-
type: string
|
|
390
|
-
|
|
391
|
-
# COS Details
|
|
392
|
-
- name: cos_type
|
|
393
|
-
type: string
|
|
394
|
-
description: COS Provider (ibm and ocs are supported)
|
|
395
|
-
default: ""
|
|
396
|
-
- name: ibmcloud_apikey
|
|
397
|
-
type: string
|
|
398
|
-
description: API Key used to create COS instance in IBM Cloud
|
|
399
|
-
default: ""
|
|
400
|
-
- name: ibmcloud_resourcegroup
|
|
401
|
-
type: string
|
|
402
|
-
description: Name of an existing Resource Group in IBM Cloud account
|
|
403
|
-
default: "Default"
|
|
404
|
-
- name: cos_resourcegroup
|
|
405
|
-
type: string
|
|
406
|
-
description: Name of an existing COS Resource Group in IBM Cloud account
|
|
407
|
-
default: ""
|
|
408
|
-
- name: cos_action
|
|
409
|
-
type: string
|
|
410
|
-
description: COS action to be performed (provision or deprovision)
|
|
411
|
-
default: ""
|
|
412
|
-
|
|
413
|
-
stepTemplate:
|
|
414
|
-
env:
|
|
415
|
-
- name: DEVOPS_MONGO_URI
|
|
416
|
-
valueFrom:
|
|
417
|
-
secretKeyRef:
|
|
418
|
-
name: mas-devops
|
|
419
|
-
key: DEVOPS_MONGO_URI
|
|
420
|
-
optional: true
|
|
421
|
-
- name: DEVOPS_BUILD_NUMBER
|
|
422
|
-
valueFrom:
|
|
423
|
-
secretKeyRef:
|
|
424
|
-
name: mas-devops
|
|
425
|
-
key: DEVOPS_BUILD_NUMBER
|
|
426
|
-
optional: true
|
|
427
|
-
- name: DEVOPS_ENVIRONMENT
|
|
428
|
-
valueFrom:
|
|
429
|
-
secretKeyRef:
|
|
430
|
-
name: mas-devops
|
|
431
|
-
key: MAS_INSTANCE_ID
|
|
432
|
-
optional: true
|
|
433
|
-
- name: DEVOPS_SUITE_NAME
|
|
434
|
-
value: $(params.devops_suite_name)
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
# General
|
|
438
|
-
- name: MAS_INSTANCE_ID
|
|
439
|
-
value: $(params.mas_instance_id)
|
|
440
|
-
|
|
441
|
-
# COS Details
|
|
442
|
-
- name: COS_TYPE
|
|
443
|
-
value: $(params.cos_type)
|
|
444
|
-
- name: COS_ACTION
|
|
445
|
-
value: $(params.cos_action)
|
|
446
|
-
- name: IBMCLOUD_APIKEY
|
|
447
|
-
value: $(params.ibmcloud_apikey)
|
|
448
|
-
- name: COS_RESOURCEGROUP
|
|
449
|
-
value: $(params.cos_resourcegroup)
|
|
450
|
-
- name: IBMCLOUD_RESOURCEGROUP
|
|
451
|
-
value: $(params.ibmcloud_resourcegroup)
|
|
452
|
-
steps:
|
|
453
|
-
- name: cos-deprovision
|
|
454
|
-
command:
|
|
455
|
-
- /opt/app-root/src/run-role.sh
|
|
456
|
-
- cos
|
|
457
|
-
image: quay.io/ibmmas/cli:10.4.0
|
|
362
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
458
363
|
imagePullPolicy: $(params.image_pull_policy)
|
|
459
364
|
workingDir: /workspace/configs
|
|
460
365
|
# --------------------------------------------------------------------------------
|
|
@@ -569,7 +474,7 @@ spec:
|
|
|
569
474
|
command:
|
|
570
475
|
- /opt/app-root/src/run-role.sh
|
|
571
476
|
- cos
|
|
572
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
477
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
573
478
|
imagePullPolicy: $(params.image_pull_policy)
|
|
574
479
|
workingDir: /workspace/configs
|
|
575
480
|
|
|
@@ -689,7 +594,7 @@ spec:
|
|
|
689
594
|
command:
|
|
690
595
|
- /opt/app-root/src/run-role.sh
|
|
691
596
|
- cp4d_service
|
|
692
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
597
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
693
598
|
imagePullPolicy: $(params.image_pull_policy)
|
|
694
599
|
workingDir: /workspace/configs
|
|
695
600
|
# --------------------------------------------------------------------------------
|
|
@@ -806,7 +711,7 @@ spec:
|
|
|
806
711
|
command:
|
|
807
712
|
- /opt/app-root/src/run-role.sh
|
|
808
713
|
- cp4d_service
|
|
809
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
714
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
810
715
|
imagePullPolicy: $(params.image_pull_policy)
|
|
811
716
|
workingDir: /workspace/configs
|
|
812
717
|
|
|
@@ -912,7 +817,7 @@ spec:
|
|
|
912
817
|
command:
|
|
913
818
|
- /opt/app-root/src/run-role.sh
|
|
914
819
|
- cp4d
|
|
915
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
820
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
916
821
|
imagePullPolicy: $(params.image_pull_policy)
|
|
917
822
|
# --------------------------------------------------------------------------------
|
|
918
823
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1234,7 +1139,7 @@ spec:
|
|
|
1234
1139
|
command:
|
|
1235
1140
|
- /opt/app-root/src/run-role.sh
|
|
1236
1141
|
- db2
|
|
1237
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1142
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1238
1143
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1239
1144
|
workingDir: /workspace/configs
|
|
1240
1145
|
|
|
@@ -1337,7 +1242,7 @@ spec:
|
|
|
1337
1242
|
command:
|
|
1338
1243
|
- /opt/app-root/src/run-role.sh
|
|
1339
1244
|
- eck
|
|
1340
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1245
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1341
1246
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1342
1247
|
# --------------------------------------------------------------------------------
|
|
1343
1248
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1426,7 +1331,7 @@ spec:
|
|
|
1426
1331
|
command:
|
|
1427
1332
|
- /opt/app-root/src/run-role.sh
|
|
1428
1333
|
- gencfg_workspace
|
|
1429
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1334
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1430
1335
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1431
1336
|
workingDir: /workspace/configs
|
|
1432
1337
|
|
|
@@ -1530,7 +1435,7 @@ spec:
|
|
|
1530
1435
|
- -c
|
|
1531
1436
|
name: gitops-bootstrap
|
|
1532
1437
|
imagePullPolicy: IfNotPresent
|
|
1533
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1438
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1534
1439
|
workspaces:
|
|
1535
1440
|
- name: configs
|
|
1536
1441
|
# --------------------------------------------------------------------------------
|
|
@@ -1607,7 +1512,7 @@ spec:
|
|
|
1607
1512
|
- -c
|
|
1608
1513
|
name: gitops-cis-compliance
|
|
1609
1514
|
imagePullPolicy: IfNotPresent
|
|
1610
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1515
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1611
1516
|
workspaces:
|
|
1612
1517
|
- name: configs
|
|
1613
1518
|
# --------------------------------------------------------------------------------
|
|
@@ -1786,7 +1691,7 @@ spec:
|
|
|
1786
1691
|
- -c
|
|
1787
1692
|
name: gitops-cluster
|
|
1788
1693
|
imagePullPolicy: Always
|
|
1789
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1694
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1790
1695
|
workspaces:
|
|
1791
1696
|
- name: configs
|
|
1792
1697
|
# --------------------------------------------------------------------------------
|
|
@@ -1870,7 +1775,7 @@ spec:
|
|
|
1870
1775
|
- -c
|
|
1871
1776
|
name: gitops-cos
|
|
1872
1777
|
imagePullPolicy: IfNotPresent
|
|
1873
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1778
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1874
1779
|
workspaces:
|
|
1875
1780
|
- name: configs
|
|
1876
1781
|
# --------------------------------------------------------------------------------
|
|
@@ -1983,7 +1888,7 @@ spec:
|
|
|
1983
1888
|
- -c
|
|
1984
1889
|
name: gitops-cp4d-service
|
|
1985
1890
|
imagePullPolicy: IfNotPresent
|
|
1986
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1891
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
1987
1892
|
workspaces:
|
|
1988
1893
|
- name: configs
|
|
1989
1894
|
- name: shared-gitops-configs
|
|
@@ -2092,7 +1997,7 @@ spec:
|
|
|
2092
1997
|
- -c
|
|
2093
1998
|
name: gitops-cp4d
|
|
2094
1999
|
imagePullPolicy: IfNotPresent
|
|
2095
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2000
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2096
2001
|
workspaces:
|
|
2097
2002
|
- name: configs
|
|
2098
2003
|
- name: shared-gitops-configs
|
|
@@ -2335,7 +2240,7 @@ spec:
|
|
|
2335
2240
|
- -c
|
|
2336
2241
|
name: gitops-db2u-database
|
|
2337
2242
|
imagePullPolicy: Always
|
|
2338
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2243
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2339
2244
|
workspaces:
|
|
2340
2245
|
- name: configs
|
|
2341
2246
|
- name: shared-gitops-configs
|
|
@@ -2428,7 +2333,7 @@ spec:
|
|
|
2428
2333
|
- -c
|
|
2429
2334
|
name: gitops-db2u
|
|
2430
2335
|
imagePullPolicy: IfNotPresent
|
|
2431
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2336
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2432
2337
|
workspaces:
|
|
2433
2338
|
- name: configs
|
|
2434
2339
|
# --------------------------------------------------------------------------------
|
|
@@ -2550,7 +2455,7 @@ spec:
|
|
|
2550
2455
|
- -c
|
|
2551
2456
|
name: gitops-delete-jdbc-config
|
|
2552
2457
|
imagePullPolicy: IfNotPresent
|
|
2553
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2458
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2554
2459
|
workspaces:
|
|
2555
2460
|
- name: configs
|
|
2556
2461
|
# --------------------------------------------------------------------------------
|
|
@@ -2648,7 +2553,7 @@ spec:
|
|
|
2648
2553
|
- -c
|
|
2649
2554
|
name: gitops-delete-kafka-config
|
|
2650
2555
|
imagePullPolicy: Always
|
|
2651
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2556
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2652
2557
|
workspaces:
|
|
2653
2558
|
- name: configs
|
|
2654
2559
|
|
|
@@ -2740,7 +2645,7 @@ spec:
|
|
|
2740
2645
|
- -c
|
|
2741
2646
|
name: gitops-deprovision-app-config
|
|
2742
2647
|
imagePullPolicy: IfNotPresent
|
|
2743
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2648
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2744
2649
|
workspaces:
|
|
2745
2650
|
- name: configs
|
|
2746
2651
|
# --------------------------------------------------------------------------------
|
|
@@ -2825,7 +2730,7 @@ spec:
|
|
|
2825
2730
|
- -c
|
|
2826
2731
|
name: gitops-deprovision-app-install
|
|
2827
2732
|
imagePullPolicy: IfNotPresent
|
|
2828
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2733
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2829
2734
|
workspaces:
|
|
2830
2735
|
- name: configs
|
|
2831
2736
|
# --------------------------------------------------------------------------------
|
|
@@ -2910,7 +2815,7 @@ spec:
|
|
|
2910
2815
|
- -c
|
|
2911
2816
|
name: gitops-deprovision-cluster
|
|
2912
2817
|
imagePullPolicy: IfNotPresent
|
|
2913
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2818
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
2914
2819
|
workspaces:
|
|
2915
2820
|
- name: configs
|
|
2916
2821
|
# --------------------------------------------------------------------------------
|
|
@@ -3017,7 +2922,7 @@ spec:
|
|
|
3017
2922
|
- -c
|
|
3018
2923
|
name: gitops-deprovision-cos
|
|
3019
2924
|
imagePullPolicy: IfNotPresent
|
|
3020
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2925
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3021
2926
|
workspaces:
|
|
3022
2927
|
- name: configs
|
|
3023
2928
|
# --------------------------------------------------------------------------------
|
|
@@ -3105,7 +3010,7 @@ spec:
|
|
|
3105
3010
|
- -c
|
|
3106
3011
|
name: gitops-deprovision-db2u-database
|
|
3107
3012
|
imagePullPolicy: IfNotPresent
|
|
3108
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3013
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3109
3014
|
workspaces:
|
|
3110
3015
|
- name: configs
|
|
3111
3016
|
|
|
@@ -3188,7 +3093,7 @@ spec:
|
|
|
3188
3093
|
- -c
|
|
3189
3094
|
name: gitops-deprovision-db2u
|
|
3190
3095
|
imagePullPolicy: IfNotPresent
|
|
3191
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3096
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3192
3097
|
workspaces:
|
|
3193
3098
|
- name: configs
|
|
3194
3099
|
|
|
@@ -3264,7 +3169,7 @@ spec:
|
|
|
3264
3169
|
- -c
|
|
3265
3170
|
name: gitops-deprovision-efs
|
|
3266
3171
|
imagePullPolicy: IfNotPresent
|
|
3267
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3172
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3268
3173
|
workspaces:
|
|
3269
3174
|
- name: configs
|
|
3270
3175
|
|
|
@@ -3373,7 +3278,7 @@ spec:
|
|
|
3373
3278
|
- -c
|
|
3374
3279
|
name: gitops-deprovision-kafka
|
|
3375
3280
|
imagePullPolicy: IfNotPresent
|
|
3376
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3281
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3377
3282
|
workspaces:
|
|
3378
3283
|
- name: configs
|
|
3379
3284
|
# --------------------------------------------------------------------------------
|
|
@@ -3475,7 +3380,7 @@ spec:
|
|
|
3475
3380
|
- -c
|
|
3476
3381
|
name: gitops-deprovision-mongo
|
|
3477
3382
|
imagePullPolicy: IfNotPresent
|
|
3478
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3383
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3479
3384
|
workspaces:
|
|
3480
3385
|
- name: configs
|
|
3481
3386
|
|
|
@@ -3532,7 +3437,7 @@ spec:
|
|
|
3532
3437
|
- -c
|
|
3533
3438
|
name: gitops-deprovision-rosa
|
|
3534
3439
|
imagePullPolicy: IfNotPresent
|
|
3535
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3440
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3536
3441
|
workspaces:
|
|
3537
3442
|
- name: configs
|
|
3538
3443
|
# --------------------------------------------------------------------------------
|
|
@@ -3725,7 +3630,7 @@ spec:
|
|
|
3725
3630
|
- -c
|
|
3726
3631
|
name: gitops-deprovision-suite-config
|
|
3727
3632
|
imagePullPolicy: IfNotPresent
|
|
3728
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3633
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3729
3634
|
workspaces:
|
|
3730
3635
|
- name: configs
|
|
3731
3636
|
|
|
@@ -3823,7 +3728,7 @@ spec:
|
|
|
3823
3728
|
- -c
|
|
3824
3729
|
name: gitops-deprovision-suite-idp-config
|
|
3825
3730
|
imagePullPolicy: IfNotPresent
|
|
3826
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3731
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3827
3732
|
workspaces:
|
|
3828
3733
|
- name: configs
|
|
3829
3734
|
# --------------------------------------------------------------------------------
|
|
@@ -3915,7 +3820,7 @@ spec:
|
|
|
3915
3820
|
- -c
|
|
3916
3821
|
name: gitops-deprovision-suite-objectstorage-config
|
|
3917
3822
|
imagePullPolicy: IfNotPresent
|
|
3918
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3823
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
3919
3824
|
workspaces:
|
|
3920
3825
|
- name: configs
|
|
3921
3826
|
# --------------------------------------------------------------------------------
|
|
@@ -4007,7 +3912,7 @@ spec:
|
|
|
4007
3912
|
- -c
|
|
4008
3913
|
name: gitops-deprovision-suite-smtp-config
|
|
4009
3914
|
imagePullPolicy: IfNotPresent
|
|
4010
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3915
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4011
3916
|
workspaces:
|
|
4012
3917
|
- name: configs
|
|
4013
3918
|
# --------------------------------------------------------------------------------
|
|
@@ -4100,7 +4005,7 @@ spec:
|
|
|
4100
4005
|
- -c
|
|
4101
4006
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4102
4007
|
imagePullPolicy: IfNotPresent
|
|
4103
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4008
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4104
4009
|
workspaces:
|
|
4105
4010
|
- name: configs
|
|
4106
4011
|
# --------------------------------------------------------------------------------
|
|
@@ -4191,7 +4096,7 @@ spec:
|
|
|
4191
4096
|
- -c
|
|
4192
4097
|
name: gitops-deprovision-suite-workspace
|
|
4193
4098
|
imagePullPolicy: Always
|
|
4194
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4099
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4195
4100
|
workspaces:
|
|
4196
4101
|
- name: configs
|
|
4197
4102
|
# --------------------------------------------------------------------------------
|
|
@@ -4284,7 +4189,7 @@ spec:
|
|
|
4284
4189
|
- -c
|
|
4285
4190
|
name: gitops-deprovision-suite
|
|
4286
4191
|
imagePullPolicy: IfNotPresent
|
|
4287
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4192
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4288
4193
|
workspaces:
|
|
4289
4194
|
- name: configs
|
|
4290
4195
|
|
|
@@ -4387,7 +4292,7 @@ spec:
|
|
|
4387
4292
|
- -c
|
|
4388
4293
|
name: gitops-dro
|
|
4389
4294
|
imagePullPolicy: IfNotPresent
|
|
4390
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4295
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4391
4296
|
workspaces:
|
|
4392
4297
|
- name: configs
|
|
4393
4298
|
# --------------------------------------------------------------------------------
|
|
@@ -4469,7 +4374,7 @@ spec:
|
|
|
4469
4374
|
- -c
|
|
4470
4375
|
name: gitops-efs
|
|
4471
4376
|
imagePullPolicy: IfNotPresent
|
|
4472
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4377
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4473
4378
|
workspaces:
|
|
4474
4379
|
- name: configs
|
|
4475
4380
|
|
|
@@ -4599,7 +4504,7 @@ spec:
|
|
|
4599
4504
|
- -c
|
|
4600
4505
|
name: gitops-jdbc-config
|
|
4601
4506
|
imagePullPolicy: Always
|
|
4602
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4507
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4603
4508
|
workspaces:
|
|
4604
4509
|
- name: configs
|
|
4605
4510
|
- name: shared-gitops-configs
|
|
@@ -4695,7 +4600,7 @@ spec:
|
|
|
4695
4600
|
- -c
|
|
4696
4601
|
name: gitops-kafka-config
|
|
4697
4602
|
imagePullPolicy: Always
|
|
4698
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4603
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4699
4604
|
workspaces:
|
|
4700
4605
|
- name: configs
|
|
4701
4606
|
|
|
@@ -4816,7 +4721,7 @@ spec:
|
|
|
4816
4721
|
- -c
|
|
4817
4722
|
name: gitops-kafka
|
|
4818
4723
|
imagePullPolicy: IfNotPresent
|
|
4819
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4724
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4820
4725
|
workspaces:
|
|
4821
4726
|
- name: configs
|
|
4822
4727
|
# --------------------------------------------------------------------------------
|
|
@@ -4867,7 +4772,7 @@ spec:
|
|
|
4867
4772
|
- -c
|
|
4868
4773
|
name: gitops-license
|
|
4869
4774
|
imagePullPolicy: Always
|
|
4870
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4775
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
4871
4776
|
workspaces:
|
|
4872
4777
|
- name: shared-entitlement
|
|
4873
4778
|
|
|
@@ -5324,7 +5229,7 @@ spec:
|
|
|
5324
5229
|
- -c
|
|
5325
5230
|
name: gitops-mas-fvt-preparer
|
|
5326
5231
|
imagePullPolicy: Always
|
|
5327
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5232
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
5328
5233
|
workspaces:
|
|
5329
5234
|
- name: configs
|
|
5330
5235
|
- name: shared-additional-configs
|
|
@@ -5728,7 +5633,7 @@ spec:
|
|
|
5728
5633
|
- -c
|
|
5729
5634
|
name: gitops-mas-initiator
|
|
5730
5635
|
imagePullPolicy: IfNotPresent
|
|
5731
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5636
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
5732
5637
|
workspaces:
|
|
5733
5638
|
- name: configs
|
|
5734
5639
|
# --------------------------------------------------------------------------------
|
|
@@ -5835,7 +5740,7 @@ spec:
|
|
|
5835
5740
|
- -c
|
|
5836
5741
|
name: gitops-mongo
|
|
5837
5742
|
imagePullPolicy: IfNotPresent
|
|
5838
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5743
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
5839
5744
|
workspaces:
|
|
5840
5745
|
- name: configs
|
|
5841
5746
|
|
|
@@ -5947,7 +5852,7 @@ spec:
|
|
|
5947
5852
|
- -c
|
|
5948
5853
|
name: gitops-nvidia-gpu
|
|
5949
5854
|
imagePullPolicy: IfNotPresent
|
|
5950
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5855
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
5951
5856
|
workspaces:
|
|
5952
5857
|
- name: configs
|
|
5953
5858
|
# --------------------------------------------------------------------------------
|
|
@@ -6064,7 +5969,7 @@ spec:
|
|
|
6064
5969
|
- -c
|
|
6065
5970
|
name: gitops-process-mongo-user
|
|
6066
5971
|
imagePullPolicy: IfNotPresent
|
|
6067
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5972
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6068
5973
|
workspaces:
|
|
6069
5974
|
- name: configs
|
|
6070
5975
|
# --------------------------------------------------------------------------------
|
|
@@ -6120,7 +6025,7 @@ spec:
|
|
|
6120
6025
|
- -c
|
|
6121
6026
|
name: gitops-rosa
|
|
6122
6027
|
imagePullPolicy: IfNotPresent
|
|
6123
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6028
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6124
6029
|
workspaces:
|
|
6125
6030
|
- name: configs
|
|
6126
6031
|
# --------------------------------------------------------------------------------
|
|
@@ -6287,7 +6192,7 @@ spec:
|
|
|
6287
6192
|
- -c
|
|
6288
6193
|
name: gitops-suite-app-config
|
|
6289
6194
|
imagePullPolicy: IfNotPresent
|
|
6290
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6195
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6291
6196
|
workspaces:
|
|
6292
6197
|
- name: configs
|
|
6293
6198
|
- name: shared-gitops-configs
|
|
@@ -6440,7 +6345,7 @@ spec:
|
|
|
6440
6345
|
- -c
|
|
6441
6346
|
name: gitops-suite-app-install
|
|
6442
6347
|
imagePullPolicy: Always
|
|
6443
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6348
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6444
6349
|
workspaces:
|
|
6445
6350
|
- name: configs
|
|
6446
6351
|
- name: shared-gitops-configs
|
|
@@ -6546,7 +6451,7 @@ spec:
|
|
|
6546
6451
|
- -c
|
|
6547
6452
|
name: gitops-suite-certs
|
|
6548
6453
|
imagePullPolicy: IfNotPresent
|
|
6549
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6454
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6550
6455
|
workspaces:
|
|
6551
6456
|
- name: configs
|
|
6552
6457
|
- name: certificates
|
|
@@ -6712,7 +6617,7 @@ spec:
|
|
|
6712
6617
|
- -c
|
|
6713
6618
|
name: gitops-suite-config
|
|
6714
6619
|
imagePullPolicy: IfNotPresent
|
|
6715
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6620
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6716
6621
|
workspaces:
|
|
6717
6622
|
- name: configs
|
|
6718
6623
|
- name: shared-additional-configs
|
|
@@ -6812,7 +6717,7 @@ spec:
|
|
|
6812
6717
|
- -c
|
|
6813
6718
|
name: gitops-suite-dns
|
|
6814
6719
|
imagePullPolicy: IfNotPresent
|
|
6815
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6720
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6816
6721
|
workspaces:
|
|
6817
6722
|
- name: configs
|
|
6818
6723
|
|
|
@@ -6936,7 +6841,7 @@ spec:
|
|
|
6936
6841
|
- -c
|
|
6937
6842
|
name: gitops-suite-idp-config
|
|
6938
6843
|
imagePullPolicy: IfNotPresent
|
|
6939
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6844
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
6940
6845
|
workspaces:
|
|
6941
6846
|
- name: configs
|
|
6942
6847
|
- name: shared-additional-configs
|
|
@@ -7037,7 +6942,7 @@ spec:
|
|
|
7037
6942
|
- -c
|
|
7038
6943
|
name: gitops-suite-objectstorage-config
|
|
7039
6944
|
imagePullPolicy: IfNotPresent
|
|
7040
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6945
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
7041
6946
|
workspaces:
|
|
7042
6947
|
- name: configs
|
|
7043
6948
|
- name: shared-gitops-configs
|
|
@@ -7181,7 +7086,7 @@ spec:
|
|
|
7181
7086
|
- -c
|
|
7182
7087
|
name: gitops-suite-smtp-config
|
|
7183
7088
|
imagePullPolicy: IfNotPresent
|
|
7184
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7089
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
7185
7090
|
workspaces:
|
|
7186
7091
|
- name: configs
|
|
7187
7092
|
|
|
@@ -7290,7 +7195,7 @@ spec:
|
|
|
7290
7195
|
- -c
|
|
7291
7196
|
name: gitops-suite-watson-studio-config
|
|
7292
7197
|
imagePullPolicy: IfNotPresent
|
|
7293
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7198
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
7294
7199
|
workspaces:
|
|
7295
7200
|
- name: configs
|
|
7296
7201
|
- name: shared-gitops-configs
|
|
@@ -7387,7 +7292,7 @@ spec:
|
|
|
7387
7292
|
- -c
|
|
7388
7293
|
name: gitops-suite-workspace
|
|
7389
7294
|
imagePullPolicy: IfNotPresent
|
|
7390
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7295
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
7391
7296
|
workspaces:
|
|
7392
7297
|
- name: configs
|
|
7393
7298
|
# --------------------------------------------------------------------------------
|
|
@@ -7646,7 +7551,7 @@ spec:
|
|
|
7646
7551
|
- -c
|
|
7647
7552
|
name: gitops-suite
|
|
7648
7553
|
imagePullPolicy: IfNotPresent
|
|
7649
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7554
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
7650
7555
|
workspaces:
|
|
7651
7556
|
- name: configs
|
|
7652
7557
|
- name: shared-gitops-configs
|
|
@@ -7696,7 +7601,7 @@ spec:
|
|
|
7696
7601
|
|
|
7697
7602
|
steps:
|
|
7698
7603
|
- name: grafana
|
|
7699
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7604
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
7700
7605
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7701
7606
|
command:
|
|
7702
7607
|
- /opt/app-root/src/run-role.sh
|
|
@@ -7830,114 +7735,7 @@ spec:
|
|
|
7830
7735
|
command:
|
|
7831
7736
|
- /opt/app-root/src/run-role.sh
|
|
7832
7737
|
- ibm_catalogs
|
|
7833
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7834
|
-
imagePullPolicy: $(params.image_pull_policy)
|
|
7835
|
-
workingDir: /workspace/configs
|
|
7836
|
-
# --------------------------------------------------------------------------------
|
|
7837
|
-
# /home/runner/work/cli/cli/tekton/target/tasks/kafka-deprovision.yaml
|
|
7838
|
-
# --------------------------------------------------------------------------------
|
|
7839
|
-
---
|
|
7840
|
-
apiVersion: tekton.dev/v1beta1
|
|
7841
|
-
kind: Task
|
|
7842
|
-
metadata:
|
|
7843
|
-
name: mas-devops-kafka-deprovision
|
|
7844
|
-
spec:
|
|
7845
|
-
params:
|
|
7846
|
-
# Common: Control the image pull policy for the CLI container image
|
|
7847
|
-
- name: image_pull_policy
|
|
7848
|
-
type: string
|
|
7849
|
-
default: IfNotPresent
|
|
7850
|
-
|
|
7851
|
-
# Common: Support for saving task execution results to a MongoDb instance
|
|
7852
|
-
- name: devops_suite_name
|
|
7853
|
-
type: string
|
|
7854
|
-
description: Optional name for the junit suite, used to enable save-junit-to-mongo.py
|
|
7855
|
-
default: ""
|
|
7856
|
-
|
|
7857
|
-
|
|
7858
|
-
# General
|
|
7859
|
-
- name: mas_instance_id
|
|
7860
|
-
type: string
|
|
7861
|
-
|
|
7862
|
-
# Kafka Details
|
|
7863
|
-
- name: kafka_provider
|
|
7864
|
-
type: string
|
|
7865
|
-
description: Kafka Provider
|
|
7866
|
-
default: ""
|
|
7867
|
-
- name: ibmcloud_apikey
|
|
7868
|
-
type: string
|
|
7869
|
-
description: API Key used to create Event Streams instance in IBM Cloud
|
|
7870
|
-
default: ""
|
|
7871
|
-
- name: ibmcloud_resourcegroup
|
|
7872
|
-
type: string
|
|
7873
|
-
description: Name of an existing Resource Group in IBM Cloud account
|
|
7874
|
-
default: "Default"
|
|
7875
|
-
- name: eventstreams_resourcegroup
|
|
7876
|
-
type: string
|
|
7877
|
-
description: Name of an existing Event Streams Resource Group in IBM Cloud account
|
|
7878
|
-
default: ""
|
|
7879
|
-
- name: eventstreams_name
|
|
7880
|
-
type: string
|
|
7881
|
-
description: Name of Event Streams instance in IBM Cloud account
|
|
7882
|
-
default: ""
|
|
7883
|
-
- name: eventstreams_location
|
|
7884
|
-
type: string
|
|
7885
|
-
description: Location of Event Streams instance in IBM Cloud account
|
|
7886
|
-
default: ""
|
|
7887
|
-
- name: kafka_action_system
|
|
7888
|
-
type: string
|
|
7889
|
-
description: Set to 'install' to set up a Kafka instance for the whole suite
|
|
7890
|
-
default: ""
|
|
7891
|
-
|
|
7892
|
-
stepTemplate:
|
|
7893
|
-
env:
|
|
7894
|
-
- name: DEVOPS_MONGO_URI
|
|
7895
|
-
valueFrom:
|
|
7896
|
-
secretKeyRef:
|
|
7897
|
-
name: mas-devops
|
|
7898
|
-
key: DEVOPS_MONGO_URI
|
|
7899
|
-
optional: true
|
|
7900
|
-
- name: DEVOPS_BUILD_NUMBER
|
|
7901
|
-
valueFrom:
|
|
7902
|
-
secretKeyRef:
|
|
7903
|
-
name: mas-devops
|
|
7904
|
-
key: DEVOPS_BUILD_NUMBER
|
|
7905
|
-
optional: true
|
|
7906
|
-
- name: DEVOPS_ENVIRONMENT
|
|
7907
|
-
valueFrom:
|
|
7908
|
-
secretKeyRef:
|
|
7909
|
-
name: mas-devops
|
|
7910
|
-
key: MAS_INSTANCE_ID
|
|
7911
|
-
optional: true
|
|
7912
|
-
- name: DEVOPS_SUITE_NAME
|
|
7913
|
-
value: $(params.devops_suite_name)
|
|
7914
|
-
|
|
7915
|
-
|
|
7916
|
-
# General
|
|
7917
|
-
- name: MAS_INSTANCE_ID
|
|
7918
|
-
value: $(params.mas_instance_id)
|
|
7919
|
-
|
|
7920
|
-
# Kafka Details
|
|
7921
|
-
- name: KAFKA_PROVIDER
|
|
7922
|
-
value: $(params.kafka_provider)
|
|
7923
|
-
- name: KAFKA_ACTION
|
|
7924
|
-
value: $(params.kafka_action_system)
|
|
7925
|
-
- name: IBMCLOUD_APIKEY
|
|
7926
|
-
value: $(params.ibmcloud_apikey)
|
|
7927
|
-
- name: EVENTSTREAMS_RESOURCEGROUP
|
|
7928
|
-
value: $(params.eventstreams_resourcegroup)
|
|
7929
|
-
- name: EVENTSTREAMS_NAME
|
|
7930
|
-
value: $(params.eventstreams_name)
|
|
7931
|
-
- name: EVENTSTREAMS_LOCATION
|
|
7932
|
-
value: $(params.eventstreams_location)
|
|
7933
|
-
- name: IBMCLOUD_RESOURCEGROUP
|
|
7934
|
-
value: $(params.ibmcloud_resourcegroup)
|
|
7935
|
-
steps:
|
|
7936
|
-
- name: kafka-deprovision
|
|
7937
|
-
command:
|
|
7938
|
-
- /opt/app-root/src/run-role.sh
|
|
7939
|
-
- kafka
|
|
7940
|
-
image: quay.io/ibmmas/cli:10.4.0
|
|
7738
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
7941
7739
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7942
7740
|
workingDir: /workspace/configs
|
|
7943
7741
|
# --------------------------------------------------------------------------------
|
|
@@ -8179,7 +7977,7 @@ spec:
|
|
|
8179
7977
|
command:
|
|
8180
7978
|
- /opt/app-root/src/run-role.sh
|
|
8181
7979
|
- kafka
|
|
8182
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7980
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8183
7981
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8184
7982
|
workingDir: /workspace/configs
|
|
8185
7983
|
|
|
@@ -8187,155 +7985,6 @@ spec:
|
|
|
8187
7985
|
- name: configs
|
|
8188
7986
|
optional: true
|
|
8189
7987
|
# --------------------------------------------------------------------------------
|
|
8190
|
-
# /home/runner/work/cli/cli/tekton/target/tasks/launchivt.yaml
|
|
8191
|
-
# --------------------------------------------------------------------------------
|
|
8192
|
-
---
|
|
8193
|
-
apiVersion: tekton.dev/v1beta1
|
|
8194
|
-
kind: Task
|
|
8195
|
-
metadata:
|
|
8196
|
-
name: mas-launchivt
|
|
8197
|
-
spec:
|
|
8198
|
-
params:
|
|
8199
|
-
# Control the image pull policy for the FVT container image
|
|
8200
|
-
- name: image_pull_policy
|
|
8201
|
-
type: string
|
|
8202
|
-
default: IfNotPresent
|
|
8203
|
-
|
|
8204
|
-
- name: pipelinerun_name
|
|
8205
|
-
type: string
|
|
8206
|
-
|
|
8207
|
-
steps:
|
|
8208
|
-
- name: start-pipelinerun
|
|
8209
|
-
image: quay.io/ibmmas/cli:10.4.0
|
|
8210
|
-
imagePullPolicy: $(params.image_pull_policy)
|
|
8211
|
-
command:
|
|
8212
|
-
- ansible-playbook
|
|
8213
|
-
- /masfvt/ivt.yml
|
|
8214
|
-
env:
|
|
8215
|
-
- name: IMAGE_PULL_POLICY
|
|
8216
|
-
value: $(params.image_pull_policy)
|
|
8217
|
-
- name: PIPELINERUN_NAME
|
|
8218
|
-
value: $(params.pipelinerun_name)
|
|
8219
|
-
- name: PIPELINERUN_NAMESPACE
|
|
8220
|
-
value: $(context.taskRun.namespace)
|
|
8221
|
-
|
|
8222
|
-
# Lookups from mas-devops
|
|
8223
|
-
# -----------------------------------------------------------------------
|
|
8224
|
-
- name: DEVOPS_BUILD_NUMBER
|
|
8225
|
-
valueFrom:
|
|
8226
|
-
secretKeyRef:
|
|
8227
|
-
name: mas-devops
|
|
8228
|
-
key: DEVOPS_BUILD_NUMBER
|
|
8229
|
-
optional: true
|
|
8230
|
-
- name: MAS_INSTANCE_ID
|
|
8231
|
-
valueFrom:
|
|
8232
|
-
secretKeyRef:
|
|
8233
|
-
name: mas-devops
|
|
8234
|
-
key: MAS_INSTANCE_ID
|
|
8235
|
-
optional: false
|
|
8236
|
-
|
|
8237
|
-
# Lookups from mas-fvt
|
|
8238
|
-
# -----------------------------------------------------------------------
|
|
8239
|
-
- name: FVT_IMAGE_REGISTRY
|
|
8240
|
-
valueFrom:
|
|
8241
|
-
secretKeyRef:
|
|
8242
|
-
name: mas-fvt
|
|
8243
|
-
key: FVT_IMAGE_REGISTRY
|
|
8244
|
-
optional: false
|
|
8245
|
-
- name: FVT_ARTIFACTORY_USERNAME
|
|
8246
|
-
valueFrom:
|
|
8247
|
-
secretKeyRef:
|
|
8248
|
-
name: mas-fvt
|
|
8249
|
-
key: FVT_ARTIFACTORY_USERNAME
|
|
8250
|
-
optional: false
|
|
8251
|
-
- name: FVT_ARTIFACTORY_TOKEN
|
|
8252
|
-
valueFrom:
|
|
8253
|
-
secretKeyRef:
|
|
8254
|
-
name: mas-fvt
|
|
8255
|
-
key: FVT_ARTIFACTORY_TOKEN
|
|
8256
|
-
optional: false
|
|
8257
|
-
|
|
8258
|
-
# Lookups from mas-fvt-manage
|
|
8259
|
-
# -----------------------------------------------------------------------
|
|
8260
|
-
# Framework Information
|
|
8261
|
-
- name: MAS_APP_CHANNEL_MANAGE
|
|
8262
|
-
valueFrom:
|
|
8263
|
-
secretKeyRef:
|
|
8264
|
-
name: mas-fvt-manage
|
|
8265
|
-
key: MAS_APP_CHANNEL_MANAGE
|
|
8266
|
-
optional: false
|
|
8267
|
-
- name: MAS_APP_CHANNEL_MONITOR
|
|
8268
|
-
valueFrom:
|
|
8269
|
-
secretKeyRef:
|
|
8270
|
-
name: mas-fvt-monitor
|
|
8271
|
-
key: MAS_APP_CHANNEL_MONITOR
|
|
8272
|
-
optional: false
|
|
8273
|
-
- name: MAS_WORKSPACE_ID
|
|
8274
|
-
valueFrom:
|
|
8275
|
-
secretKeyRef:
|
|
8276
|
-
name: mas-fvt-manage
|
|
8277
|
-
key: MAS_WORKSPACE_ID
|
|
8278
|
-
optional: false
|
|
8279
|
-
# Digests
|
|
8280
|
-
- name: FVT_DIGEST_MANAGE
|
|
8281
|
-
valueFrom:
|
|
8282
|
-
secretKeyRef:
|
|
8283
|
-
name: mas-fvt-manage
|
|
8284
|
-
key: FVT_DIGEST_MANAGE
|
|
8285
|
-
optional: false
|
|
8286
|
-
- name: FVT_DIGEST_MANAGE_PYTEST
|
|
8287
|
-
valueFrom:
|
|
8288
|
-
secretKeyRef:
|
|
8289
|
-
name: mas-fvt-manage
|
|
8290
|
-
key: FVT_DIGEST_MANAGE_PYTEST
|
|
8291
|
-
optional: false
|
|
8292
|
-
- name: FVT_DIGEST_CTF
|
|
8293
|
-
valueFrom:
|
|
8294
|
-
secretKeyRef:
|
|
8295
|
-
name: mas-fvt-monitor
|
|
8296
|
-
key: FVT_DIGEST_CTF
|
|
8297
|
-
optional: false
|
|
8298
|
-
|
|
8299
|
-
# Black and white listing
|
|
8300
|
-
- name: FVT_BLACKLIST
|
|
8301
|
-
valueFrom:
|
|
8302
|
-
secretKeyRef:
|
|
8303
|
-
name: mas-fvt-manage
|
|
8304
|
-
key: FVT_BLACKLIST_IS
|
|
8305
|
-
optional: false
|
|
8306
|
-
- name: FVT_WHITELIST
|
|
8307
|
-
valueFrom:
|
|
8308
|
-
secretKeyRef:
|
|
8309
|
-
name: mas-fvt-manage
|
|
8310
|
-
key: FVT_WHITELIST_IS
|
|
8311
|
-
optional: false
|
|
8312
|
-
|
|
8313
|
-
- name: wait-for-pipelinerun
|
|
8314
|
-
image: quay.io/ibmmas/cli:10.4.0
|
|
8315
|
-
imagePullPolicy: $(params.image_pull_policy)
|
|
8316
|
-
# 50 retries at 10 minute intervals = just over 8 hours
|
|
8317
|
-
command:
|
|
8318
|
-
- /opt/app-root/src/wait-for-tekton.sh
|
|
8319
|
-
env:
|
|
8320
|
-
- name: TYPE
|
|
8321
|
-
value: pipelinerun
|
|
8322
|
-
- name: NAME
|
|
8323
|
-
value: $(params.pipelinerun_name)
|
|
8324
|
-
- name: SUFFIX
|
|
8325
|
-
valueFrom:
|
|
8326
|
-
secretKeyRef:
|
|
8327
|
-
name: mas-devops
|
|
8328
|
-
key: DEVOPS_BUILD_NUMBER
|
|
8329
|
-
optional: true
|
|
8330
|
-
- name: NAMESPACE
|
|
8331
|
-
value: $(context.taskRun.namespace)
|
|
8332
|
-
- name: DELAY
|
|
8333
|
-
value: "600"
|
|
8334
|
-
- name: MAX_RETRIES
|
|
8335
|
-
value: "50"
|
|
8336
|
-
- name: IGNORE_FAILURE
|
|
8337
|
-
value: "True"
|
|
8338
|
-
# --------------------------------------------------------------------------------
|
|
8339
7988
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
8340
7989
|
# --------------------------------------------------------------------------------
|
|
8341
7990
|
---
|
|
@@ -8505,7 +8154,7 @@ spec:
|
|
|
8505
8154
|
command:
|
|
8506
8155
|
- /opt/app-root/src/run-role.sh
|
|
8507
8156
|
- mongodb
|
|
8508
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8157
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8509
8158
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8510
8159
|
workingDir: /workspace/configs
|
|
8511
8160
|
|
|
@@ -8548,7 +8197,7 @@ spec:
|
|
|
8548
8197
|
- $(params.base_output_dir)
|
|
8549
8198
|
- --extra-namespaces
|
|
8550
8199
|
- selenium
|
|
8551
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8200
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8552
8201
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8553
8202
|
env:
|
|
8554
8203
|
- name: DEVOPS_MONGO_URI
|
|
@@ -8665,88 +8314,13 @@ spec:
|
|
|
8665
8314
|
command:
|
|
8666
8315
|
- /opt/app-root/src/run-role.sh
|
|
8667
8316
|
- nvidia_gpu
|
|
8668
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8317
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8669
8318
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8670
8319
|
workingDir: /workspace/configs
|
|
8671
8320
|
|
|
8672
8321
|
workspaces:
|
|
8673
8322
|
- name: configs
|
|
8674
8323
|
# --------------------------------------------------------------------------------
|
|
8675
|
-
# /home/runner/work/cli/cli/tekton/target/tasks/ocp-deprovision.yaml
|
|
8676
|
-
# --------------------------------------------------------------------------------
|
|
8677
|
-
---
|
|
8678
|
-
apiVersion: tekton.dev/v1beta1
|
|
8679
|
-
kind: Task
|
|
8680
|
-
metadata:
|
|
8681
|
-
name: mas-devops-ocp-deprovision
|
|
8682
|
-
spec:
|
|
8683
|
-
params:
|
|
8684
|
-
# Common: Control the image pull policy for the CLI container image
|
|
8685
|
-
- name: image_pull_policy
|
|
8686
|
-
type: string
|
|
8687
|
-
default: IfNotPresent
|
|
8688
|
-
|
|
8689
|
-
# Common: Support for saving task execution results to a MongoDb instance
|
|
8690
|
-
- name: devops_suite_name
|
|
8691
|
-
type: string
|
|
8692
|
-
description: Optional name for the junit suite, used to enable save-junit-to-mongo.py
|
|
8693
|
-
default: ""
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
# Cluster Details
|
|
8697
|
-
- name: cluster_name
|
|
8698
|
-
type: string
|
|
8699
|
-
- name: cluster_type
|
|
8700
|
-
type: string
|
|
8701
|
-
default: roks
|
|
8702
|
-
|
|
8703
|
-
# ROKS Support
|
|
8704
|
-
- name: ibmcloud_apikey
|
|
8705
|
-
type: string
|
|
8706
|
-
default: ""
|
|
8707
|
-
|
|
8708
|
-
stepTemplate:
|
|
8709
|
-
env:
|
|
8710
|
-
- name: DEVOPS_MONGO_URI
|
|
8711
|
-
valueFrom:
|
|
8712
|
-
secretKeyRef:
|
|
8713
|
-
name: mas-devops
|
|
8714
|
-
key: DEVOPS_MONGO_URI
|
|
8715
|
-
optional: true
|
|
8716
|
-
- name: DEVOPS_BUILD_NUMBER
|
|
8717
|
-
valueFrom:
|
|
8718
|
-
secretKeyRef:
|
|
8719
|
-
name: mas-devops
|
|
8720
|
-
key: DEVOPS_BUILD_NUMBER
|
|
8721
|
-
optional: true
|
|
8722
|
-
- name: DEVOPS_ENVIRONMENT
|
|
8723
|
-
valueFrom:
|
|
8724
|
-
secretKeyRef:
|
|
8725
|
-
name: mas-devops
|
|
8726
|
-
key: MAS_INSTANCE_ID
|
|
8727
|
-
optional: true
|
|
8728
|
-
- name: DEVOPS_SUITE_NAME
|
|
8729
|
-
value: $(params.devops_suite_name)
|
|
8730
|
-
|
|
8731
|
-
|
|
8732
|
-
# Cluster Details
|
|
8733
|
-
- name: CLUSTER_NAME
|
|
8734
|
-
value: $(params.cluster_name)
|
|
8735
|
-
- name: CLUSTER_TYPE
|
|
8736
|
-
value: $(params.cluster_type)
|
|
8737
|
-
|
|
8738
|
-
# ROKS Support
|
|
8739
|
-
- name: IBMCLOUD_APIKEY
|
|
8740
|
-
value: $(params.ibmcloud_apikey)
|
|
8741
|
-
|
|
8742
|
-
steps:
|
|
8743
|
-
- name: ocp-deprovision
|
|
8744
|
-
command:
|
|
8745
|
-
- /opt/app-root/src/run-role.sh
|
|
8746
|
-
- ocp_deprovision
|
|
8747
|
-
image: quay.io/ibmmas/cli:10.4.0
|
|
8748
|
-
imagePullPolicy: $(params.image_pull_policy)
|
|
8749
|
-
# --------------------------------------------------------------------------------
|
|
8750
8324
|
# /home/runner/work/cli/cli/tekton/target/tasks/ocp-verify-all.yaml
|
|
8751
8325
|
# --------------------------------------------------------------------------------
|
|
8752
8326
|
---
|
|
@@ -8776,7 +8350,7 @@ spec:
|
|
|
8776
8350
|
# Verify Cluster
|
|
8777
8351
|
# -------------------------------------------------------------------------
|
|
8778
8352
|
- name: ocp-verify-cluster
|
|
8779
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8353
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8780
8354
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8781
8355
|
command:
|
|
8782
8356
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8818,7 +8392,7 @@ spec:
|
|
|
8818
8392
|
# Verify Catalogs
|
|
8819
8393
|
# -------------------------------------------------------------------------
|
|
8820
8394
|
- name: ocp-verify-catalogs
|
|
8821
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8395
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8822
8396
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8823
8397
|
command:
|
|
8824
8398
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8860,7 +8434,7 @@ spec:
|
|
|
8860
8434
|
# Verify Subscriptions
|
|
8861
8435
|
# -------------------------------------------------------------------------
|
|
8862
8436
|
- name: ocp-verify-subscriptions
|
|
8863
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8437
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8864
8438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8865
8439
|
command:
|
|
8866
8440
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8902,7 +8476,7 @@ spec:
|
|
|
8902
8476
|
# Verify Workloads
|
|
8903
8477
|
# -------------------------------------------------------------------------
|
|
8904
8478
|
- name: ocp-verify-workloads
|
|
8905
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8479
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8906
8480
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8907
8481
|
command:
|
|
8908
8482
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8944,7 +8518,7 @@ spec:
|
|
|
8944
8518
|
# Verify Catalogs - Ingress TLS
|
|
8945
8519
|
# -------------------------------------------------------------------------
|
|
8946
8520
|
- name: ocp-verify-ingress
|
|
8947
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8521
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
8948
8522
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8949
8523
|
command:
|
|
8950
8524
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9070,7 +8644,7 @@ spec:
|
|
|
9070
8644
|
command:
|
|
9071
8645
|
- /opt/app-root/src/run-role.sh
|
|
9072
8646
|
- ocp_verify
|
|
9073
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8647
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
9074
8648
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9075
8649
|
workingDir: /workspace/configs
|
|
9076
8650
|
# --------------------------------------------------------------------------------
|
|
@@ -9138,7 +8712,7 @@ spec:
|
|
|
9138
8712
|
command:
|
|
9139
8713
|
- /opt/app-root/src/run-role.sh
|
|
9140
8714
|
- ocs
|
|
9141
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8715
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
9142
8716
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9143
8717
|
workingDir: /workspace/configs
|
|
9144
8718
|
|
|
@@ -9319,7 +8893,7 @@ spec:
|
|
|
9319
8893
|
command:
|
|
9320
8894
|
- /opt/app-root/src/run-role.sh
|
|
9321
8895
|
- sls
|
|
9322
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8896
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
9323
8897
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9324
8898
|
workingDir: /workspace/configs
|
|
9325
8899
|
|
|
@@ -9694,12 +9268,12 @@ spec:
|
|
|
9694
9268
|
command:
|
|
9695
9269
|
- /opt/app-root/src/run-role.sh
|
|
9696
9270
|
- suite_app_config
|
|
9697
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9271
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
9698
9272
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9699
9273
|
|
|
9700
9274
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
9701
9275
|
- name: app-cfg-post-verify
|
|
9702
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9276
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
9703
9277
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9704
9278
|
command:
|
|
9705
9279
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -9900,7 +9474,7 @@ spec:
|
|
|
9900
9474
|
command:
|
|
9901
9475
|
- /opt/app-root/src/run-role.sh
|
|
9902
9476
|
- suite_app_install
|
|
9903
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9477
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
9904
9478
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9905
9479
|
|
|
9906
9480
|
workspaces:
|
|
@@ -9989,7 +9563,7 @@ spec:
|
|
|
9989
9563
|
command:
|
|
9990
9564
|
- /opt/app-root/src/run-role.sh
|
|
9991
9565
|
- suite_app_rollback
|
|
9992
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9566
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
9993
9567
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9994
9568
|
# --------------------------------------------------------------------------------
|
|
9995
9569
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -10052,7 +9626,7 @@ spec:
|
|
|
10052
9626
|
command:
|
|
10053
9627
|
- /opt/app-root/src/run-role.sh
|
|
10054
9628
|
- suite_app_uninstall
|
|
10055
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9629
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10056
9630
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10057
9631
|
# --------------------------------------------------------------------------------
|
|
10058
9632
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -10127,7 +9701,7 @@ spec:
|
|
|
10127
9701
|
command:
|
|
10128
9702
|
- /opt/app-root/src/run-role.sh
|
|
10129
9703
|
- suite_app_upgrade
|
|
10130
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9704
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10131
9705
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10132
9706
|
# --------------------------------------------------------------------------------
|
|
10133
9707
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -10228,7 +9802,7 @@ spec:
|
|
|
10228
9802
|
command:
|
|
10229
9803
|
- /opt/app-root/src/run-role.sh
|
|
10230
9804
|
- suite_app_verify
|
|
10231
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9805
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10232
9806
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10233
9807
|
# --------------------------------------------------------------------------------
|
|
10234
9808
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -10371,7 +9945,7 @@ spec:
|
|
|
10371
9945
|
command:
|
|
10372
9946
|
- /opt/app-root/src/run-role.sh
|
|
10373
9947
|
- suite_certs
|
|
10374
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9948
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10375
9949
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10376
9950
|
|
|
10377
9951
|
workspaces:
|
|
@@ -10438,7 +10012,7 @@ spec:
|
|
|
10438
10012
|
command:
|
|
10439
10013
|
- /opt/app-root/src/run-role.sh
|
|
10440
10014
|
- suite_config
|
|
10441
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10015
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10442
10016
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10443
10017
|
workingDir: /workspace/configs
|
|
10444
10018
|
|
|
@@ -10509,7 +10083,7 @@ spec:
|
|
|
10509
10083
|
command:
|
|
10510
10084
|
- /opt/app-root/src/run-role.sh
|
|
10511
10085
|
- suite_db2_setup_for_manage
|
|
10512
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10086
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10513
10087
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10514
10088
|
# --------------------------------------------------------------------------------
|
|
10515
10089
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -10699,7 +10273,7 @@ spec:
|
|
|
10699
10273
|
command:
|
|
10700
10274
|
- /opt/app-root/src/run-role.sh
|
|
10701
10275
|
- suite_dns
|
|
10702
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10276
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10703
10277
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10704
10278
|
# --------------------------------------------------------------------------------
|
|
10705
10279
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -10912,7 +10486,7 @@ spec:
|
|
|
10912
10486
|
command:
|
|
10913
10487
|
- /opt/app-root/src/run-role.sh
|
|
10914
10488
|
- suite_install
|
|
10915
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10489
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
10916
10490
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10917
10491
|
workingDir: /workspace/configs
|
|
10918
10492
|
|
|
@@ -11000,7 +10574,7 @@ spec:
|
|
|
11000
10574
|
command:
|
|
11001
10575
|
- /opt/app-root/src/run-role.sh
|
|
11002
10576
|
- suite_rollback
|
|
11003
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10577
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11004
10578
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11005
10579
|
# --------------------------------------------------------------------------------
|
|
11006
10580
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -11065,7 +10639,7 @@ spec:
|
|
|
11065
10639
|
command:
|
|
11066
10640
|
- /opt/app-root/src/run-role.sh
|
|
11067
10641
|
- suite_uninstall
|
|
11068
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10642
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11069
10643
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11070
10644
|
# --------------------------------------------------------------------------------
|
|
11071
10645
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -11135,7 +10709,7 @@ spec:
|
|
|
11135
10709
|
command:
|
|
11136
10710
|
- /opt/app-root/src/run-role.sh
|
|
11137
10711
|
- suite_upgrade
|
|
11138
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10712
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11139
10713
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11140
10714
|
# --------------------------------------------------------------------------------
|
|
11141
10715
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -11197,12 +10771,12 @@ spec:
|
|
|
11197
10771
|
command:
|
|
11198
10772
|
- /opt/app-root/src/run-role.sh
|
|
11199
10773
|
- suite_verify
|
|
11200
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10774
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11201
10775
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11202
10776
|
|
|
11203
10777
|
# If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
11204
10778
|
- name: suite-post-verify
|
|
11205
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10779
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11206
10780
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11207
10781
|
command:
|
|
11208
10782
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -11331,7 +10905,7 @@ spec:
|
|
|
11331
10905
|
command:
|
|
11332
10906
|
- /opt/app-root/src/run-role.sh
|
|
11333
10907
|
- turbonomic
|
|
11334
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10908
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11335
10909
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11336
10910
|
# --------------------------------------------------------------------------------
|
|
11337
10911
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -11412,7 +10986,7 @@ spec:
|
|
|
11412
10986
|
# IBM User Data Services (UDS)
|
|
11413
10987
|
# -------------------------------------------------------------------------
|
|
11414
10988
|
- name: uds
|
|
11415
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10989
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11416
10990
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11417
10991
|
workingDir: /workspace/configs
|
|
11418
10992
|
command:
|
|
@@ -11475,7 +11049,7 @@ spec:
|
|
|
11475
11049
|
# IBM Data Reporter Operator (DRO)
|
|
11476
11050
|
# -------------------------------------------------------------------------
|
|
11477
11051
|
- name: dro
|
|
11478
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11052
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11479
11053
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11480
11054
|
workingDir: /workspace/configs
|
|
11481
11055
|
command:
|
|
@@ -11561,7 +11135,7 @@ spec:
|
|
|
11561
11135
|
|
|
11562
11136
|
steps:
|
|
11563
11137
|
- name: update-configmap
|
|
11564
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11138
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11565
11139
|
command:
|
|
11566
11140
|
- /opt/app-root/src/update-configmap.sh
|
|
11567
11141
|
env:
|
|
@@ -11623,7 +11197,7 @@ spec:
|
|
|
11623
11197
|
|
|
11624
11198
|
steps:
|
|
11625
11199
|
- name: wait-for-configmap
|
|
11626
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11200
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11627
11201
|
command:
|
|
11628
11202
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
11629
11203
|
env:
|
|
@@ -11687,7 +11261,7 @@ spec:
|
|
|
11687
11261
|
|
|
11688
11262
|
steps:
|
|
11689
11263
|
- name: wait
|
|
11690
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11264
|
+
image: quay.io/ibmmas/cli:10.4.2
|
|
11691
11265
|
command:
|
|
11692
11266
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
11693
11267
|
env:
|
|
@@ -21875,109 +21449,6 @@ spec:
|
|
|
21875
21449
|
# This variable is only available in the finally tasks and can have any one of the values (Succeeded, Failed, Completed, or None)
|
|
21876
21450
|
value: $(tasks.status)
|
|
21877
21451
|
# --------------------------------------------------------------------------------
|
|
21878
|
-
# /home/runner/work/cli/cli/tekton/target/pipelines/ivt.yaml
|
|
21879
|
-
# --------------------------------------------------------------------------------
|
|
21880
|
-
---
|
|
21881
|
-
apiVersion: tekton.dev/v1beta1
|
|
21882
|
-
kind: Pipeline
|
|
21883
|
-
metadata:
|
|
21884
|
-
name: mas-ivt
|
|
21885
|
-
spec:
|
|
21886
|
-
workspaces:
|
|
21887
|
-
# The generated configuration files
|
|
21888
|
-
- name: shared-configs
|
|
21889
|
-
# PodTemplates configurations
|
|
21890
|
-
- name: shared-pod-templates
|
|
21891
|
-
|
|
21892
|
-
params:
|
|
21893
|
-
# Tekton Pipeline image pull policy (for ibmmas/cli images)
|
|
21894
|
-
- name: image_pull_policy
|
|
21895
|
-
type: string
|
|
21896
|
-
default: IfNotPresent
|
|
21897
|
-
description: Pull policy for pipeline container images
|
|
21898
|
-
|
|
21899
|
-
# MAS Configuration
|
|
21900
|
-
- name: mas_app_channel_manage
|
|
21901
|
-
type: string
|
|
21902
|
-
default: ""
|
|
21903
|
-
- name: mas_instance_id
|
|
21904
|
-
type: string
|
|
21905
|
-
default: ""
|
|
21906
|
-
- name: mas_workspace_id
|
|
21907
|
-
type: string
|
|
21908
|
-
default: ""
|
|
21909
|
-
- name: mas_app_channel_monitor
|
|
21910
|
-
type: string
|
|
21911
|
-
default: ""
|
|
21912
|
-
|
|
21913
|
-
# FVT Configuration
|
|
21914
|
-
- name: fvt_image_registry
|
|
21915
|
-
type: string
|
|
21916
|
-
default: ""
|
|
21917
|
-
- name: fvt_artifactory_username
|
|
21918
|
-
type: string
|
|
21919
|
-
default: ""
|
|
21920
|
-
- name: fvt_artifactory_token
|
|
21921
|
-
type: string
|
|
21922
|
-
default: ""
|
|
21923
|
-
|
|
21924
|
-
# Image Digests
|
|
21925
|
-
- name: fvt_digest_manage
|
|
21926
|
-
type: string
|
|
21927
|
-
default: ""
|
|
21928
|
-
- name: fvt_digest_manage_pytest
|
|
21929
|
-
type: string
|
|
21930
|
-
default: ""
|
|
21931
|
-
|
|
21932
|
-
- name: fvt_digest_ctf
|
|
21933
|
-
type: string
|
|
21934
|
-
default: ""
|
|
21935
|
-
|
|
21936
|
-
tasks:
|
|
21937
|
-
# IVT
|
|
21938
|
-
# -------------------------------------------------------------------------
|
|
21939
|
-
# -------------------------------------------------------------
|
|
21940
|
-
# Manage x Monitor - Data Dictionary
|
|
21941
|
-
# - Requires in the same pipeline:
|
|
21942
|
-
# - fvt-apps/manage.yml.j2
|
|
21943
|
-
# - fvt-apps/monitor.yml.j2
|
|
21944
|
-
# -------------------------------------------------------------
|
|
21945
|
-
- name: ivt-manage-monitor-dd
|
|
21946
|
-
params:
|
|
21947
|
-
- name: mas_instance_id
|
|
21948
|
-
value: $(params.mas_instance_id)
|
|
21949
|
-
- name: mas_workspace_id
|
|
21950
|
-
value: $(params.mas_workspace_id)
|
|
21951
|
-
- name: fvt_image_registry
|
|
21952
|
-
value: $(params.fvt_image_registry)
|
|
21953
|
-
- name: fvt_image_digest_manage
|
|
21954
|
-
value: $(params.fvt_digest_manage)
|
|
21955
|
-
- name: fvt_image_digest_monitor
|
|
21956
|
-
value: $(params.fvt_digest_ctf)
|
|
21957
|
-
- name: product_channel_manage
|
|
21958
|
-
value: $(params.mas_app_channel_manage)
|
|
21959
|
-
- name: product_channel_monitor
|
|
21960
|
-
value: $(params.mas_app_channel_monitor)
|
|
21961
|
-
taskRef:
|
|
21962
|
-
kind: Task
|
|
21963
|
-
name: mas-ivt-manage-monitor-dd
|
|
21964
|
-
when:
|
|
21965
|
-
- input: "$(params.fvt_digest_ctf)"
|
|
21966
|
-
operator: notin
|
|
21967
|
-
values: [""]
|
|
21968
|
-
- input: "$(params.fvt_digest_manage)"
|
|
21969
|
-
operator: notin
|
|
21970
|
-
values: [""]
|
|
21971
|
-
- input: "$(params.mas_app_channel_monitor)"
|
|
21972
|
-
operator: notin
|
|
21973
|
-
values: [""]
|
|
21974
|
-
- input: "$(params.mas_app_channel_manage)"
|
|
21975
|
-
operator: notin
|
|
21976
|
-
values: [""]
|
|
21977
|
-
workspaces:
|
|
21978
|
-
- name: configs
|
|
21979
|
-
workspace: shared-configs
|
|
21980
|
-
# --------------------------------------------------------------------------------
|
|
21981
21452
|
# /home/runner/work/cli/cli/tekton/target/pipelines/provision-bootstrap-cluster-after-deprovision.yaml
|
|
21982
21453
|
# --------------------------------------------------------------------------------
|
|
21983
21454
|
---
|