mas-cli 13.3.0__py3-none-any.whl → 13.4.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__ = "13.3.0" # Python module compatible semver
11
+ __version__ = "13.4.0" # Python module compatible semver
mas/cli/cli.py CHANGED
@@ -117,7 +117,7 @@ class BaseApp(PrintMixin, PromptMixin):
117
117
  logging.getLogger('asyncio').setLevel(logging.INFO)
118
118
 
119
119
  # Supports extended semver, unlike mas.cli.__version__
120
- self.version = "13.3.0"
120
+ self.version = "13.4.0"
121
121
  self.h1count = 0
122
122
  self.h2count = 0
123
123
 
mas/cli/install/app.py CHANGED
@@ -948,6 +948,13 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
948
948
  self.setParam(key, value)
949
949
  if value in ["jms", "snojms"]:
950
950
  self.setParam("mas_app_settings_persistent_volumes_flag", "true")
951
+
952
+ # MongoDB
953
+ elif key == "mongodb_namespace":
954
+ if value is not None and value != "":
955
+ self.setParam(key, value)
956
+ self.setParam("sls_mongodb_cfg_file", f"/workspace/configs/mongo-{value}.yml")
957
+
951
958
  # SLS
952
959
  elif key == "license_file":
953
960
  if value is not None and value != "":
mas/cli/install/params.py CHANGED
@@ -71,8 +71,6 @@ optionalParams = [
71
71
  "mas_cluster_issuer",
72
72
  # DRO
73
73
  "dro_namespace",
74
- # MongoDb
75
- "mongodb_namespace",
76
74
  # Db2
77
75
  "db2_action_system",
78
76
  "db2_action_manage",
@@ -231,7 +231,7 @@ spec:
231
231
  command:
232
232
  - /opt/app-root/src/run-role.sh
233
233
  - aibroker
234
- image: quay.io/ibmmas/cli:13.3.0
234
+ image: quay.io/ibmmas/cli:13.4.0
235
235
  imagePullPolicy: $(params.image_pull_policy)
236
236
  # --------------------------------------------------------------------------------
237
237
  # /home/runner/work/cli/cli/tekton/target/tasks/appconnect.yaml
@@ -342,7 +342,7 @@ spec:
342
342
  command:
343
343
  - /opt/app-root/src/run-role.sh
344
344
  - appconnect
345
- image: quay.io/ibmmas/cli:13.3.0
345
+ image: quay.io/ibmmas/cli:13.4.0
346
346
  imagePullPolicy: $(params.image_pull_policy)
347
347
  workingDir: /workspace/configs
348
348
 
@@ -460,7 +460,7 @@ spec:
460
460
  command:
461
461
  - /opt/app-root/src/run-role.sh
462
462
  - arcgis
463
- image: quay.io/ibmmas/cli:13.3.0
463
+ image: quay.io/ibmmas/cli:13.4.0
464
464
  imagePullPolicy: $(params.image_pull_policy)
465
465
  # --------------------------------------------------------------------------------
466
466
  # /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
@@ -530,7 +530,7 @@ spec:
530
530
  command:
531
531
  - /opt/app-root/src/run-role.sh
532
532
  - cert_manager
533
- image: quay.io/ibmmas/cli:13.3.0
533
+ image: quay.io/ibmmas/cli:13.4.0
534
534
  imagePullPolicy: $(params.image_pull_policy)
535
535
  workingDir: /workspace/configs
536
536
  # --------------------------------------------------------------------------------
@@ -596,7 +596,7 @@ spec:
596
596
  command:
597
597
  - /opt/app-root/src/run-role.sh
598
598
  - common_services
599
- image: quay.io/ibmmas/cli:13.3.0
599
+ image: quay.io/ibmmas/cli:13.4.0
600
600
  imagePullPolicy: $(params.image_pull_policy)
601
601
  workingDir: /workspace/configs
602
602
  # --------------------------------------------------------------------------------
@@ -723,7 +723,7 @@ spec:
723
723
  command:
724
724
  - /opt/app-root/src/run-role.sh
725
725
  - cos
726
- image: quay.io/ibmmas/cli:13.3.0
726
+ image: quay.io/ibmmas/cli:13.4.0
727
727
  imagePullPolicy: $(params.image_pull_policy)
728
728
  workingDir: /workspace/configs
729
729
 
@@ -843,7 +843,7 @@ spec:
843
843
  command:
844
844
  - /opt/app-root/src/run-role.sh
845
845
  - cp4d_service
846
- image: quay.io/ibmmas/cli:13.3.0
846
+ image: quay.io/ibmmas/cli:13.4.0
847
847
  imagePullPolicy: $(params.image_pull_policy)
848
848
  workingDir: /workspace/configs
849
849
  # --------------------------------------------------------------------------------
@@ -960,7 +960,7 @@ spec:
960
960
  command:
961
961
  - /opt/app-root/src/run-role.sh
962
962
  - cp4d_service
963
- image: quay.io/ibmmas/cli:13.3.0
963
+ image: quay.io/ibmmas/cli:13.4.0
964
964
  imagePullPolicy: $(params.image_pull_policy)
965
965
  workingDir: /workspace/configs
966
966
 
@@ -1066,7 +1066,7 @@ spec:
1066
1066
  command:
1067
1067
  - /opt/app-root/src/run-role.sh
1068
1068
  - cp4d
1069
- image: quay.io/ibmmas/cli:13.3.0
1069
+ image: quay.io/ibmmas/cli:13.4.0
1070
1070
  imagePullPolicy: $(params.image_pull_policy)
1071
1071
  # --------------------------------------------------------------------------------
1072
1072
  # /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
@@ -1388,7 +1388,7 @@ spec:
1388
1388
  command:
1389
1389
  - /opt/app-root/src/run-role.sh
1390
1390
  - db2
1391
- image: quay.io/ibmmas/cli:13.3.0
1391
+ image: quay.io/ibmmas/cli:13.4.0
1392
1392
  imagePullPolicy: $(params.image_pull_policy)
1393
1393
  workingDir: /workspace/configs
1394
1394
 
@@ -1498,7 +1498,7 @@ spec:
1498
1498
  command:
1499
1499
  - /opt/app-root/src/run-role.sh
1500
1500
  - eck
1501
- image: quay.io/ibmmas/cli:13.3.0
1501
+ image: quay.io/ibmmas/cli:13.4.0
1502
1502
  imagePullPolicy: $(params.image_pull_policy)
1503
1503
  # --------------------------------------------------------------------------------
1504
1504
  # /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
@@ -1587,7 +1587,7 @@ spec:
1587
1587
  command:
1588
1588
  - /opt/app-root/src/run-role.sh
1589
1589
  - gencfg_workspace
1590
- image: quay.io/ibmmas/cli:13.3.0
1590
+ image: quay.io/ibmmas/cli:13.4.0
1591
1591
  imagePullPolicy: $(params.image_pull_policy)
1592
1592
  workingDir: /workspace/configs
1593
1593
 
@@ -1691,7 +1691,7 @@ spec:
1691
1691
  - -c
1692
1692
  name: gitops-bootstrap
1693
1693
  imagePullPolicy: IfNotPresent
1694
- image: quay.io/ibmmas/cli:13.3.0
1694
+ image: quay.io/ibmmas/cli:13.4.0
1695
1695
  workspaces:
1696
1696
  - name: configs
1697
1697
  # --------------------------------------------------------------------------------
@@ -1773,7 +1773,7 @@ spec:
1773
1773
  - -c
1774
1774
  name: gitops-cis-compliance
1775
1775
  imagePullPolicy: IfNotPresent
1776
- image: quay.io/ibmmas/cli:13.3.0
1776
+ image: quay.io/ibmmas/cli:13.4.0
1777
1777
  workspaces:
1778
1778
  - name: configs
1779
1779
  # --------------------------------------------------------------------------------
@@ -1898,6 +1898,22 @@ spec:
1898
1898
  type: string
1899
1899
  default: 'true'
1900
1900
 
1901
+ - name: instana_agent_operator_install
1902
+ type: string
1903
+ default: 'false'
1904
+ - name: instana_agent_operator_endpoint_host
1905
+ type: string
1906
+ default: ''
1907
+ - name: instana_agent_operator_endpoint_port
1908
+ type: string
1909
+ default: ''
1910
+ - name: instana_agent_operator_env
1911
+ type: string
1912
+ default: ''
1913
+ - name: instana_agent_operator_jks_storage_class
1914
+ type: string
1915
+ default: ''
1916
+
1901
1917
  stepTemplate:
1902
1918
  name: gitops-cluster
1903
1919
  env:
@@ -1988,6 +2004,17 @@ spec:
1988
2004
  - name: CLUSTER_LOGGING_OPERATOR_USE_SYSLOG_FORWARDER
1989
2005
  value: $(params.cluster_logging_operator_use_syslog_forwarder)
1990
2006
 
2007
+ - name: INSTANA_AGENT_OPERATOR_INSTALL
2008
+ value: $(params.instana_agent_operator_install)
2009
+ - name: INSTANA_AGENT_OPERATOR_ENDPOINT_HOST
2010
+ value: $(params.instana_agent_operator_endpoint_host)
2011
+ - name: INSTANA_AGENT_OPERATOR_ENDPOINT_PORT
2012
+ value: $(params.instana_agent_operator_endpoint_port)
2013
+ - name: INSTANA_AGENT_OPERATOR_ENV
2014
+ value: $(params.instana_agent_operator_env)
2015
+ - name: INSTANA_AGENT_OPERATOR_JKS_STORAGE_CLASS
2016
+ value: $(params.instana_agent_operator_jks_storage_class)
2017
+
1991
2018
  envFrom:
1992
2019
  - configMapRef:
1993
2020
  name: environment-properties
@@ -2051,7 +2078,7 @@ spec:
2051
2078
  - -c
2052
2079
  name: gitops-cluster
2053
2080
  imagePullPolicy: Always
2054
- image: quay.io/ibmmas/cli:13.3.0
2081
+ image: quay.io/ibmmas/cli:13.4.0
2055
2082
  workspaces:
2056
2083
  - name: configs
2057
2084
  # --------------------------------------------------------------------------------
@@ -2154,7 +2181,7 @@ spec:
2154
2181
  - -c
2155
2182
  name: gitops-cos
2156
2183
  imagePullPolicy: IfNotPresent
2157
- image: quay.io/ibmmas/cli:13.3.0
2184
+ image: quay.io/ibmmas/cli:13.4.0
2158
2185
  workspaces:
2159
2186
  - name: configs
2160
2187
  # --------------------------------------------------------------------------------
@@ -2302,7 +2329,7 @@ spec:
2302
2329
  - -c
2303
2330
  name: gitops-cp4d-service
2304
2331
  imagePullPolicy: IfNotPresent
2305
- image: quay.io/ibmmas/cli:13.3.0
2332
+ image: quay.io/ibmmas/cli:13.4.0
2306
2333
  workspaces:
2307
2334
  - name: configs
2308
2335
  - name: shared-gitops-configs
@@ -2431,7 +2458,7 @@ spec:
2431
2458
  - -c
2432
2459
  name: gitops-cp4d
2433
2460
  imagePullPolicy: IfNotPresent
2434
- image: quay.io/ibmmas/cli:13.3.0
2461
+ image: quay.io/ibmmas/cli:13.4.0
2435
2462
  workspaces:
2436
2463
  - name: configs
2437
2464
  - name: shared-gitops-configs
@@ -2707,7 +2734,7 @@ spec:
2707
2734
  - -c
2708
2735
  name: gitops-db2u-database
2709
2736
  imagePullPolicy: Always
2710
- image: quay.io/ibmmas/cli:13.3.0
2737
+ image: quay.io/ibmmas/cli:13.4.0
2711
2738
  workspaces:
2712
2739
  - name: configs
2713
2740
  - name: shared-gitops-configs
@@ -2805,7 +2832,7 @@ spec:
2805
2832
  - -c
2806
2833
  name: gitops-db2u
2807
2834
  imagePullPolicy: IfNotPresent
2808
- image: quay.io/ibmmas/cli:13.3.0
2835
+ image: quay.io/ibmmas/cli:13.4.0
2809
2836
  workspaces:
2810
2837
  - name: configs
2811
2838
  # --------------------------------------------------------------------------------
@@ -2932,7 +2959,7 @@ spec:
2932
2959
  - -c
2933
2960
  name: gitops-delete-jdbc-config
2934
2961
  imagePullPolicy: IfNotPresent
2935
- image: quay.io/ibmmas/cli:13.3.0
2962
+ image: quay.io/ibmmas/cli:13.4.0
2936
2963
  workspaces:
2937
2964
  - name: configs
2938
2965
  # --------------------------------------------------------------------------------
@@ -3030,7 +3057,7 @@ spec:
3030
3057
  - -c
3031
3058
  name: gitops-delete-kafka-config
3032
3059
  imagePullPolicy: Always
3033
- image: quay.io/ibmmas/cli:13.3.0
3060
+ image: quay.io/ibmmas/cli:13.4.0
3034
3061
  workspaces:
3035
3062
  - name: configs
3036
3063
 
@@ -3122,7 +3149,7 @@ spec:
3122
3149
  - -c
3123
3150
  name: gitops-deprovision-app-config
3124
3151
  imagePullPolicy: IfNotPresent
3125
- image: quay.io/ibmmas/cli:13.3.0
3152
+ image: quay.io/ibmmas/cli:13.4.0
3126
3153
  workspaces:
3127
3154
  - name: configs
3128
3155
  # --------------------------------------------------------------------------------
@@ -3207,7 +3234,7 @@ spec:
3207
3234
  - -c
3208
3235
  name: gitops-deprovision-app-install
3209
3236
  imagePullPolicy: IfNotPresent
3210
- image: quay.io/ibmmas/cli:13.3.0
3237
+ image: quay.io/ibmmas/cli:13.4.0
3211
3238
  workspaces:
3212
3239
  - name: configs
3213
3240
  # --------------------------------------------------------------------------------
@@ -3292,7 +3319,7 @@ spec:
3292
3319
  - -c
3293
3320
  name: gitops-deprovision-cluster
3294
3321
  imagePullPolicy: IfNotPresent
3295
- image: quay.io/ibmmas/cli:13.3.0
3322
+ image: quay.io/ibmmas/cli:13.4.0
3296
3323
  workspaces:
3297
3324
  - name: configs
3298
3325
  # --------------------------------------------------------------------------------
@@ -3411,7 +3438,7 @@ spec:
3411
3438
  - -c
3412
3439
  name: gitops-deprovision-cos
3413
3440
  imagePullPolicy: IfNotPresent
3414
- image: quay.io/ibmmas/cli:13.3.0
3441
+ image: quay.io/ibmmas/cli:13.4.0
3415
3442
  workspaces:
3416
3443
  - name: configs
3417
3444
  # --------------------------------------------------------------------------------
@@ -3499,7 +3526,7 @@ spec:
3499
3526
  - -c
3500
3527
  name: gitops-deprovision-db2u-database
3501
3528
  imagePullPolicy: IfNotPresent
3502
- image: quay.io/ibmmas/cli:13.3.0
3529
+ image: quay.io/ibmmas/cli:13.4.0
3503
3530
  workspaces:
3504
3531
  - name: configs
3505
3532
 
@@ -3582,7 +3609,7 @@ spec:
3582
3609
  - -c
3583
3610
  name: gitops-deprovision-db2u
3584
3611
  imagePullPolicy: IfNotPresent
3585
- image: quay.io/ibmmas/cli:13.3.0
3612
+ image: quay.io/ibmmas/cli:13.4.0
3586
3613
  workspaces:
3587
3614
  - name: configs
3588
3615
 
@@ -3690,7 +3717,7 @@ spec:
3690
3717
  - -c
3691
3718
  name: gitops-deprovision-efs
3692
3719
  imagePullPolicy: IfNotPresent
3693
- image: quay.io/ibmmas/cli:13.3.0
3720
+ image: quay.io/ibmmas/cli:13.4.0
3694
3721
  workspaces:
3695
3722
  - name: configs
3696
3723
 
@@ -3761,10 +3788,10 @@ spec:
3761
3788
  aws configure set default.region $(params.avp_aws_secret_region)
3762
3789
 
3763
3790
  # Note the - after cluster name. this is to distinguish between different similar named clusters
3764
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value')
3791
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value // ""' | xargs)
3765
3792
  if [ -z "$vpc_name" ]; then
3766
3793
  # Needed if there is only one cluster in account
3767
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value')
3794
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value // ""' | xargs)
3768
3795
  fi
3769
3796
  export VPC_ID=$(aws ec2 describe-vpcs --filters '[{"Name": "tag:Name", "Values": ["'$vpc_name'"]}]' --output yaml | yq '.Vpcs[].VpcId' )
3770
3797
 
@@ -3800,7 +3827,7 @@ spec:
3800
3827
  - -c
3801
3828
  name: gitops-deprovision-kafka
3802
3829
  imagePullPolicy: IfNotPresent
3803
- image: quay.io/ibmmas/cli:13.3.0
3830
+ image: quay.io/ibmmas/cli:13.4.0
3804
3831
  workspaces:
3805
3832
  - name: configs
3806
3833
  # --------------------------------------------------------------------------------
@@ -3862,10 +3889,10 @@ spec:
3862
3889
  aws configure set default.region $(params.avp_aws_secret_region)
3863
3890
 
3864
3891
  # Note the - after cluster name. this is to distinguish between different similar named clusters
3865
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value')
3892
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value // ""' | xargs)
3866
3893
  if [ -z "$vpc_name" ]; then
3867
3894
  # Needed if there is only one cluster in account
3868
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value')
3895
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value // ""' | xargs)
3869
3896
  fi
3870
3897
  export VPC_ID=$(aws ec2 describe-vpcs --filters '[{"Name": "tag:Name", "Values": ["'$vpc_name'"]}]' --output yaml | yq '.Vpcs[].VpcId' )
3871
3898
 
@@ -3903,7 +3930,7 @@ spec:
3903
3930
  - -c
3904
3931
  name: gitops-deprovision-mongo
3905
3932
  imagePullPolicy: IfNotPresent
3906
- image: quay.io/ibmmas/cli:13.3.0
3933
+ image: quay.io/ibmmas/cli:13.4.0
3907
3934
  workspaces:
3908
3935
  - name: configs
3909
3936
 
@@ -3960,7 +3987,7 @@ spec:
3960
3987
  - -c
3961
3988
  name: gitops-deprovision-rosa
3962
3989
  imagePullPolicy: IfNotPresent
3963
- image: quay.io/ibmmas/cli:13.3.0
3990
+ image: quay.io/ibmmas/cli:13.4.0
3964
3991
  workspaces:
3965
3992
  - name: configs
3966
3993
  # --------------------------------------------------------------------------------
@@ -4165,7 +4192,7 @@ spec:
4165
4192
  - -c
4166
4193
  name: gitops-deprovision-suite-config
4167
4194
  imagePullPolicy: IfNotPresent
4168
- image: quay.io/ibmmas/cli:13.3.0
4195
+ image: quay.io/ibmmas/cli:13.4.0
4169
4196
  workspaces:
4170
4197
  - name: configs
4171
4198
 
@@ -4263,7 +4290,7 @@ spec:
4263
4290
  - -c
4264
4291
  name: gitops-deprovision-suite-idp-config
4265
4292
  imagePullPolicy: IfNotPresent
4266
- image: quay.io/ibmmas/cli:13.3.0
4293
+ image: quay.io/ibmmas/cli:13.4.0
4267
4294
  workspaces:
4268
4295
  - name: configs
4269
4296
  # --------------------------------------------------------------------------------
@@ -4355,7 +4382,7 @@ spec:
4355
4382
  - -c
4356
4383
  name: gitops-deprovision-suite-objectstorage-config
4357
4384
  imagePullPolicy: IfNotPresent
4358
- image: quay.io/ibmmas/cli:13.3.0
4385
+ image: quay.io/ibmmas/cli:13.4.0
4359
4386
  workspaces:
4360
4387
  - name: configs
4361
4388
  # --------------------------------------------------------------------------------
@@ -4567,7 +4594,7 @@ spec:
4567
4594
  - -c
4568
4595
  name: gitops-deprovision-suite-smtp-config
4569
4596
  imagePullPolicy: IfNotPresent
4570
- image: quay.io/ibmmas/cli:13.3.0
4597
+ image: quay.io/ibmmas/cli:13.4.0
4571
4598
  workspaces:
4572
4599
  - name: configs
4573
4600
  # --------------------------------------------------------------------------------
@@ -4660,7 +4687,7 @@ spec:
4660
4687
  - -c
4661
4688
  name: gitops-deprovision-suite-watson-studio-config
4662
4689
  imagePullPolicy: IfNotPresent
4663
- image: quay.io/ibmmas/cli:13.3.0
4690
+ image: quay.io/ibmmas/cli:13.4.0
4664
4691
  workspaces:
4665
4692
  - name: configs
4666
4693
  # --------------------------------------------------------------------------------
@@ -4751,7 +4778,7 @@ spec:
4751
4778
  - -c
4752
4779
  name: gitops-deprovision-suite-workspace
4753
4780
  imagePullPolicy: Always
4754
- image: quay.io/ibmmas/cli:13.3.0
4781
+ image: quay.io/ibmmas/cli:13.4.0
4755
4782
  workspaces:
4756
4783
  - name: configs
4757
4784
  # --------------------------------------------------------------------------------
@@ -4844,7 +4871,7 @@ spec:
4844
4871
  - -c
4845
4872
  name: gitops-deprovision-suite
4846
4873
  imagePullPolicy: IfNotPresent
4847
- image: quay.io/ibmmas/cli:13.3.0
4874
+ image: quay.io/ibmmas/cli:13.4.0
4848
4875
  workspaces:
4849
4876
  - name: configs
4850
4877
 
@@ -4957,7 +4984,7 @@ spec:
4957
4984
  - -c
4958
4985
  name: gitops-dro
4959
4986
  imagePullPolicy: IfNotPresent
4960
- image: quay.io/ibmmas/cli:13.3.0
4987
+ image: quay.io/ibmmas/cli:13.4.0
4961
4988
  workspaces:
4962
4989
  - name: configs
4963
4990
  # --------------------------------------------------------------------------------
@@ -5074,7 +5101,7 @@ spec:
5074
5101
  - -c
5075
5102
  name: gitops-efs
5076
5103
  imagePullPolicy: IfNotPresent
5077
- image: quay.io/ibmmas/cli:13.3.0
5104
+ image: quay.io/ibmmas/cli:13.4.0
5078
5105
  workspaces:
5079
5106
  - name: configs
5080
5107
 
@@ -5209,7 +5236,7 @@ spec:
5209
5236
  - -c
5210
5237
  name: gitops-jdbc-config
5211
5238
  imagePullPolicy: Always
5212
- image: quay.io/ibmmas/cli:13.3.0
5239
+ image: quay.io/ibmmas/cli:13.4.0
5213
5240
  workspaces:
5214
5241
  - name: configs
5215
5242
  - name: shared-gitops-configs
@@ -5305,7 +5332,7 @@ spec:
5305
5332
  - -c
5306
5333
  name: gitops-kafka-config
5307
5334
  imagePullPolicy: Always
5308
- image: quay.io/ibmmas/cli:13.3.0
5335
+ image: quay.io/ibmmas/cli:13.4.0
5309
5336
  workspaces:
5310
5337
  - name: configs
5311
5338
 
@@ -5388,10 +5415,10 @@ spec:
5388
5415
  aws configure set default.region $(params.avp_aws_secret_region)
5389
5416
 
5390
5417
  # Note the - after cluster name. this is to distinguish between different similar named clusters
5391
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value')
5418
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value // ""' | xargs)
5392
5419
  if [ -z "$vpc_name" ]; then
5393
5420
  # Needed if there is only one cluster in account
5394
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value')
5421
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value // ""' | xargs)
5395
5422
  fi
5396
5423
  export VPC_ID=$(aws ec2 describe-vpcs --filters '[{"Name": "tag:Name", "Values": ["'$vpc_name'"]}]' --output yaml | yq '.Vpcs[].VpcId' )
5397
5424
 
@@ -5427,7 +5454,7 @@ spec:
5427
5454
  - -c
5428
5455
  name: gitops-kafka
5429
5456
  imagePullPolicy: IfNotPresent
5430
- image: quay.io/ibmmas/cli:13.3.0
5457
+ image: quay.io/ibmmas/cli:13.4.0
5431
5458
  workspaces:
5432
5459
  - name: configs
5433
5460
  # --------------------------------------------------------------------------------
@@ -5553,7 +5580,7 @@ spec:
5553
5580
  - -c
5554
5581
  name: gitops-license
5555
5582
  imagePullPolicy: Always
5556
- image: quay.io/ibmmas/cli:13.3.0
5583
+ image: quay.io/ibmmas/cli:13.4.0
5557
5584
  workspaces:
5558
5585
  - name: shared-entitlement
5559
5586
 
@@ -6117,7 +6144,7 @@ spec:
6117
6144
  - -c
6118
6145
  name: gitops-mas-fvt-preparer
6119
6146
  imagePullPolicy: Always
6120
- image: quay.io/ibmmas/cli:13.3.0
6147
+ image: quay.io/ibmmas/cli:13.4.0
6121
6148
  workspaces:
6122
6149
  - name: configs
6123
6150
  - name: shared-additional-configs
@@ -6559,7 +6586,7 @@ spec:
6559
6586
  - -c
6560
6587
  name: gitops-mas-initiator
6561
6588
  imagePullPolicy: IfNotPresent
6562
- image: quay.io/ibmmas/cli:13.3.0
6589
+ image: quay.io/ibmmas/cli:13.4.0
6563
6590
  workspaces:
6564
6591
  - name: configs
6565
6592
  # --------------------------------------------------------------------------------
@@ -6626,10 +6653,10 @@ spec:
6626
6653
  aws configure set default.region $(params.avp_aws_secret_region)
6627
6654
 
6628
6655
  # Note the - after cluster name. this is to distinguish between different similar named clusters
6629
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value')
6656
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value // ""' | xargs)
6630
6657
  if [ -z "$vpc_name" ]; then
6631
6658
  # Needed if there is only one cluster in account
6632
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value')
6659
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value // ""' | xargs)
6633
6660
  fi
6634
6661
  export VPC_ID=$(aws ec2 describe-vpcs --filters '[{"Name": "tag:Name", "Values": ["'$vpc_name'"]}]' --output yaml | yq '.Vpcs[].VpcId' )
6635
6662
 
@@ -6667,7 +6694,7 @@ spec:
6667
6694
  - -c
6668
6695
  name: gitops-mongo
6669
6696
  imagePullPolicy: IfNotPresent
6670
- image: quay.io/ibmmas/cli:13.3.0
6697
+ image: quay.io/ibmmas/cli:13.4.0
6671
6698
  workspaces:
6672
6699
  - name: configs
6673
6700
 
@@ -6789,7 +6816,7 @@ spec:
6789
6816
  - -c
6790
6817
  name: gitops-nvidia-gpu
6791
6818
  imagePullPolicy: IfNotPresent
6792
- image: quay.io/ibmmas/cli:13.3.0
6819
+ image: quay.io/ibmmas/cli:13.4.0
6793
6820
  workspaces:
6794
6821
  - name: configs
6795
6822
  # --------------------------------------------------------------------------------
@@ -6863,10 +6890,10 @@ spec:
6863
6890
  aws configure set default.region $(params.avp_aws_secret_region)
6864
6891
 
6865
6892
  # Note the - after cluster name. this is to distinguish between different similar named clusters
6866
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value')
6893
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.[].Value // ""' | xargs)
6867
6894
  if [ -z "$vpc_name" ]; then
6868
6895
  # Needed if there is only one cluster in account
6869
- vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value')
6896
+ vpc_name=$(aws ec2 describe-vpcs --output yaml | grep $CLUSTER_NAME- | yq '.Value // ""' | xargs)
6870
6897
  fi
6871
6898
  export VPC_ID=$(aws ec2 describe-vpcs --filters '[{"Name": "tag:Name", "Values": ["'$vpc_name'"]}]' --output yaml | yq '.Vpcs[].VpcId' )
6872
6899
 
@@ -6907,7 +6934,7 @@ spec:
6907
6934
  - -c
6908
6935
  name: gitops-process-mongo-user
6909
6936
  imagePullPolicy: IfNotPresent
6910
- image: quay.io/ibmmas/cli:13.3.0
6937
+ image: quay.io/ibmmas/cli:13.4.0
6911
6938
  workspaces:
6912
6939
  - name: configs
6913
6940
  # --------------------------------------------------------------------------------
@@ -6963,7 +6990,7 @@ spec:
6963
6990
  - -c
6964
6991
  name: gitops-rosa
6965
6992
  imagePullPolicy: IfNotPresent
6966
- image: quay.io/ibmmas/cli:13.3.0
6993
+ image: quay.io/ibmmas/cli:13.4.0
6967
6994
  workspaces:
6968
6995
  - name: configs
6969
6996
  # --------------------------------------------------------------------------------
@@ -7150,7 +7177,7 @@ spec:
7150
7177
  - -c
7151
7178
  name: gitops-suite-app-config
7152
7179
  imagePullPolicy: IfNotPresent
7153
- image: quay.io/ibmmas/cli:13.3.0
7180
+ image: quay.io/ibmmas/cli:13.4.0
7154
7181
  workspaces:
7155
7182
  - name: configs
7156
7183
  - name: shared-gitops-configs
@@ -7308,7 +7335,7 @@ spec:
7308
7335
  - -c
7309
7336
  name: gitops-suite-app-install
7310
7337
  imagePullPolicy: Always
7311
- image: quay.io/ibmmas/cli:13.3.0
7338
+ image: quay.io/ibmmas/cli:13.4.0
7312
7339
  workspaces:
7313
7340
  - name: configs
7314
7341
  - name: shared-gitops-configs
@@ -7414,7 +7441,7 @@ spec:
7414
7441
  - -c
7415
7442
  name: gitops-suite-certs
7416
7443
  imagePullPolicy: IfNotPresent
7417
- image: quay.io/ibmmas/cli:13.3.0
7444
+ image: quay.io/ibmmas/cli:13.4.0
7418
7445
  workspaces:
7419
7446
  - name: configs
7420
7447
  - name: certificates
@@ -7584,7 +7611,7 @@ spec:
7584
7611
  - -c
7585
7612
  name: gitops-suite-config
7586
7613
  imagePullPolicy: IfNotPresent
7587
- image: quay.io/ibmmas/cli:13.3.0
7614
+ image: quay.io/ibmmas/cli:13.4.0
7588
7615
  workspaces:
7589
7616
  - name: configs
7590
7617
  - name: shared-additional-configs
@@ -7684,7 +7711,7 @@ spec:
7684
7711
  - -c
7685
7712
  name: gitops-suite-dns
7686
7713
  imagePullPolicy: IfNotPresent
7687
- image: quay.io/ibmmas/cli:13.3.0
7714
+ image: quay.io/ibmmas/cli:13.4.0
7688
7715
  workspaces:
7689
7716
  - name: configs
7690
7717
 
@@ -7808,7 +7835,7 @@ spec:
7808
7835
  - -c
7809
7836
  name: gitops-suite-idp-config
7810
7837
  imagePullPolicy: IfNotPresent
7811
- image: quay.io/ibmmas/cli:13.3.0
7838
+ image: quay.io/ibmmas/cli:13.4.0
7812
7839
  workspaces:
7813
7840
  - name: configs
7814
7841
  - name: shared-additional-configs
@@ -7909,7 +7936,7 @@ spec:
7909
7936
  - -c
7910
7937
  name: gitops-suite-objectstorage-config
7911
7938
  imagePullPolicy: IfNotPresent
7912
- image: quay.io/ibmmas/cli:13.3.0
7939
+ image: quay.io/ibmmas/cli:13.4.0
7913
7940
  workspaces:
7914
7941
  - name: configs
7915
7942
  - name: shared-gitops-configs
@@ -8308,7 +8335,7 @@ spec:
8308
8335
  - -c
8309
8336
  name: gitops-suite-smtp-config
8310
8337
  imagePullPolicy: IfNotPresent
8311
- image: quay.io/ibmmas/cli:13.3.0
8338
+ image: quay.io/ibmmas/cli:13.4.0
8312
8339
  workspaces:
8313
8340
  - name: configs
8314
8341
 
@@ -8417,7 +8444,7 @@ spec:
8417
8444
  - -c
8418
8445
  name: gitops-suite-watson-studio-config
8419
8446
  imagePullPolicy: IfNotPresent
8420
- image: quay.io/ibmmas/cli:13.3.0
8447
+ image: quay.io/ibmmas/cli:13.4.0
8421
8448
  workspaces:
8422
8449
  - name: configs
8423
8450
  - name: shared-gitops-configs
@@ -8514,7 +8541,7 @@ spec:
8514
8541
  - -c
8515
8542
  name: gitops-suite-workspace
8516
8543
  imagePullPolicy: IfNotPresent
8517
- image: quay.io/ibmmas/cli:13.3.0
8544
+ image: quay.io/ibmmas/cli:13.4.0
8518
8545
  workspaces:
8519
8546
  - name: configs
8520
8547
  # --------------------------------------------------------------------------------
@@ -8799,7 +8826,7 @@ spec:
8799
8826
  - -c
8800
8827
  name: gitops-suite
8801
8828
  imagePullPolicy: IfNotPresent
8802
- image: quay.io/ibmmas/cli:13.3.0
8829
+ image: quay.io/ibmmas/cli:13.4.0
8803
8830
  workspaces:
8804
8831
  - name: configs
8805
8832
  - name: shared-gitops-configs
@@ -8849,7 +8876,7 @@ spec:
8849
8876
 
8850
8877
  steps:
8851
8878
  - name: grafana
8852
- image: quay.io/ibmmas/cli:13.3.0
8879
+ image: quay.io/ibmmas/cli:13.4.0
8853
8880
  imagePullPolicy: $(params.image_pull_policy)
8854
8881
  command:
8855
8882
  - /opt/app-root/src/run-role.sh
@@ -8983,7 +9010,7 @@ spec:
8983
9010
  command:
8984
9011
  - /opt/app-root/src/run-role.sh
8985
9012
  - ibm_catalogs
8986
- image: quay.io/ibmmas/cli:13.3.0
9013
+ image: quay.io/ibmmas/cli:13.4.0
8987
9014
  imagePullPolicy: $(params.image_pull_policy)
8988
9015
  workingDir: /workspace/configs
8989
9016
  # --------------------------------------------------------------------------------
@@ -9225,7 +9252,7 @@ spec:
9225
9252
  command:
9226
9253
  - /opt/app-root/src/run-role.sh
9227
9254
  - kafka
9228
- image: quay.io/ibmmas/cli:13.3.0
9255
+ image: quay.io/ibmmas/cli:13.4.0
9229
9256
  imagePullPolicy: $(params.image_pull_policy)
9230
9257
  workingDir: /workspace/configs
9231
9258
 
@@ -9441,7 +9468,7 @@ spec:
9441
9468
  command:
9442
9469
  - /opt/app-root/src/run-role.sh
9443
9470
  - kmodels
9444
- image: quay.io/ibmmas/cli:13.3.0
9471
+ image: quay.io/ibmmas/cli:13.4.0
9445
9472
  imagePullPolicy: $(params.image_pull_policy)
9446
9473
  # --------------------------------------------------------------------------------
9447
9474
  # /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
@@ -9619,7 +9646,7 @@ spec:
9619
9646
  command:
9620
9647
  - /opt/app-root/src/run-role.sh
9621
9648
  - mongodb
9622
- image: quay.io/ibmmas/cli:13.3.0
9649
+ image: quay.io/ibmmas/cli:13.4.0
9623
9650
  imagePullPolicy: $(params.image_pull_policy)
9624
9651
  workingDir: /workspace/configs
9625
9652
 
@@ -9662,7 +9689,7 @@ spec:
9662
9689
  - $(params.base_output_dir)
9663
9690
  - --extra-namespaces
9664
9691
  - selenium
9665
- image: quay.io/ibmmas/cli:13.3.0
9692
+ image: quay.io/ibmmas/cli:13.4.0
9666
9693
  imagePullPolicy: $(params.image_pull_policy)
9667
9694
  env:
9668
9695
  - name: DEVOPS_MONGO_URI
@@ -9779,7 +9806,7 @@ spec:
9779
9806
  command:
9780
9807
  - /opt/app-root/src/run-role.sh
9781
9808
  - nvidia_gpu
9782
- image: quay.io/ibmmas/cli:13.3.0
9809
+ image: quay.io/ibmmas/cli:13.4.0
9783
9810
  imagePullPolicy: $(params.image_pull_policy)
9784
9811
  workingDir: /workspace/configs
9785
9812
 
@@ -9815,7 +9842,7 @@ spec:
9815
9842
  # Verify Cluster
9816
9843
  # -------------------------------------------------------------------------
9817
9844
  - name: ocp-verify-cluster
9818
- image: quay.io/ibmmas/cli:13.3.0
9845
+ image: quay.io/ibmmas/cli:13.4.0
9819
9846
  imagePullPolicy: $(params.image_pull_policy)
9820
9847
  command:
9821
9848
  - /opt/app-root/src/run-role.sh
@@ -9857,7 +9884,7 @@ spec:
9857
9884
  # Verify Catalogs
9858
9885
  # -------------------------------------------------------------------------
9859
9886
  - name: ocp-verify-catalogs
9860
- image: quay.io/ibmmas/cli:13.3.0
9887
+ image: quay.io/ibmmas/cli:13.4.0
9861
9888
  imagePullPolicy: $(params.image_pull_policy)
9862
9889
  command:
9863
9890
  - /opt/app-root/src/run-role.sh
@@ -9899,7 +9926,7 @@ spec:
9899
9926
  # Verify Subscriptions
9900
9927
  # -------------------------------------------------------------------------
9901
9928
  - name: ocp-verify-subscriptions
9902
- image: quay.io/ibmmas/cli:13.3.0
9929
+ image: quay.io/ibmmas/cli:13.4.0
9903
9930
  imagePullPolicy: $(params.image_pull_policy)
9904
9931
  command:
9905
9932
  - /opt/app-root/src/run-role.sh
@@ -9941,7 +9968,7 @@ spec:
9941
9968
  # Verify Workloads
9942
9969
  # -------------------------------------------------------------------------
9943
9970
  - name: ocp-verify-workloads
9944
- image: quay.io/ibmmas/cli:13.3.0
9971
+ image: quay.io/ibmmas/cli:13.4.0
9945
9972
  imagePullPolicy: $(params.image_pull_policy)
9946
9973
  command:
9947
9974
  - /opt/app-root/src/run-role.sh
@@ -9983,7 +10010,7 @@ spec:
9983
10010
  # Verify Catalogs - Ingress TLS
9984
10011
  # -------------------------------------------------------------------------
9985
10012
  - name: ocp-verify-ingress
9986
- image: quay.io/ibmmas/cli:13.3.0
10013
+ image: quay.io/ibmmas/cli:13.4.0
9987
10014
  imagePullPolicy: $(params.image_pull_policy)
9988
10015
  command:
9989
10016
  - /opt/app-root/src/run-role.sh
@@ -10109,7 +10136,7 @@ spec:
10109
10136
  command:
10110
10137
  - /opt/app-root/src/run-role.sh
10111
10138
  - ocp_verify
10112
- image: quay.io/ibmmas/cli:13.3.0
10139
+ image: quay.io/ibmmas/cli:13.4.0
10113
10140
  imagePullPolicy: $(params.image_pull_policy)
10114
10141
  workingDir: /workspace/configs
10115
10142
  # --------------------------------------------------------------------------------
@@ -10177,7 +10204,7 @@ spec:
10177
10204
  command:
10178
10205
  - /opt/app-root/src/run-role.sh
10179
10206
  - ocs
10180
- image: quay.io/ibmmas/cli:13.3.0
10207
+ image: quay.io/ibmmas/cli:13.4.0
10181
10208
  imagePullPolicy: $(params.image_pull_policy)
10182
10209
  workingDir: /workspace/configs
10183
10210
 
@@ -10413,7 +10440,7 @@ spec:
10413
10440
  command:
10414
10441
  - /opt/app-root/src/run-role.sh
10415
10442
  - odh
10416
- image: quay.io/ibmmas/cli:13.3.0
10443
+ image: quay.io/ibmmas/cli:13.4.0
10417
10444
  imagePullPolicy: $(params.image_pull_policy)
10418
10445
  # --------------------------------------------------------------------------------
10419
10446
  # /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
@@ -10589,7 +10616,7 @@ spec:
10589
10616
  command:
10590
10617
  - /opt/app-root/src/run-role.sh
10591
10618
  - sls
10592
- image: quay.io/ibmmas/cli:13.3.0
10619
+ image: quay.io/ibmmas/cli:13.4.0
10593
10620
  imagePullPolicy: $(params.image_pull_policy)
10594
10621
  workingDir: /workspace/configs
10595
10622
 
@@ -10978,12 +11005,12 @@ spec:
10978
11005
  command:
10979
11006
  - /opt/app-root/src/run-role.sh
10980
11007
  - suite_app_config
10981
- image: quay.io/ibmmas/cli:13.3.0
11008
+ image: quay.io/ibmmas/cli:13.4.0
10982
11009
  imagePullPolicy: $(params.image_pull_policy)
10983
11010
 
10984
11011
  # If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
10985
11012
  - name: app-cfg-post-verify
10986
- image: quay.io/ibmmas/cli:13.3.0
11013
+ image: quay.io/ibmmas/cli:13.4.0
10987
11014
  imagePullPolicy: $(params.image_pull_policy)
10988
11015
  command:
10989
11016
  - /opt/app-root/src/wait-for-configmap.sh
@@ -11178,7 +11205,7 @@ spec:
11178
11205
  command:
11179
11206
  - /opt/app-root/src/run-role.sh
11180
11207
  - suite_app_install
11181
- image: quay.io/ibmmas/cli:13.3.0
11208
+ image: quay.io/ibmmas/cli:13.4.0
11182
11209
  imagePullPolicy: $(params.image_pull_policy)
11183
11210
 
11184
11211
  workspaces:
@@ -11267,7 +11294,7 @@ spec:
11267
11294
  command:
11268
11295
  - /opt/app-root/src/run-role.sh
11269
11296
  - suite_app_rollback
11270
- image: quay.io/ibmmas/cli:13.3.0
11297
+ image: quay.io/ibmmas/cli:13.4.0
11271
11298
  imagePullPolicy: $(params.image_pull_policy)
11272
11299
  # --------------------------------------------------------------------------------
11273
11300
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
@@ -11330,7 +11357,7 @@ spec:
11330
11357
  command:
11331
11358
  - /opt/app-root/src/run-role.sh
11332
11359
  - suite_app_uninstall
11333
- image: quay.io/ibmmas/cli:13.3.0
11360
+ image: quay.io/ibmmas/cli:13.4.0
11334
11361
  imagePullPolicy: $(params.image_pull_policy)
11335
11362
  # --------------------------------------------------------------------------------
11336
11363
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
@@ -11405,7 +11432,7 @@ spec:
11405
11432
  command:
11406
11433
  - /opt/app-root/src/run-role.sh
11407
11434
  - suite_app_upgrade
11408
- image: quay.io/ibmmas/cli:13.3.0
11435
+ image: quay.io/ibmmas/cli:13.4.0
11409
11436
  imagePullPolicy: $(params.image_pull_policy)
11410
11437
  # --------------------------------------------------------------------------------
11411
11438
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
@@ -11506,7 +11533,7 @@ spec:
11506
11533
  command:
11507
11534
  - /opt/app-root/src/run-role.sh
11508
11535
  - suite_app_verify
11509
- image: quay.io/ibmmas/cli:13.3.0
11536
+ image: quay.io/ibmmas/cli:13.4.0
11510
11537
  imagePullPolicy: $(params.image_pull_policy)
11511
11538
  # --------------------------------------------------------------------------------
11512
11539
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
@@ -11649,7 +11676,7 @@ spec:
11649
11676
  command:
11650
11677
  - /opt/app-root/src/run-role.sh
11651
11678
  - suite_certs
11652
- image: quay.io/ibmmas/cli:13.3.0
11679
+ image: quay.io/ibmmas/cli:13.4.0
11653
11680
  imagePullPolicy: $(params.image_pull_policy)
11654
11681
 
11655
11682
  workspaces:
@@ -11716,7 +11743,7 @@ spec:
11716
11743
  command:
11717
11744
  - /opt/app-root/src/run-role.sh
11718
11745
  - suite_config
11719
- image: quay.io/ibmmas/cli:13.3.0
11746
+ image: quay.io/ibmmas/cli:13.4.0
11720
11747
  imagePullPolicy: $(params.image_pull_policy)
11721
11748
  workingDir: /workspace/configs
11722
11749
 
@@ -11787,7 +11814,7 @@ spec:
11787
11814
  command:
11788
11815
  - /opt/app-root/src/run-role.sh
11789
11816
  - suite_db2_setup_for_manage
11790
- image: quay.io/ibmmas/cli:13.3.0
11817
+ image: quay.io/ibmmas/cli:13.4.0
11791
11818
  imagePullPolicy: $(params.image_pull_policy)
11792
11819
  # --------------------------------------------------------------------------------
11793
11820
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
@@ -11977,7 +12004,7 @@ spec:
11977
12004
  command:
11978
12005
  - /opt/app-root/src/run-role.sh
11979
12006
  - suite_dns
11980
- image: quay.io/ibmmas/cli:13.3.0
12007
+ image: quay.io/ibmmas/cli:13.4.0
11981
12008
  imagePullPolicy: $(params.image_pull_policy)
11982
12009
  # --------------------------------------------------------------------------------
11983
12010
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
@@ -12226,7 +12253,7 @@ spec:
12226
12253
  command:
12227
12254
  - /opt/app-root/src/run-role.sh
12228
12255
  - suite_install
12229
- image: quay.io/ibmmas/cli:13.3.0
12256
+ image: quay.io/ibmmas/cli:13.4.0
12230
12257
  imagePullPolicy: $(params.image_pull_policy)
12231
12258
  workingDir: /workspace/configs
12232
12259
 
@@ -12314,7 +12341,7 @@ spec:
12314
12341
  command:
12315
12342
  - /opt/app-root/src/run-role.sh
12316
12343
  - suite_rollback
12317
- image: quay.io/ibmmas/cli:13.3.0
12344
+ image: quay.io/ibmmas/cli:13.4.0
12318
12345
  imagePullPolicy: $(params.image_pull_policy)
12319
12346
  # --------------------------------------------------------------------------------
12320
12347
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
@@ -12379,7 +12406,7 @@ spec:
12379
12406
  command:
12380
12407
  - /opt/app-root/src/run-role.sh
12381
12408
  - suite_uninstall
12382
- image: quay.io/ibmmas/cli:13.3.0
12409
+ image: quay.io/ibmmas/cli:13.4.0
12383
12410
  imagePullPolicy: $(params.image_pull_policy)
12384
12411
  # --------------------------------------------------------------------------------
12385
12412
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
@@ -12449,7 +12476,7 @@ spec:
12449
12476
  command:
12450
12477
  - /opt/app-root/src/run-role.sh
12451
12478
  - suite_upgrade
12452
- image: quay.io/ibmmas/cli:13.3.0
12479
+ image: quay.io/ibmmas/cli:13.4.0
12453
12480
  imagePullPolicy: $(params.image_pull_policy)
12454
12481
  # --------------------------------------------------------------------------------
12455
12482
  # /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
@@ -12516,12 +12543,12 @@ spec:
12516
12543
  command:
12517
12544
  - /opt/app-root/src/run-role.sh
12518
12545
  - suite_verify
12519
- image: quay.io/ibmmas/cli:13.3.0
12546
+ image: quay.io/ibmmas/cli:13.4.0
12520
12547
  imagePullPolicy: $(params.image_pull_policy)
12521
12548
 
12522
12549
  # If configmap/approval-suite-verify exists then set STATUS=pending and wait for it to be changed to "approved"
12523
12550
  - name: suite-post-verify
12524
- image: quay.io/ibmmas/cli:13.3.0
12551
+ image: quay.io/ibmmas/cli:13.4.0
12525
12552
  imagePullPolicy: $(params.image_pull_policy)
12526
12553
  script: |
12527
12554
  #!/usr/bin/env bash
@@ -12649,7 +12676,7 @@ spec:
12649
12676
  command:
12650
12677
  - /opt/app-root/src/run-role.sh
12651
12678
  - turbonomic
12652
- image: quay.io/ibmmas/cli:13.3.0
12679
+ image: quay.io/ibmmas/cli:13.4.0
12653
12680
  imagePullPolicy: $(params.image_pull_policy)
12654
12681
  # --------------------------------------------------------------------------------
12655
12682
  # /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
@@ -12730,7 +12757,7 @@ spec:
12730
12757
  # IBM User Data Services (UDS)
12731
12758
  # -------------------------------------------------------------------------
12732
12759
  - name: uds
12733
- image: quay.io/ibmmas/cli:13.3.0
12760
+ image: quay.io/ibmmas/cli:13.4.0
12734
12761
  imagePullPolicy: $(params.image_pull_policy)
12735
12762
  workingDir: /workspace/configs
12736
12763
  command:
@@ -12793,7 +12820,7 @@ spec:
12793
12820
  # IBM Data Reporter Operator (DRO)
12794
12821
  # -------------------------------------------------------------------------
12795
12822
  - name: dro
12796
- image: quay.io/ibmmas/cli:13.3.0
12823
+ image: quay.io/ibmmas/cli:13.4.0
12797
12824
  imagePullPolicy: $(params.image_pull_policy)
12798
12825
  workingDir: /workspace/configs
12799
12826
  command:
@@ -12879,7 +12906,7 @@ spec:
12879
12906
  description: "The value to set"
12880
12907
  steps:
12881
12908
  - name: update-configmap
12882
- image: quay.io/ibmmas/cli:13.3.0
12909
+ image: quay.io/ibmmas/cli:13.4.0
12883
12910
  command:
12884
12911
  - /opt/app-root/src/update-configmap.sh
12885
12912
  env:
@@ -12926,7 +12953,7 @@ spec:
12926
12953
 
12927
12954
  steps:
12928
12955
  - name: wait-for-configmap
12929
- image: quay.io/ibmmas/cli:13.3.0
12956
+ image: quay.io/ibmmas/cli:13.4.0
12930
12957
  command:
12931
12958
  - /opt/app-root/src/wait-for-configmap.sh
12932
12959
  env:
@@ -13007,7 +13034,7 @@ spec:
13007
13034
 
13008
13035
  steps:
13009
13036
  - name: wait-for-configmap
13010
- image: quay.io/ibmmas/cli:13.3.0
13037
+ image: quay.io/ibmmas/cli:13.4.0
13011
13038
  command:
13012
13039
  - /opt/app-root/src/wait-for-configmap.sh
13013
13040
  env:
@@ -13067,7 +13094,7 @@ spec:
13067
13094
 
13068
13095
  steps:
13069
13096
  - name: wait
13070
- image: quay.io/ibmmas/cli:13.3.0
13097
+ image: quay.io/ibmmas/cli:13.4.0
13071
13098
  command:
13072
13099
  - /opt/app-root/src/wait-for-tekton.sh
13073
13100
  env:
@@ -18402,6 +18429,22 @@ spec:
18402
18429
  type: string
18403
18430
  default: 'true'
18404
18431
 
18432
+ - name: instana_agent_operator_install
18433
+ type: string
18434
+ default: 'false'
18435
+ - name: instana_agent_operator_endpoint_host
18436
+ type: string
18437
+ default: ''
18438
+ - name: instana_agent_operator_endpoint_port
18439
+ type: string
18440
+ default: ''
18441
+ - name: instana_agent_operator_env
18442
+ type: string
18443
+ default: ''
18444
+ - name: instana_agent_operator_jks_storage_class
18445
+ type: string
18446
+ default: ''
18447
+
18405
18448
  tasks:
18406
18449
  - name: gitops-cluster
18407
18450
  params:
@@ -18494,6 +18537,17 @@ spec:
18494
18537
  value: $(params.cluster_logging_operator_install)
18495
18538
  - name: cluster_logging_operator_use_syslog_forwarder
18496
18539
  value: $(params.cluster_logging_operator_use_syslog_forwarder)
18540
+
18541
+ - name: instana_agent_operator_install
18542
+ value: $(params.instana_agent_operator_install)
18543
+ - name: instana_agent_operator_endpoint_host
18544
+ value: $(params.instana_agent_operator_endpoint_host)
18545
+ - name: instana_agent_operator_endpoint_port
18546
+ value: $(params.instana_agent_operator_endpoint_port)
18547
+ - name: instana_agent_operator_env
18548
+ value: $(params.instana_agent_operator_env)
18549
+ - name: instana_agent_operator_jks_storage_class
18550
+ value: $(params.instana_agent_operator_jks_storage_class)
18497
18551
 
18498
18552
  taskRef:
18499
18553
  kind: Task
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mas-cli
3
- Version: 13.3.0
3
+ Version: 13.4.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,14 +1,14 @@
1
- mas/cli/__init__.py,sha256=tQjW1qGU6AGtuvZu89Oz6BsSRacKr1Y7_H3Zebkp3DU,526
2
- mas/cli/cli.py,sha256=ijkMEiSwhLxt_ef2FXeta0PB0OWylWrUeCxUHsZjihY,18174
1
+ mas/cli/__init__.py,sha256=yjLj1VQqADY_JvnSdnZk_Gces7LYxiLU6aWtDgmpvPc,526
2
+ mas/cli/cli.py,sha256=6xnx1Z8wrrydZVtZrJ0z4jMD1eFsly5omjyeGxrxrpI,18174
3
3
  mas/cli/displayMixins.py,sha256=e3lAx1DIOwsriDcNI0M2JyP1jeLOZKvId6sPrvWLyqs,5984
4
4
  mas/cli/gencfg.py,sha256=p38Ss_ooiNHOZTJT8l0YxDaEaPwD4ZXgxEbW-S9YLNY,3311
5
5
  mas/cli/validators.py,sha256=vi1pFA8QtqMhqtGk1NlkkNDUrlFCi53kS5wJqFGDgOU,5108
6
6
  mas/cli/install/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
7
- mas/cli/install/app.py,sha256=uNcxzBYzHwXSR3EA2aHJEG8_QqvPKkPDUcK5AGqoLGw,59695
7
+ mas/cli/install/app.py,sha256=AdnL_4T_OWg0H4pjObDDZ-3-lO1vQBuSdA-ikqF2C3c,59963
8
8
  mas/cli/install/argBuilder.py,sha256=OIcelsCagiKM6BrCTCQFg9mtnAoNj45Wczl6xmkAJx0,24856
9
9
  mas/cli/install/argParser.py,sha256=aSiAltSoxhma1SWED6D3VwuK-MnoXHMJJq2OUgMoRmA,35488
10
10
  mas/cli/install/catalogs.py,sha256=zYzcui4ZT9Zqg4F5JUbQpjfzyzfwrIElCA_G7LpQ59g,751
11
- mas/cli/install/params.py,sha256=Oj98RASb37VvPXX9nLllUxZqmD4aF33rcrAESRvJIz4,5068
11
+ mas/cli/install/params.py,sha256=I8Gl1-bt-R7-jd1PyNJKmU_qbzloZxbXU5GAWcx3d6w,5029
12
12
  mas/cli/install/summarizer.py,sha256=UUkBiNUWH7QX2SEFKNuv0IdLg5NETl9bNAljS6Ebl1M,21580
13
13
  mas/cli/install/settings/__init__.py,sha256=RdyBSh-rM0wkuvILVzJ1gxjOtLuQ1mF6QbEL0MyiKIY,1034
14
14
  mas/cli/install/settings/additionalConfigs.py,sha256=u9DTwGZkPLIGfbNrz6yXsBi39EZgk2bwJuDUrNm_Nio,10008
@@ -17,7 +17,7 @@ mas/cli/install/settings/kafkaSettings.py,sha256=oJxFhWQkqPi7Do53tu4oxskGbEL4hro
17
17
  mas/cli/install/settings/manageSettings.py,sha256=rBBq3r9AaDS5fLeKbItgLBnsguuZwyNKo80oYBBEB-0,16241
18
18
  mas/cli/install/settings/mongodbSettings.py,sha256=UVt8vMLNpgyewlcymSystIhICnHsd0uoM9qpgezVjGg,2567
19
19
  mas/cli/install/settings/turbonomicSettings.py,sha256=ul4eWf53b1NCzJTFsEPX6DWM23YUlWILYBygplqXYlU,1631
20
- mas/cli/templates/ibm-mas-tekton.yaml,sha256=u0MqjoUXFtk5qWfAe2MNEgkdN9lT5yAAmLF2dEC02_U,830707
20
+ mas/cli/templates/ibm-mas-tekton.yaml,sha256=E955ELYl94COMBp51Mva2UY_l984HC8BJaOC13JAivQ,832807
21
21
  mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
22
22
  mas/cli/templates/suite_mongocfg.yml.j2,sha256=WrgJUfGyvfaRIHjY5VR_zLZ5irTpV5khKNq76ejIxKU,1606
23
23
  mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
@@ -99,8 +99,8 @@ mas/cli/update/argParser.py,sha256=oOIXzB_rsI2p3og_5X5SFt_g7LURyEdLxZeiGCKq1nU,4
99
99
  mas/cli/upgrade/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
100
100
  mas/cli/upgrade/app.py,sha256=EuEZayc0nw9kA6Hz8M9Mv7uk0hgmspJSZCYhNEfCECk,6428
101
101
  mas/cli/upgrade/argParser.py,sha256=pqzNDSHy6l13JunHWQLyOI-NFnDGDoVJ_HM07FLYJSc,2033
102
- mas_cli-13.3.0.data/scripts/mas-cli,sha256=Es-wSefTBcR3Vs5_kIUHQLfWHxTXVrmIPMFY0hbrxt8,3493
103
- mas_cli-13.3.0.dist-info/METADATA,sha256=jadUopXYlrMDKSWWpWTwfz2kyUrjyFdngzNUIp9KdME,2258
104
- mas_cli-13.3.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
105
- mas_cli-13.3.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
106
- mas_cli-13.3.0.dist-info/RECORD,,
102
+ mas_cli-13.4.0.data/scripts/mas-cli,sha256=Es-wSefTBcR3Vs5_kIUHQLfWHxTXVrmIPMFY0hbrxt8,3493
103
+ mas_cli-13.4.0.dist-info/METADATA,sha256=h5k7J5HMagFyyyHztQ0rgckk1LjQWqg2J176G-n-p9I,2258
104
+ mas_cli-13.4.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
105
+ mas_cli-13.4.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
106
+ mas_cli-13.4.0.dist-info/RECORD,,