mas-cli 10.5.0__py3-none-any.whl → 10.6.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 CHANGED
@@ -8,4 +8,4 @@
8
8
  #
9
9
  # *****************************************************************************
10
10
 
11
- __version__ = "10.5.0"
11
+ __version__ = "10.6.0"
mas/cli/install/app.py CHANGED
@@ -165,7 +165,10 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
165
165
  try:
166
166
  packagemanifestAPI = self.dynamicClient.resources.get(api_version="packages.operators.coreos.com/v1", kind="PackageManifest")
167
167
  packagemanifestAPI.get(name="grafana-operator", namespace="openshift-marketplace")
168
- self.setParam("grafana_action", "install")
168
+ if self.skipGrafanaInstall:
169
+ self.setParam("grafana_action", "none")
170
+ else:
171
+ self.setParam("grafana_action", "install")
169
172
  except NotFoundError:
170
173
  self.setParam("grafana_action", "none")
171
174
 
@@ -842,7 +845,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
842
845
  self.fatalError(f"Unsupported format for {key} ({value}). Expected string:int:int:boolean")
843
846
 
844
847
  # Arguments that we don't need to do anything with
845
- elif key in ["accept_license", "dev_mode", "skip_pre_check", "no_confirm", "no_wait_for_pvc", "help"]:
848
+ elif key in ["accept_license", "dev_mode", "skip_pre_check", "skip_grafana_install", "no_confirm", "no_wait_for_pvc", "help"]:
846
849
  pass
847
850
 
848
851
  elif key == "manual_certificates":
@@ -886,6 +889,8 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
886
889
  # These flags work for setting params in both interactive and non-interactive modes
887
890
  if args.skip_pre_check:
888
891
  self.setParam("skip_pre_check", "true")
892
+ if args.skip_grafana_install:
893
+ self.skipGrafanaInstall = True
889
894
 
890
895
  self.installOptions = [
891
896
  {
@@ -843,6 +843,12 @@ otherArgGroup.add_argument(
843
843
  action="store_true",
844
844
  help="Disable the 'pre-install-check' at the start of the install pipeline"
845
845
  )
846
+ otherArgGroup.add_argument(
847
+ "--skip-grafana-install",
848
+ required=False,
849
+ action="store_true",
850
+ help="Skips Grafana install action"
851
+ )
846
852
  otherArgGroup.add_argument(
847
853
  "--no-confirm",
848
854
  required=False,
@@ -32,6 +32,7 @@ class InstallSummarizerMixin():
32
32
  self.printSummary("Single Node OpenShift", "No")
33
33
 
34
34
  self.printSummary("Skip Pre-Install Healthcheck", "Yes" if self.getParam('skip_pre_check') == "true" else "No")
35
+ self.printSummary("Skip Grafana-Install", "Yes" if self.getParam('grafana_action') == "none" else "No")
35
36
 
36
37
  def icrSummary(self) -> None:
37
38
  self.printH2("IBM Container Registry Credentials")
@@ -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.5.0
111
+ image: quay.io/ibmmas/cli:10.6.0
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.5.0
229
+ image: quay.io/ibmmas/cli:10.6.0
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.5.0
299
+ image: quay.io/ibmmas/cli:10.6.0
300
300
  imagePullPolicy: $(params.image_pull_policy)
301
301
  workingDir: /workspace/configs
302
302
  # --------------------------------------------------------------------------------
@@ -359,7 +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.5.0
362
+ image: quay.io/ibmmas/cli:10.6.0
363
363
  imagePullPolicy: $(params.image_pull_policy)
364
364
  workingDir: /workspace/configs
365
365
  # --------------------------------------------------------------------------------
@@ -474,7 +474,7 @@ spec:
474
474
  command:
475
475
  - /opt/app-root/src/run-role.sh
476
476
  - cos
477
- image: quay.io/ibmmas/cli:10.5.0
477
+ image: quay.io/ibmmas/cli:10.6.0
478
478
  imagePullPolicy: $(params.image_pull_policy)
479
479
  workingDir: /workspace/configs
480
480
 
@@ -594,7 +594,7 @@ spec:
594
594
  command:
595
595
  - /opt/app-root/src/run-role.sh
596
596
  - cp4d_service
597
- image: quay.io/ibmmas/cli:10.5.0
597
+ image: quay.io/ibmmas/cli:10.6.0
598
598
  imagePullPolicy: $(params.image_pull_policy)
599
599
  workingDir: /workspace/configs
600
600
  # --------------------------------------------------------------------------------
@@ -711,7 +711,7 @@ spec:
711
711
  command:
712
712
  - /opt/app-root/src/run-role.sh
713
713
  - cp4d_service
714
- image: quay.io/ibmmas/cli:10.5.0
714
+ image: quay.io/ibmmas/cli:10.6.0
715
715
  imagePullPolicy: $(params.image_pull_policy)
716
716
  workingDir: /workspace/configs
717
717
 
@@ -817,7 +817,7 @@ spec:
817
817
  command:
818
818
  - /opt/app-root/src/run-role.sh
819
819
  - cp4d
820
- image: quay.io/ibmmas/cli:10.5.0
820
+ image: quay.io/ibmmas/cli:10.6.0
821
821
  imagePullPolicy: $(params.image_pull_policy)
822
822
  # --------------------------------------------------------------------------------
823
823
  # /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
@@ -1139,7 +1139,7 @@ spec:
1139
1139
  command:
1140
1140
  - /opt/app-root/src/run-role.sh
1141
1141
  - db2
1142
- image: quay.io/ibmmas/cli:10.5.0
1142
+ image: quay.io/ibmmas/cli:10.6.0
1143
1143
  imagePullPolicy: $(params.image_pull_policy)
1144
1144
  workingDir: /workspace/configs
1145
1145
 
@@ -1242,7 +1242,7 @@ spec:
1242
1242
  command:
1243
1243
  - /opt/app-root/src/run-role.sh
1244
1244
  - eck
1245
- image: quay.io/ibmmas/cli:10.5.0
1245
+ image: quay.io/ibmmas/cli:10.6.0
1246
1246
  imagePullPolicy: $(params.image_pull_policy)
1247
1247
  # --------------------------------------------------------------------------------
1248
1248
  # /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
@@ -1331,7 +1331,7 @@ spec:
1331
1331
  command:
1332
1332
  - /opt/app-root/src/run-role.sh
1333
1333
  - gencfg_workspace
1334
- image: quay.io/ibmmas/cli:10.5.0
1334
+ image: quay.io/ibmmas/cli:10.6.0
1335
1335
  imagePullPolicy: $(params.image_pull_policy)
1336
1336
  workingDir: /workspace/configs
1337
1337
 
@@ -1435,7 +1435,7 @@ spec:
1435
1435
  - -c
1436
1436
  name: gitops-bootstrap
1437
1437
  imagePullPolicy: IfNotPresent
1438
- image: quay.io/ibmmas/cli:10.5.0
1438
+ image: quay.io/ibmmas/cli:10.6.0
1439
1439
  workspaces:
1440
1440
  - name: configs
1441
1441
  # --------------------------------------------------------------------------------
@@ -1512,7 +1512,7 @@ spec:
1512
1512
  - -c
1513
1513
  name: gitops-cis-compliance
1514
1514
  imagePullPolicy: IfNotPresent
1515
- image: quay.io/ibmmas/cli:10.5.0
1515
+ image: quay.io/ibmmas/cli:10.6.0
1516
1516
  workspaces:
1517
1517
  - name: configs
1518
1518
  # --------------------------------------------------------------------------------
@@ -1589,6 +1589,9 @@ spec:
1589
1589
  - name: ocp_cluster_domain
1590
1590
  type: string
1591
1591
  default: ""
1592
+ - name: ingress
1593
+ type: string
1594
+ default: "false"
1592
1595
 
1593
1596
  stepTemplate:
1594
1597
  name: gitops-cluster
@@ -1644,6 +1647,8 @@ spec:
1644
1647
  value: $(params.dns_provider)
1645
1648
  - name: OCP_CLUSTER_DOMAIN
1646
1649
  value: $(params.ocp_cluster_domain)
1650
+ - name: INGRESS
1651
+ value: $(params.ingress)
1647
1652
 
1648
1653
  envFrom:
1649
1654
  - configMapRef:
@@ -1691,7 +1696,7 @@ spec:
1691
1696
  - -c
1692
1697
  name: gitops-cluster
1693
1698
  imagePullPolicy: Always
1694
- image: quay.io/ibmmas/cli:10.5.0
1699
+ image: quay.io/ibmmas/cli:10.6.0
1695
1700
  workspaces:
1696
1701
  - name: configs
1697
1702
  # --------------------------------------------------------------------------------
@@ -1775,7 +1780,7 @@ spec:
1775
1780
  - -c
1776
1781
  name: gitops-cos
1777
1782
  imagePullPolicy: IfNotPresent
1778
- image: quay.io/ibmmas/cli:10.5.0
1783
+ image: quay.io/ibmmas/cli:10.6.0
1779
1784
  workspaces:
1780
1785
  - name: configs
1781
1786
  # --------------------------------------------------------------------------------
@@ -1888,7 +1893,7 @@ spec:
1888
1893
  - -c
1889
1894
  name: gitops-cp4d-service
1890
1895
  imagePullPolicy: IfNotPresent
1891
- image: quay.io/ibmmas/cli:10.5.0
1896
+ image: quay.io/ibmmas/cli:10.6.0
1892
1897
  workspaces:
1893
1898
  - name: configs
1894
1899
  - name: shared-gitops-configs
@@ -1997,7 +2002,7 @@ spec:
1997
2002
  - -c
1998
2003
  name: gitops-cp4d
1999
2004
  imagePullPolicy: IfNotPresent
2000
- image: quay.io/ibmmas/cli:10.5.0
2005
+ image: quay.io/ibmmas/cli:10.6.0
2001
2006
  workspaces:
2002
2007
  - name: configs
2003
2008
  - name: shared-gitops-configs
@@ -2106,10 +2111,15 @@ spec:
2106
2111
  type: string
2107
2112
  - name: db2_tolerate_effect
2108
2113
  type: string
2114
+ - name: db2_timezone
2115
+ type: string
2109
2116
  - name: mas_instance_id
2110
2117
  type: string
2111
2118
  - name: mas_app_id
2112
2119
  type: string
2120
+ - name: jdbc_route
2121
+ type: string
2122
+ default: ""
2113
2123
  stepTemplate:
2114
2124
  name: gitops-db2u-database
2115
2125
  env:
@@ -2209,8 +2219,12 @@ spec:
2209
2219
  value: $(params.db2_tolerate_value)
2210
2220
  - name: DB2_TOLERATE_EFFECT
2211
2221
  value: $(params.db2_tolerate_effect)
2222
+ - name: DB2_TIMEZONE
2223
+ value: $(params.db2_timezone)
2212
2224
  - name: MAS_APP_ID
2213
2225
  value: $(params.mas_app_id)
2226
+ - name: JDBC_ROUTE
2227
+ value: $(params.jdbc_route)
2214
2228
  envFrom:
2215
2229
  - configMapRef:
2216
2230
  name: environment-properties
@@ -2240,7 +2254,7 @@ spec:
2240
2254
  - -c
2241
2255
  name: gitops-db2u-database
2242
2256
  imagePullPolicy: Always
2243
- image: quay.io/ibmmas/cli:10.5.0
2257
+ image: quay.io/ibmmas/cli:10.6.0
2244
2258
  workspaces:
2245
2259
  - name: configs
2246
2260
  - name: shared-gitops-configs
@@ -2333,7 +2347,7 @@ spec:
2333
2347
  - -c
2334
2348
  name: gitops-db2u
2335
2349
  imagePullPolicy: IfNotPresent
2336
- image: quay.io/ibmmas/cli:10.5.0
2350
+ image: quay.io/ibmmas/cli:10.6.0
2337
2351
  workspaces:
2338
2352
  - name: configs
2339
2353
  # --------------------------------------------------------------------------------
@@ -2382,6 +2396,9 @@ spec:
2382
2396
  - name: jdbc_certificate_file
2383
2397
  type: string
2384
2398
  default: ""
2399
+ - name: jdbc_route
2400
+ type: string
2401
+ default: ""
2385
2402
  stepTemplate:
2386
2403
  name: gitops-delete-jdbc-config
2387
2404
  env:
@@ -2419,6 +2436,8 @@ spec:
2419
2436
  value: $(params.jdbc_connection_url)
2420
2437
  - name: JDBC_CERTIFICATE_FILE
2421
2438
  value: $(params.jdbc_certificate_file)
2439
+ - name: JDBC_ROUTE
2440
+ value: $(params.jdbc_route)
2422
2441
  envFrom:
2423
2442
  - configMapRef:
2424
2443
  name: environment-properties
@@ -2455,7 +2474,7 @@ spec:
2455
2474
  - -c
2456
2475
  name: gitops-delete-jdbc-config
2457
2476
  imagePullPolicy: IfNotPresent
2458
- image: quay.io/ibmmas/cli:10.5.0
2477
+ image: quay.io/ibmmas/cli:10.6.0
2459
2478
  workspaces:
2460
2479
  - name: configs
2461
2480
  # --------------------------------------------------------------------------------
@@ -2553,7 +2572,7 @@ spec:
2553
2572
  - -c
2554
2573
  name: gitops-delete-kafka-config
2555
2574
  imagePullPolicy: Always
2556
- image: quay.io/ibmmas/cli:10.5.0
2575
+ image: quay.io/ibmmas/cli:10.6.0
2557
2576
  workspaces:
2558
2577
  - name: configs
2559
2578
 
@@ -2645,7 +2664,7 @@ spec:
2645
2664
  - -c
2646
2665
  name: gitops-deprovision-app-config
2647
2666
  imagePullPolicy: IfNotPresent
2648
- image: quay.io/ibmmas/cli:10.5.0
2667
+ image: quay.io/ibmmas/cli:10.6.0
2649
2668
  workspaces:
2650
2669
  - name: configs
2651
2670
  # --------------------------------------------------------------------------------
@@ -2730,7 +2749,7 @@ spec:
2730
2749
  - -c
2731
2750
  name: gitops-deprovision-app-install
2732
2751
  imagePullPolicy: IfNotPresent
2733
- image: quay.io/ibmmas/cli:10.5.0
2752
+ image: quay.io/ibmmas/cli:10.6.0
2734
2753
  workspaces:
2735
2754
  - name: configs
2736
2755
  # --------------------------------------------------------------------------------
@@ -2815,7 +2834,7 @@ spec:
2815
2834
  - -c
2816
2835
  name: gitops-deprovision-cluster
2817
2836
  imagePullPolicy: IfNotPresent
2818
- image: quay.io/ibmmas/cli:10.5.0
2837
+ image: quay.io/ibmmas/cli:10.6.0
2819
2838
  workspaces:
2820
2839
  - name: configs
2821
2840
  # --------------------------------------------------------------------------------
@@ -2922,7 +2941,7 @@ spec:
2922
2941
  - -c
2923
2942
  name: gitops-deprovision-cos
2924
2943
  imagePullPolicy: IfNotPresent
2925
- image: quay.io/ibmmas/cli:10.5.0
2944
+ image: quay.io/ibmmas/cli:10.6.0
2926
2945
  workspaces:
2927
2946
  - name: configs
2928
2947
  # --------------------------------------------------------------------------------
@@ -3010,7 +3029,7 @@ spec:
3010
3029
  - -c
3011
3030
  name: gitops-deprovision-db2u-database
3012
3031
  imagePullPolicy: IfNotPresent
3013
- image: quay.io/ibmmas/cli:10.5.0
3032
+ image: quay.io/ibmmas/cli:10.6.0
3014
3033
  workspaces:
3015
3034
  - name: configs
3016
3035
 
@@ -3093,7 +3112,7 @@ spec:
3093
3112
  - -c
3094
3113
  name: gitops-deprovision-db2u
3095
3114
  imagePullPolicy: IfNotPresent
3096
- image: quay.io/ibmmas/cli:10.5.0
3115
+ image: quay.io/ibmmas/cli:10.6.0
3097
3116
  workspaces:
3098
3117
  - name: configs
3099
3118
 
@@ -3169,7 +3188,7 @@ spec:
3169
3188
  - -c
3170
3189
  name: gitops-deprovision-efs
3171
3190
  imagePullPolicy: IfNotPresent
3172
- image: quay.io/ibmmas/cli:10.5.0
3191
+ image: quay.io/ibmmas/cli:10.6.0
3173
3192
  workspaces:
3174
3193
  - name: configs
3175
3194
 
@@ -3278,7 +3297,7 @@ spec:
3278
3297
  - -c
3279
3298
  name: gitops-deprovision-kafka
3280
3299
  imagePullPolicy: IfNotPresent
3281
- image: quay.io/ibmmas/cli:10.5.0
3300
+ image: quay.io/ibmmas/cli:10.6.0
3282
3301
  workspaces:
3283
3302
  - name: configs
3284
3303
  # --------------------------------------------------------------------------------
@@ -3380,7 +3399,7 @@ spec:
3380
3399
  - -c
3381
3400
  name: gitops-deprovision-mongo
3382
3401
  imagePullPolicy: IfNotPresent
3383
- image: quay.io/ibmmas/cli:10.5.0
3402
+ image: quay.io/ibmmas/cli:10.6.0
3384
3403
  workspaces:
3385
3404
  - name: configs
3386
3405
 
@@ -3437,7 +3456,7 @@ spec:
3437
3456
  - -c
3438
3457
  name: gitops-deprovision-rosa
3439
3458
  imagePullPolicy: IfNotPresent
3440
- image: quay.io/ibmmas/cli:10.5.0
3459
+ image: quay.io/ibmmas/cli:10.6.0
3441
3460
  workspaces:
3442
3461
  - name: configs
3443
3462
  # --------------------------------------------------------------------------------
@@ -3476,12 +3495,18 @@ spec:
3476
3495
  - name: jdbc_instance_name_iot
3477
3496
  type: string
3478
3497
  default: ""
3498
+ - name: jdbc_route_iot
3499
+ type: string
3500
+ default: ""
3479
3501
  - name: jdbc_type_manage
3480
3502
  type: string
3481
3503
  default: "inclutser-db2"
3482
3504
  - name: jdbc_instance_name_manage
3483
3505
  type: string
3484
3506
  default: ""
3507
+ - name: jdbc_route_manage
3508
+ type: string
3509
+ default: ""
3485
3510
  stepTemplate:
3486
3511
  name: gitops-deprovision-suite-config
3487
3512
  env:
@@ -3509,10 +3534,14 @@ spec:
3509
3534
  value: $(params.jdbc_type_iot)
3510
3535
  - name: JDBC_INSTANCE_NAME_IOT
3511
3536
  value: $(params.jdbc_instance_name_iot)
3537
+ - name: JDBC_ROUTE_IOT
3538
+ value: $(params.jdbc_route_iot)
3512
3539
  - name: JDBC_TYPE_MANAGE
3513
3540
  value: $(params.jdbc_type_manage)
3514
3541
  - name: JDBC_INSTANCE_NAME_MANAGE
3515
3542
  value: $(params.jdbc_instance_name_manage)
3543
+ - name: JDBC_ROUTE_MANAGE
3544
+ value: $(params.jdbc_route_manage)
3516
3545
  envFrom:
3517
3546
  - configMapRef:
3518
3547
  name: environment-properties
@@ -3550,6 +3579,7 @@ spec:
3550
3579
  --mas-app-id "iot" \
3551
3580
  --dir /tmp/deprovision-suite-config-iotdb \
3552
3581
  --jdbc-type "$JDBC_TYPE_IOT" \
3582
+ --jdbc-route "$JDBC_ROUTE_IOT" \
3553
3583
  --jdbc-instance-name "$JDBC_INSTANCE_NAME_IOT" \
3554
3584
  || exit 1
3555
3585
 
@@ -3571,6 +3601,7 @@ spec:
3571
3601
  --mas-workspace-id "masdev" \
3572
3602
  --mas-app-id "manage" \
3573
3603
  --jdbc-type "$JDBC_TYPE_MANAGE" \
3604
+ --jdbc-route "$JDBC_ROUTE_MANAGE" \
3574
3605
  --jdbc-instance-name "$JDBC_INSTANCE_NAME_MANAGE" \
3575
3606
  || exit 1
3576
3607
 
@@ -3630,7 +3661,7 @@ spec:
3630
3661
  - -c
3631
3662
  name: gitops-deprovision-suite-config
3632
3663
  imagePullPolicy: IfNotPresent
3633
- image: quay.io/ibmmas/cli:10.5.0
3664
+ image: quay.io/ibmmas/cli:10.6.0
3634
3665
  workspaces:
3635
3666
  - name: configs
3636
3667
 
@@ -3728,7 +3759,7 @@ spec:
3728
3759
  - -c
3729
3760
  name: gitops-deprovision-suite-idp-config
3730
3761
  imagePullPolicy: IfNotPresent
3731
- image: quay.io/ibmmas/cli:10.5.0
3762
+ image: quay.io/ibmmas/cli:10.6.0
3732
3763
  workspaces:
3733
3764
  - name: configs
3734
3765
  # --------------------------------------------------------------------------------
@@ -3820,7 +3851,7 @@ spec:
3820
3851
  - -c
3821
3852
  name: gitops-deprovision-suite-objectstorage-config
3822
3853
  imagePullPolicy: IfNotPresent
3823
- image: quay.io/ibmmas/cli:10.5.0
3854
+ image: quay.io/ibmmas/cli:10.6.0
3824
3855
  workspaces:
3825
3856
  - name: configs
3826
3857
  # --------------------------------------------------------------------------------
@@ -3912,7 +3943,7 @@ spec:
3912
3943
  - -c
3913
3944
  name: gitops-deprovision-suite-smtp-config
3914
3945
  imagePullPolicy: IfNotPresent
3915
- image: quay.io/ibmmas/cli:10.5.0
3946
+ image: quay.io/ibmmas/cli:10.6.0
3916
3947
  workspaces:
3917
3948
  - name: configs
3918
3949
  # --------------------------------------------------------------------------------
@@ -4005,7 +4036,7 @@ spec:
4005
4036
  - -c
4006
4037
  name: gitops-deprovision-suite-watson-studio-config
4007
4038
  imagePullPolicy: IfNotPresent
4008
- image: quay.io/ibmmas/cli:10.5.0
4039
+ image: quay.io/ibmmas/cli:10.6.0
4009
4040
  workspaces:
4010
4041
  - name: configs
4011
4042
  # --------------------------------------------------------------------------------
@@ -4096,7 +4127,7 @@ spec:
4096
4127
  - -c
4097
4128
  name: gitops-deprovision-suite-workspace
4098
4129
  imagePullPolicy: Always
4099
- image: quay.io/ibmmas/cli:10.5.0
4130
+ image: quay.io/ibmmas/cli:10.6.0
4100
4131
  workspaces:
4101
4132
  - name: configs
4102
4133
  # --------------------------------------------------------------------------------
@@ -4189,7 +4220,7 @@ spec:
4189
4220
  - -c
4190
4221
  name: gitops-deprovision-suite
4191
4222
  imagePullPolicy: IfNotPresent
4192
- image: quay.io/ibmmas/cli:10.5.0
4223
+ image: quay.io/ibmmas/cli:10.6.0
4193
4224
  workspaces:
4194
4225
  - name: configs
4195
4226
 
@@ -4292,7 +4323,7 @@ spec:
4292
4323
  - -c
4293
4324
  name: gitops-dro
4294
4325
  imagePullPolicy: IfNotPresent
4295
- image: quay.io/ibmmas/cli:10.5.0
4326
+ image: quay.io/ibmmas/cli:10.6.0
4296
4327
  workspaces:
4297
4328
  - name: configs
4298
4329
  # --------------------------------------------------------------------------------
@@ -4374,7 +4405,7 @@ spec:
4374
4405
  - -c
4375
4406
  name: gitops-efs
4376
4407
  imagePullPolicy: IfNotPresent
4377
- image: quay.io/ibmmas/cli:10.5.0
4408
+ image: quay.io/ibmmas/cli:10.6.0
4378
4409
  workspaces:
4379
4410
  - name: configs
4380
4411
 
@@ -4429,6 +4460,9 @@ spec:
4429
4460
  - name: jdbc_certificate_file
4430
4461
  type: string
4431
4462
  default: ""
4463
+ - name: jdbc_route
4464
+ type: string
4465
+ default: ""
4432
4466
  stepTemplate:
4433
4467
  name: gitops-jdbc-config
4434
4468
  env:
@@ -4468,6 +4502,8 @@ spec:
4468
4502
  value: $(params.jdbc_connection_url)
4469
4503
  - name: JDBC_CERTIFICATE_FILE
4470
4504
  value: $(params.jdbc_certificate_file)
4505
+ - name: JDBC_ROUTE
4506
+ value: $(params.jdbc_route)
4471
4507
  envFrom:
4472
4508
  - configMapRef:
4473
4509
  name: environment-properties
@@ -4504,7 +4540,7 @@ spec:
4504
4540
  - -c
4505
4541
  name: gitops-jdbc-config
4506
4542
  imagePullPolicy: Always
4507
- image: quay.io/ibmmas/cli:10.5.0
4543
+ image: quay.io/ibmmas/cli:10.6.0
4508
4544
  workspaces:
4509
4545
  - name: configs
4510
4546
  - name: shared-gitops-configs
@@ -4600,7 +4636,7 @@ spec:
4600
4636
  - -c
4601
4637
  name: gitops-kafka-config
4602
4638
  imagePullPolicy: Always
4603
- image: quay.io/ibmmas/cli:10.5.0
4639
+ image: quay.io/ibmmas/cli:10.6.0
4604
4640
  workspaces:
4605
4641
  - name: configs
4606
4642
 
@@ -4721,7 +4757,7 @@ spec:
4721
4757
  - -c
4722
4758
  name: gitops-kafka
4723
4759
  imagePullPolicy: IfNotPresent
4724
- image: quay.io/ibmmas/cli:10.5.0
4760
+ image: quay.io/ibmmas/cli:10.6.0
4725
4761
  workspaces:
4726
4762
  - name: configs
4727
4763
  # --------------------------------------------------------------------------------
@@ -4772,7 +4808,7 @@ spec:
4772
4808
  - -c
4773
4809
  name: gitops-license
4774
4810
  imagePullPolicy: Always
4775
- image: quay.io/ibmmas/cli:10.5.0
4811
+ image: quay.io/ibmmas/cli:10.6.0
4776
4812
  workspaces:
4777
4813
  - name: shared-entitlement
4778
4814
 
@@ -5229,7 +5265,7 @@ spec:
5229
5265
  - -c
5230
5266
  name: gitops-mas-fvt-preparer
5231
5267
  imagePullPolicy: Always
5232
- image: quay.io/ibmmas/cli:10.5.0
5268
+ image: quay.io/ibmmas/cli:10.6.0
5233
5269
  workspaces:
5234
5270
  - name: configs
5235
5271
  - name: shared-additional-configs
@@ -5633,7 +5669,7 @@ spec:
5633
5669
  - -c
5634
5670
  name: gitops-mas-initiator
5635
5671
  imagePullPolicy: IfNotPresent
5636
- image: quay.io/ibmmas/cli:10.5.0
5672
+ image: quay.io/ibmmas/cli:10.6.0
5637
5673
  workspaces:
5638
5674
  - name: configs
5639
5675
  # --------------------------------------------------------------------------------
@@ -5740,7 +5776,7 @@ spec:
5740
5776
  - -c
5741
5777
  name: gitops-mongo
5742
5778
  imagePullPolicy: IfNotPresent
5743
- image: quay.io/ibmmas/cli:10.5.0
5779
+ image: quay.io/ibmmas/cli:10.6.0
5744
5780
  workspaces:
5745
5781
  - name: configs
5746
5782
 
@@ -5852,7 +5888,7 @@ spec:
5852
5888
  - -c
5853
5889
  name: gitops-nvidia-gpu
5854
5890
  imagePullPolicy: IfNotPresent
5855
- image: quay.io/ibmmas/cli:10.5.0
5891
+ image: quay.io/ibmmas/cli:10.6.0
5856
5892
  workspaces:
5857
5893
  - name: configs
5858
5894
  # --------------------------------------------------------------------------------
@@ -5969,7 +6005,7 @@ spec:
5969
6005
  - -c
5970
6006
  name: gitops-process-mongo-user
5971
6007
  imagePullPolicy: IfNotPresent
5972
- image: quay.io/ibmmas/cli:10.5.0
6008
+ image: quay.io/ibmmas/cli:10.6.0
5973
6009
  workspaces:
5974
6010
  - name: configs
5975
6011
  # --------------------------------------------------------------------------------
@@ -6025,7 +6061,7 @@ spec:
6025
6061
  - -c
6026
6062
  name: gitops-rosa
6027
6063
  imagePullPolicy: IfNotPresent
6028
- image: quay.io/ibmmas/cli:10.5.0
6064
+ image: quay.io/ibmmas/cli:10.6.0
6029
6065
  workspaces:
6030
6066
  - name: configs
6031
6067
  # --------------------------------------------------------------------------------
@@ -6100,6 +6136,9 @@ spec:
6100
6136
  - name: mas_manual_certs_yaml
6101
6137
  type: string
6102
6138
  default: ""
6139
+ - name: ingress
6140
+ type: string
6141
+ default: "false"
6103
6142
 
6104
6143
  stepTemplate:
6105
6144
  name: gitops-suite-app-config
@@ -6154,6 +6193,8 @@ spec:
6154
6193
  value: $(params.mas_manual_cert_mgmt)
6155
6194
  - name: MAS_MANUAL_CERTS_YAML
6156
6195
  value: $(params.mas_manual_certs_yaml)
6196
+ - name: INGRESS
6197
+ value: $(params.ingress)
6157
6198
  envFrom:
6158
6199
  - configMapRef:
6159
6200
  name: environment-properties
@@ -6192,7 +6233,7 @@ spec:
6192
6233
  - -c
6193
6234
  name: gitops-suite-app-config
6194
6235
  imagePullPolicy: IfNotPresent
6195
- image: quay.io/ibmmas/cli:10.5.0
6236
+ image: quay.io/ibmmas/cli:10.6.0
6196
6237
  workspaces:
6197
6238
  - name: configs
6198
6239
  - name: shared-gitops-configs
@@ -6345,7 +6386,7 @@ spec:
6345
6386
  - -c
6346
6387
  name: gitops-suite-app-install
6347
6388
  imagePullPolicy: Always
6348
- image: quay.io/ibmmas/cli:10.5.0
6389
+ image: quay.io/ibmmas/cli:10.6.0
6349
6390
  workspaces:
6350
6391
  - name: configs
6351
6392
  - name: shared-gitops-configs
@@ -6451,7 +6492,7 @@ spec:
6451
6492
  - -c
6452
6493
  name: gitops-suite-certs
6453
6494
  imagePullPolicy: IfNotPresent
6454
- image: quay.io/ibmmas/cli:10.5.0
6495
+ image: quay.io/ibmmas/cli:10.6.0
6455
6496
  workspaces:
6456
6497
  - name: configs
6457
6498
  - name: certificates
@@ -6611,7 +6652,7 @@ spec:
6611
6652
  - -c
6612
6653
  name: gitops-suite-config
6613
6654
  imagePullPolicy: IfNotPresent
6614
- image: quay.io/ibmmas/cli:10.5.0
6655
+ image: quay.io/ibmmas/cli:10.6.0
6615
6656
  workspaces:
6616
6657
  - name: configs
6617
6658
  - name: shared-additional-configs
@@ -6711,7 +6752,7 @@ spec:
6711
6752
  - -c
6712
6753
  name: gitops-suite-dns
6713
6754
  imagePullPolicy: IfNotPresent
6714
- image: quay.io/ibmmas/cli:10.5.0
6755
+ image: quay.io/ibmmas/cli:10.6.0
6715
6756
  workspaces:
6716
6757
  - name: configs
6717
6758
 
@@ -6835,7 +6876,7 @@ spec:
6835
6876
  - -c
6836
6877
  name: gitops-suite-idp-config
6837
6878
  imagePullPolicy: IfNotPresent
6838
- image: quay.io/ibmmas/cli:10.5.0
6879
+ image: quay.io/ibmmas/cli:10.6.0
6839
6880
  workspaces:
6840
6881
  - name: configs
6841
6882
  - name: shared-additional-configs
@@ -6936,7 +6977,7 @@ spec:
6936
6977
  - -c
6937
6978
  name: gitops-suite-objectstorage-config
6938
6979
  imagePullPolicy: IfNotPresent
6939
- image: quay.io/ibmmas/cli:10.5.0
6980
+ image: quay.io/ibmmas/cli:10.6.0
6940
6981
  workspaces:
6941
6982
  - name: configs
6942
6983
  - name: shared-gitops-configs
@@ -7080,7 +7121,7 @@ spec:
7080
7121
  - -c
7081
7122
  name: gitops-suite-smtp-config
7082
7123
  imagePullPolicy: IfNotPresent
7083
- image: quay.io/ibmmas/cli:10.5.0
7124
+ image: quay.io/ibmmas/cli:10.6.0
7084
7125
  workspaces:
7085
7126
  - name: configs
7086
7127
 
@@ -7189,7 +7230,7 @@ spec:
7189
7230
  - -c
7190
7231
  name: gitops-suite-watson-studio-config
7191
7232
  imagePullPolicy: IfNotPresent
7192
- image: quay.io/ibmmas/cli:10.5.0
7233
+ image: quay.io/ibmmas/cli:10.6.0
7193
7234
  workspaces:
7194
7235
  - name: configs
7195
7236
  - name: shared-gitops-configs
@@ -7286,7 +7327,7 @@ spec:
7286
7327
  - -c
7287
7328
  name: gitops-suite-workspace
7288
7329
  imagePullPolicy: IfNotPresent
7289
- image: quay.io/ibmmas/cli:10.5.0
7330
+ image: quay.io/ibmmas/cli:10.6.0
7290
7331
  workspaces:
7291
7332
  - name: configs
7292
7333
  # --------------------------------------------------------------------------------
@@ -7302,6 +7343,9 @@ spec:
7302
7343
  - name: dns_provider
7303
7344
  type: string
7304
7345
  default: cis
7346
+ - name: ingress
7347
+ type: string
7348
+ default: "false"
7305
7349
  - name: cluster_name
7306
7350
  type: string
7307
7351
  - name: account
@@ -7414,6 +7458,8 @@ spec:
7414
7458
  value: $(params.cluster_url)
7415
7459
  - name: DNS_PROVIDER
7416
7460
  value: $(params.dns_provider)
7461
+ - name: INGRESS
7462
+ value: $(params.ingress)
7417
7463
  - name: CLUSTER_NAME
7418
7464
  value: $(params.cluster_name)
7419
7465
  - name: ACCOUNT
@@ -7551,7 +7597,7 @@ spec:
7551
7597
  - -c
7552
7598
  name: gitops-suite
7553
7599
  imagePullPolicy: IfNotPresent
7554
- image: quay.io/ibmmas/cli:10.5.0
7600
+ image: quay.io/ibmmas/cli:10.6.0
7555
7601
  workspaces:
7556
7602
  - name: configs
7557
7603
  - name: shared-gitops-configs
@@ -7601,7 +7647,7 @@ spec:
7601
7647
 
7602
7648
  steps:
7603
7649
  - name: grafana
7604
- image: quay.io/ibmmas/cli:10.5.0
7650
+ image: quay.io/ibmmas/cli:10.6.0
7605
7651
  imagePullPolicy: $(params.image_pull_policy)
7606
7652
  command:
7607
7653
  - /opt/app-root/src/run-role.sh
@@ -7735,7 +7781,7 @@ spec:
7735
7781
  command:
7736
7782
  - /opt/app-root/src/run-role.sh
7737
7783
  - ibm_catalogs
7738
- image: quay.io/ibmmas/cli:10.5.0
7784
+ image: quay.io/ibmmas/cli:10.6.0
7739
7785
  imagePullPolicy: $(params.image_pull_policy)
7740
7786
  workingDir: /workspace/configs
7741
7787
  # --------------------------------------------------------------------------------
@@ -7977,7 +8023,7 @@ spec:
7977
8023
  command:
7978
8024
  - /opt/app-root/src/run-role.sh
7979
8025
  - kafka
7980
- image: quay.io/ibmmas/cli:10.5.0
8026
+ image: quay.io/ibmmas/cli:10.6.0
7981
8027
  imagePullPolicy: $(params.image_pull_policy)
7982
8028
  workingDir: /workspace/configs
7983
8029
 
@@ -8154,7 +8200,7 @@ spec:
8154
8200
  command:
8155
8201
  - /opt/app-root/src/run-role.sh
8156
8202
  - mongodb
8157
- image: quay.io/ibmmas/cli:10.5.0
8203
+ image: quay.io/ibmmas/cli:10.6.0
8158
8204
  imagePullPolicy: $(params.image_pull_policy)
8159
8205
  workingDir: /workspace/configs
8160
8206
 
@@ -8197,7 +8243,7 @@ spec:
8197
8243
  - $(params.base_output_dir)
8198
8244
  - --extra-namespaces
8199
8245
  - selenium
8200
- image: quay.io/ibmmas/cli:10.5.0
8246
+ image: quay.io/ibmmas/cli:10.6.0
8201
8247
  imagePullPolicy: $(params.image_pull_policy)
8202
8248
  env:
8203
8249
  - name: DEVOPS_MONGO_URI
@@ -8314,7 +8360,7 @@ spec:
8314
8360
  command:
8315
8361
  - /opt/app-root/src/run-role.sh
8316
8362
  - nvidia_gpu
8317
- image: quay.io/ibmmas/cli:10.5.0
8363
+ image: quay.io/ibmmas/cli:10.6.0
8318
8364
  imagePullPolicy: $(params.image_pull_policy)
8319
8365
  workingDir: /workspace/configs
8320
8366
 
@@ -8350,7 +8396,7 @@ spec:
8350
8396
  # Verify Cluster
8351
8397
  # -------------------------------------------------------------------------
8352
8398
  - name: ocp-verify-cluster
8353
- image: quay.io/ibmmas/cli:10.5.0
8399
+ image: quay.io/ibmmas/cli:10.6.0
8354
8400
  imagePullPolicy: $(params.image_pull_policy)
8355
8401
  command:
8356
8402
  - /opt/app-root/src/run-role.sh
@@ -8392,7 +8438,7 @@ spec:
8392
8438
  # Verify Catalogs
8393
8439
  # -------------------------------------------------------------------------
8394
8440
  - name: ocp-verify-catalogs
8395
- image: quay.io/ibmmas/cli:10.5.0
8441
+ image: quay.io/ibmmas/cli:10.6.0
8396
8442
  imagePullPolicy: $(params.image_pull_policy)
8397
8443
  command:
8398
8444
  - /opt/app-root/src/run-role.sh
@@ -8434,7 +8480,7 @@ spec:
8434
8480
  # Verify Subscriptions
8435
8481
  # -------------------------------------------------------------------------
8436
8482
  - name: ocp-verify-subscriptions
8437
- image: quay.io/ibmmas/cli:10.5.0
8483
+ image: quay.io/ibmmas/cli:10.6.0
8438
8484
  imagePullPolicy: $(params.image_pull_policy)
8439
8485
  command:
8440
8486
  - /opt/app-root/src/run-role.sh
@@ -8476,7 +8522,7 @@ spec:
8476
8522
  # Verify Workloads
8477
8523
  # -------------------------------------------------------------------------
8478
8524
  - name: ocp-verify-workloads
8479
- image: quay.io/ibmmas/cli:10.5.0
8525
+ image: quay.io/ibmmas/cli:10.6.0
8480
8526
  imagePullPolicy: $(params.image_pull_policy)
8481
8527
  command:
8482
8528
  - /opt/app-root/src/run-role.sh
@@ -8518,7 +8564,7 @@ spec:
8518
8564
  # Verify Catalogs - Ingress TLS
8519
8565
  # -------------------------------------------------------------------------
8520
8566
  - name: ocp-verify-ingress
8521
- image: quay.io/ibmmas/cli:10.5.0
8567
+ image: quay.io/ibmmas/cli:10.6.0
8522
8568
  imagePullPolicy: $(params.image_pull_policy)
8523
8569
  command:
8524
8570
  - /opt/app-root/src/run-role.sh
@@ -8644,7 +8690,7 @@ spec:
8644
8690
  command:
8645
8691
  - /opt/app-root/src/run-role.sh
8646
8692
  - ocp_verify
8647
- image: quay.io/ibmmas/cli:10.5.0
8693
+ image: quay.io/ibmmas/cli:10.6.0
8648
8694
  imagePullPolicy: $(params.image_pull_policy)
8649
8695
  workingDir: /workspace/configs
8650
8696
  # --------------------------------------------------------------------------------
@@ -8712,7 +8758,7 @@ spec:
8712
8758
  command:
8713
8759
  - /opt/app-root/src/run-role.sh
8714
8760
  - ocs
8715
- image: quay.io/ibmmas/cli:10.5.0
8761
+ image: quay.io/ibmmas/cli:10.6.0
8716
8762
  imagePullPolicy: $(params.image_pull_policy)
8717
8763
  workingDir: /workspace/configs
8718
8764
 
@@ -8893,7 +8939,7 @@ spec:
8893
8939
  command:
8894
8940
  - /opt/app-root/src/run-role.sh
8895
8941
  - sls
8896
- image: quay.io/ibmmas/cli:10.5.0
8942
+ image: quay.io/ibmmas/cli:10.6.0
8897
8943
  imagePullPolicy: $(params.image_pull_policy)
8898
8944
  workingDir: /workspace/configs
8899
8945
 
@@ -9268,12 +9314,12 @@ spec:
9268
9314
  command:
9269
9315
  - /opt/app-root/src/run-role.sh
9270
9316
  - suite_app_config
9271
- image: quay.io/ibmmas/cli:10.5.0
9317
+ image: quay.io/ibmmas/cli:10.6.0
9272
9318
  imagePullPolicy: $(params.image_pull_policy)
9273
9319
 
9274
9320
  # If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
9275
9321
  - name: app-cfg-post-verify
9276
- image: quay.io/ibmmas/cli:10.5.0
9322
+ image: quay.io/ibmmas/cli:10.6.0
9277
9323
  imagePullPolicy: $(params.image_pull_policy)
9278
9324
  command:
9279
9325
  - /opt/app-root/src/wait-for-configmap.sh
@@ -9474,7 +9520,7 @@ spec:
9474
9520
  command:
9475
9521
  - /opt/app-root/src/run-role.sh
9476
9522
  - suite_app_install
9477
- image: quay.io/ibmmas/cli:10.5.0
9523
+ image: quay.io/ibmmas/cli:10.6.0
9478
9524
  imagePullPolicy: $(params.image_pull_policy)
9479
9525
 
9480
9526
  workspaces:
@@ -9563,7 +9609,7 @@ spec:
9563
9609
  command:
9564
9610
  - /opt/app-root/src/run-role.sh
9565
9611
  - suite_app_rollback
9566
- image: quay.io/ibmmas/cli:10.5.0
9612
+ image: quay.io/ibmmas/cli:10.6.0
9567
9613
  imagePullPolicy: $(params.image_pull_policy)
9568
9614
  # --------------------------------------------------------------------------------
9569
9615
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
@@ -9626,7 +9672,7 @@ spec:
9626
9672
  command:
9627
9673
  - /opt/app-root/src/run-role.sh
9628
9674
  - suite_app_uninstall
9629
- image: quay.io/ibmmas/cli:10.5.0
9675
+ image: quay.io/ibmmas/cli:10.6.0
9630
9676
  imagePullPolicy: $(params.image_pull_policy)
9631
9677
  # --------------------------------------------------------------------------------
9632
9678
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
@@ -9701,7 +9747,7 @@ spec:
9701
9747
  command:
9702
9748
  - /opt/app-root/src/run-role.sh
9703
9749
  - suite_app_upgrade
9704
- image: quay.io/ibmmas/cli:10.5.0
9750
+ image: quay.io/ibmmas/cli:10.6.0
9705
9751
  imagePullPolicy: $(params.image_pull_policy)
9706
9752
  # --------------------------------------------------------------------------------
9707
9753
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
@@ -9802,7 +9848,7 @@ spec:
9802
9848
  command:
9803
9849
  - /opt/app-root/src/run-role.sh
9804
9850
  - suite_app_verify
9805
- image: quay.io/ibmmas/cli:10.5.0
9851
+ image: quay.io/ibmmas/cli:10.6.0
9806
9852
  imagePullPolicy: $(params.image_pull_policy)
9807
9853
  # --------------------------------------------------------------------------------
9808
9854
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
@@ -9945,7 +9991,7 @@ spec:
9945
9991
  command:
9946
9992
  - /opt/app-root/src/run-role.sh
9947
9993
  - suite_certs
9948
- image: quay.io/ibmmas/cli:10.5.0
9994
+ image: quay.io/ibmmas/cli:10.6.0
9949
9995
  imagePullPolicy: $(params.image_pull_policy)
9950
9996
 
9951
9997
  workspaces:
@@ -10012,7 +10058,7 @@ spec:
10012
10058
  command:
10013
10059
  - /opt/app-root/src/run-role.sh
10014
10060
  - suite_config
10015
- image: quay.io/ibmmas/cli:10.5.0
10061
+ image: quay.io/ibmmas/cli:10.6.0
10016
10062
  imagePullPolicy: $(params.image_pull_policy)
10017
10063
  workingDir: /workspace/configs
10018
10064
 
@@ -10083,7 +10129,7 @@ spec:
10083
10129
  command:
10084
10130
  - /opt/app-root/src/run-role.sh
10085
10131
  - suite_db2_setup_for_manage
10086
- image: quay.io/ibmmas/cli:10.5.0
10132
+ image: quay.io/ibmmas/cli:10.6.0
10087
10133
  imagePullPolicy: $(params.image_pull_policy)
10088
10134
  # --------------------------------------------------------------------------------
10089
10135
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
@@ -10273,7 +10319,7 @@ spec:
10273
10319
  command:
10274
10320
  - /opt/app-root/src/run-role.sh
10275
10321
  - suite_dns
10276
- image: quay.io/ibmmas/cli:10.5.0
10322
+ image: quay.io/ibmmas/cli:10.6.0
10277
10323
  imagePullPolicy: $(params.image_pull_policy)
10278
10324
  # --------------------------------------------------------------------------------
10279
10325
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
@@ -10512,7 +10558,7 @@ spec:
10512
10558
  command:
10513
10559
  - /opt/app-root/src/run-role.sh
10514
10560
  - suite_install
10515
- image: quay.io/ibmmas/cli:10.5.0
10561
+ image: quay.io/ibmmas/cli:10.6.0
10516
10562
  imagePullPolicy: $(params.image_pull_policy)
10517
10563
  workingDir: /workspace/configs
10518
10564
 
@@ -10600,7 +10646,7 @@ spec:
10600
10646
  command:
10601
10647
  - /opt/app-root/src/run-role.sh
10602
10648
  - suite_rollback
10603
- image: quay.io/ibmmas/cli:10.5.0
10649
+ image: quay.io/ibmmas/cli:10.6.0
10604
10650
  imagePullPolicy: $(params.image_pull_policy)
10605
10651
  # --------------------------------------------------------------------------------
10606
10652
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
@@ -10665,7 +10711,7 @@ spec:
10665
10711
  command:
10666
10712
  - /opt/app-root/src/run-role.sh
10667
10713
  - suite_uninstall
10668
- image: quay.io/ibmmas/cli:10.5.0
10714
+ image: quay.io/ibmmas/cli:10.6.0
10669
10715
  imagePullPolicy: $(params.image_pull_policy)
10670
10716
  # --------------------------------------------------------------------------------
10671
10717
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
@@ -10735,7 +10781,7 @@ spec:
10735
10781
  command:
10736
10782
  - /opt/app-root/src/run-role.sh
10737
10783
  - suite_upgrade
10738
- image: quay.io/ibmmas/cli:10.5.0
10784
+ image: quay.io/ibmmas/cli:10.6.0
10739
10785
  imagePullPolicy: $(params.image_pull_policy)
10740
10786
  # --------------------------------------------------------------------------------
10741
10787
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
@@ -10797,12 +10843,12 @@ spec:
10797
10843
  command:
10798
10844
  - /opt/app-root/src/run-role.sh
10799
10845
  - suite_verify
10800
- image: quay.io/ibmmas/cli:10.5.0
10846
+ image: quay.io/ibmmas/cli:10.6.0
10801
10847
  imagePullPolicy: $(params.image_pull_policy)
10802
10848
 
10803
10849
  # If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
10804
10850
  - name: suite-post-verify
10805
- image: quay.io/ibmmas/cli:10.5.0
10851
+ image: quay.io/ibmmas/cli:10.6.0
10806
10852
  imagePullPolicy: $(params.image_pull_policy)
10807
10853
  command:
10808
10854
  - /opt/app-root/src/wait-for-configmap.sh
@@ -10931,7 +10977,7 @@ spec:
10931
10977
  command:
10932
10978
  - /opt/app-root/src/run-role.sh
10933
10979
  - turbonomic
10934
- image: quay.io/ibmmas/cli:10.5.0
10980
+ image: quay.io/ibmmas/cli:10.6.0
10935
10981
  imagePullPolicy: $(params.image_pull_policy)
10936
10982
  # --------------------------------------------------------------------------------
10937
10983
  # /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
@@ -11012,7 +11058,7 @@ spec:
11012
11058
  # IBM User Data Services (UDS)
11013
11059
  # -------------------------------------------------------------------------
11014
11060
  - name: uds
11015
- image: quay.io/ibmmas/cli:10.5.0
11061
+ image: quay.io/ibmmas/cli:10.6.0
11016
11062
  imagePullPolicy: $(params.image_pull_policy)
11017
11063
  workingDir: /workspace/configs
11018
11064
  command:
@@ -11075,7 +11121,7 @@ spec:
11075
11121
  # IBM Data Reporter Operator (DRO)
11076
11122
  # -------------------------------------------------------------------------
11077
11123
  - name: dro
11078
- image: quay.io/ibmmas/cli:10.5.0
11124
+ image: quay.io/ibmmas/cli:10.6.0
11079
11125
  imagePullPolicy: $(params.image_pull_policy)
11080
11126
  workingDir: /workspace/configs
11081
11127
  command:
@@ -11161,7 +11207,7 @@ spec:
11161
11207
 
11162
11208
  steps:
11163
11209
  - name: update-configmap
11164
- image: quay.io/ibmmas/cli:10.5.0
11210
+ image: quay.io/ibmmas/cli:10.6.0
11165
11211
  command:
11166
11212
  - /opt/app-root/src/update-configmap.sh
11167
11213
  env:
@@ -11223,7 +11269,7 @@ spec:
11223
11269
 
11224
11270
  steps:
11225
11271
  - name: wait-for-configmap
11226
- image: quay.io/ibmmas/cli:10.5.0
11272
+ image: quay.io/ibmmas/cli:10.6.0
11227
11273
  command:
11228
11274
  - /opt/app-root/src/wait-for-configmap.sh
11229
11275
  env:
@@ -11287,7 +11333,7 @@ spec:
11287
11333
 
11288
11334
  steps:
11289
11335
  - name: wait
11290
- image: quay.io/ibmmas/cli:10.5.0
11336
+ image: quay.io/ibmmas/cli:10.6.0
11291
11337
  command:
11292
11338
  - /opt/app-root/src/wait-for-tekton.sh
11293
11339
  env:
@@ -12755,12 +12801,16 @@ spec:
12755
12801
  type: string
12756
12802
  - name: jdbc_instance_name_iot
12757
12803
  type: string
12758
-
12804
+ - name: jdbc_route_iot
12805
+ type: string
12806
+ default: ""
12759
12807
  - name: jdbc_type_manage
12760
12808
  type: string
12761
12809
  - name: jdbc_instance_name_manage
12762
12810
  type: string
12763
-
12811
+ - name: jdbc_route_manage
12812
+ type: string
12813
+ default: ""
12764
12814
  tasks:
12765
12815
  # 1. Deprovision workspace
12766
12816
  # -------------------------------------------------------------------------
@@ -12916,11 +12966,14 @@ spec:
12916
12966
  value: $(params.jdbc_type_iot)
12917
12967
  - name: jdbc_instance_name_iot
12918
12968
  value: $(params.jdbc_instance_name_iot)
12969
+ - name: jdbc_route_iot
12970
+ value: $(params.jdbc_route_iot)
12919
12971
  - name: jdbc_type_manage
12920
12972
  value: $(params.jdbc_type_manage)
12921
12973
  - name: jdbc_instance_name_manage
12922
12974
  value: $(params.jdbc_instance_name_manage)
12923
-
12975
+ - name: jdbc_route_manage
12976
+ value: $(params.jdbc_route_manage)
12924
12977
  workspaces:
12925
12978
  - name: configs
12926
12979
  workspace: configs
@@ -13225,6 +13278,9 @@ spec:
13225
13278
  - name: jdbc_certificate_file_iot
13226
13279
  type: string
13227
13280
  default: ""
13281
+ - name: jdbc_route_iot
13282
+ type: string
13283
+ default: ""
13228
13284
 
13229
13285
  - name: jdbc_type_manage
13230
13286
  type: string
@@ -13236,6 +13292,9 @@ spec:
13236
13292
  - name: jdbc_certificate_file_manage
13237
13293
  type: string
13238
13294
  default: ""
13295
+ - name: jdbc_route_manage
13296
+ type: string
13297
+ default: ""
13239
13298
 
13240
13299
  - name: db2_meta_storage_class
13241
13300
  type: string
@@ -13362,6 +13421,9 @@ spec:
13362
13421
  - name: db2_tolerate_effect
13363
13422
  type: string
13364
13423
  default: ""
13424
+ - name: db2_timezone
13425
+ type: string
13426
+ default: ""
13365
13427
 
13366
13428
  - name: custom_labels
13367
13429
  type: string
@@ -13613,6 +13675,10 @@ spec:
13613
13675
  type: string
13614
13676
  default: ""
13615
13677
 
13678
+ - name: ingress
13679
+ type: string
13680
+ default: "false"
13681
+
13616
13682
  tasks:
13617
13683
  # 2. Kafka
13618
13684
  # -------------------------------------------------------------------------
@@ -13773,6 +13839,10 @@ spec:
13773
13839
  value: $(params.db2_tolerate_value)
13774
13840
  - name: db2_tolerate_effect
13775
13841
  value: $(params.db2_tolerate_effect)
13842
+ - name: jdbc_route
13843
+ value: $(params.jdbc_route_iot)
13844
+ - name: db2_timezone
13845
+ value: $(params.db2_timezone)
13776
13846
 
13777
13847
  workspaces:
13778
13848
  - name: configs
@@ -13836,7 +13906,6 @@ spec:
13836
13906
  value: $(params.jdbc_connection_url_iot)
13837
13907
  - name: jdbc_certificate_file
13838
13908
  value: $(params.jdbc_certificate_file_iot)
13839
-
13840
13909
  workspaces:
13841
13910
  - name: configs
13842
13911
  workspace: configs
@@ -13966,6 +14035,10 @@ spec:
13966
14035
  value: $(params.db2_tolerate_value)
13967
14036
  - name: db2_tolerate_effect
13968
14037
  value: $(params.db2_tolerate_effect)
14038
+ - name: jdbc_route
14039
+ value: $(params.jdbc_route_manage)
14040
+ - name: db2_timezone
14041
+ value: $(params.db2_timezone)
13969
14042
 
13970
14043
  workspaces:
13971
14044
  - name: configs
@@ -14030,7 +14103,6 @@ spec:
14030
14103
  value: $(params.jdbc_connection_url_manage)
14031
14104
  - name: jdbc_certificate_file
14032
14105
  value: $(params.jdbc_certificate_file_manage)
14033
-
14034
14106
  workspaces:
14035
14107
  - name: configs
14036
14108
  workspace: configs
@@ -14179,6 +14251,8 @@ spec:
14179
14251
  value: $(params.mas_appws_kind_iot)
14180
14252
  - name: mas_app_kind
14181
14253
  value: $(params.mas_app_kind_iot)
14254
+ - name: ingress
14255
+ value: $(params.ingress)
14182
14256
  taskRef:
14183
14257
  name: gitops-suite-app-config
14184
14258
  kind: Task
@@ -14332,6 +14406,8 @@ spec:
14332
14406
  value: $(params.default_file_storage_class)
14333
14407
  - name: mas_manual_certs_yaml
14334
14408
  value: $(params.mas_manual_certs_yaml)
14409
+ - name: ingress
14410
+ value: $(params.ingress)
14335
14411
  taskRef:
14336
14412
  name: gitops-suite-app-config
14337
14413
  kind: Task
@@ -14483,6 +14559,8 @@ spec:
14483
14559
  value: $(params.mas_appws_kind_monitor)
14484
14560
  - name: mas_app_kind
14485
14561
  value: $(params.mas_app_kind_monitor)
14562
+ - name: ingress
14563
+ value: $(params.ingress)
14486
14564
  taskRef:
14487
14565
  name: gitops-suite-app-config
14488
14566
  kind: Task
@@ -14633,6 +14711,8 @@ spec:
14633
14711
  value: $(params.mas_appws_kind_visualinspection)
14634
14712
  - name: mas_app_kind
14635
14713
  value: $(params.mas_app_kind_visualinspection)
14714
+ - name: ingress
14715
+ value: $(params.ingress)
14636
14716
  taskRef:
14637
14717
  name: gitops-suite-app-config
14638
14718
  kind: Task
@@ -14893,6 +14973,8 @@ spec:
14893
14973
  value: $(params.mas_appws_kind_assist)
14894
14974
  - name: mas_app_kind
14895
14975
  value: $(params.mas_app_kind_assist)
14976
+ - name: ingress
14977
+ value: $(params.ingress)
14896
14978
  taskRef:
14897
14979
  name: gitops-suite-app-config
14898
14980
  kind: Task
@@ -15043,6 +15125,8 @@ spec:
15043
15125
  value: $(params.mas_appws_kind_optimizer)
15044
15126
  - name: mas_app_kind
15045
15127
  value: $(params.mas_app_kind_optimizer)
15128
+ - name: ingress
15129
+ value: $(params.ingress)
15046
15130
  taskRef:
15047
15131
  name: gitops-suite-app-config
15048
15132
  kind: Task
@@ -15209,6 +15293,8 @@ spec:
15209
15293
  value: $(params.mas_appws_kind_predict)
15210
15294
  - name: mas_app_kind
15211
15295
  value: $(params.mas_app_kind_predict)
15296
+ - name: ingress
15297
+ value: $(params.ingress)
15212
15298
  taskRef:
15213
15299
  name: gitops-suite-app-config
15214
15300
  kind: Task
@@ -16223,7 +16309,8 @@ spec:
16223
16309
  value: $(params.jdbc_connection_url_manage)
16224
16310
  - name: jdbc_certificate_file
16225
16311
  value: $(params.jdbc_certificate_file_manage)
16226
-
16312
+ - name: jdbc_route
16313
+ value: $(params.jdbc_route_manage)
16227
16314
  workspaces:
16228
16315
  - name: configs
16229
16316
  workspace: configs
@@ -16618,7 +16705,9 @@ spec:
16618
16705
  - name: ocp_cluster_domain
16619
16706
  type: string
16620
16707
  default: ""
16621
-
16708
+ - name: ingress
16709
+ type: string
16710
+ default: "false"
16622
16711
  tasks:
16623
16712
  - name: gitops-cluster
16624
16713
  params:
@@ -16676,6 +16765,8 @@ spec:
16676
16765
  value: $(params.ocp_cluster_domain)
16677
16766
  - name: dns_provider
16678
16767
  value: $(params.dns_provider)
16768
+ - name: ingress
16769
+ value: $(params.ingress)
16679
16770
  taskRef:
16680
16771
  kind: Task
16681
16772
  name: gitops-cluster
@@ -17674,6 +17765,9 @@ spec:
17674
17765
  - name: dns_provider
17675
17766
  type: string
17676
17767
  default: cis
17768
+ - name: ingress
17769
+ type: string
17770
+ default: "false"
17677
17771
  - name: cis_subdomain
17678
17772
  type: string
17679
17773
  default: ""
@@ -17861,6 +17955,8 @@ spec:
17861
17955
  value: $(params.cert_manager_namespace)
17862
17956
  - name: dns_provider
17863
17957
  value: $(params.dns_provider)
17958
+ - name: ingress
17959
+ value: $(params.ingress)
17864
17960
  - name: cis_subdomain
17865
17961
  value: $(params.cis_subdomain)
17866
17962
  - name: cis_mas_domain
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mas-cli
3
- Version: 10.5.0
3
+ Version: 10.6.0
4
4
  Summary: Python Admin CLI for Maximo Application Suite
5
5
  Home-page: https://github.com/ibm-mas/cli
6
6
  Author: David Parker
@@ -1,19 +1,19 @@
1
- mas/cli/__init__.py,sha256=Z8nqWH8j_4pknDvO_tmBkioZAi29Pj7h4ieJgYHYIUI,491
1
+ mas/cli/__init__.py,sha256=uOMm94gDIS5DXO6mSToTBjumTU87Xo1hMyIPFrRokK4,491
2
2
  mas/cli/cli.py,sha256=cCo18YcAU2sdv1FkPSgJlw8mEcUz3JSWAvV80t1bSNk,10753
3
3
  mas/cli/displayMixins.py,sha256=ygDJ8KPLdJpip_JQ4JDPWbvo7ZIdsOZQfQoVnMdAauM,5594
4
4
  mas/cli/gencfg.py,sha256=57ik5x73gQBFXPl_8h2byXmV_vhCgxfeSDZk4Wg5-Pw,2102
5
5
  mas/cli/validators.py,sha256=vi1pFA8QtqMhqtGk1NlkkNDUrlFCi53kS5wJqFGDgOU,5108
6
6
  mas/cli/install/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
7
- mas/cli/install/app.py,sha256=h2ef4tUMw7e2vE7DH3th_UyOKBFRRB4kamZY0J4PHuo,52853
8
- mas/cli/install/argParser.py,sha256=FEmCUrRwaE5e-AHkpsQmgMpo6ta-nLYXTtuofVxsmMg,25381
9
- mas/cli/install/summarizer.py,sha256=ydOnkiRmj3nPPcE9ZHNxHDMMgii_VYHKnyXV4JbVQ7s,18046
7
+ mas/cli/install/app.py,sha256=2NlAPphPs9USs59_j_4z-Gutp8Na6C_VXAiwkQIFhZI,53076
8
+ mas/cli/install/argParser.py,sha256=xtf7emalhh0McQIeHAaeZlF-Kwk4-7La1lxtm2StZiU,25526
9
+ mas/cli/install/summarizer.py,sha256=8SdyBKQ6SWDyDsP92qgq1MXBvgXH2KKlX4HGfrPd70M,18158
10
10
  mas/cli/install/settings/__init__.py,sha256=eGdNVHVALUxJlZyGYkBet8LbHvVfa-1UjL_8Zl3d-lY,953
11
11
  mas/cli/install/settings/additionalConfigs.py,sha256=-qn25IExNGDJ_VLTH1EmgPrFrIE3JFZ3MMb0RlTzVOg,9651
12
12
  mas/cli/install/settings/db2Settings.py,sha256=mR0XL81Talvwvm1bekw0o9VOwV42QkS0jMyp055bx5U,10713
13
13
  mas/cli/install/settings/kafkaSettings.py,sha256=bjAji5OZfSBpttiYHKM5B5Lvva8L8PUzi8QSs6opQcE,6997
14
14
  mas/cli/install/settings/manageSettings.py,sha256=WZHI5VMVBwaHrQDT5kbthgxypCc2th4XEHEMVKTnh0g,13308
15
15
  mas/cli/install/settings/turbonomicSettings.py,sha256=OC-sn6_Z6MAq0kf33OC3c96gqT8FT4P7A51PenPiCXw,1368
16
- mas/cli/templates/ibm-mas-tekton.yaml,sha256=e-gd2hxnxPNHL68T-Tzo1sInAykrtJ0Q-jBLgVHR1fc,723141
16
+ mas/cli/templates/ibm-mas-tekton.yaml,sha256=dKyxFpfQLC6C6R26IZVK5vXG3zZJScw95Q5Mwguhj3w,725862
17
17
  mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
18
18
  mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
19
19
  mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml,sha256=rkq8c2pVJoskgict9tCZzCchGSE2MBC-dJ47JyMYm7A,1559
@@ -94,8 +94,8 @@ mas/cli/update/argParser.py,sha256=k9-2i6KRvU4gxkiHJTgtjh1IkDaaLzgisrZe6-JORJA,3
94
94
  mas/cli/upgrade/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
95
95
  mas/cli/upgrade/app.py,sha256=lxMZYlO_sybzbOuZ4D7R0OCjGqnMg3MF1h2vSVZ1YmE,5328
96
96
  mas/cli/upgrade/argParser.py,sha256=jl8SU0mXDMAkpfqXaKE4MPNUmVoD0LSsvMUSJjU1dbQ,1881
97
- mas_cli-10.5.0.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
98
- mas_cli-10.5.0.dist-info/METADATA,sha256=mWy7WtoK4cVvvUD_rGjwV9Qh1s7fLZUtLwcHNvFmxOU,2076
99
- mas_cli-10.5.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
100
- mas_cli-10.5.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
101
- mas_cli-10.5.0.dist-info/RECORD,,
97
+ mas_cli-10.6.0.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
98
+ mas_cli-10.6.0.dist-info/METADATA,sha256=UNHdX1f3CEvBnVEQU3epP441LiqPJLZLg2mRjwc2KQw,2076
99
+ mas_cli-10.6.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
100
+ mas_cli-10.6.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
101
+ mas_cli-10.6.0.dist-info/RECORD,,