Skip to content

Commit 09ab0f1

Browse files
committed
fix quotes not being passed
Signed-off-by: David-M-IBM <David.massey@ibm.com>
1 parent 9696611 commit 09ab0f1

6 files changed

Lines changed: 25 additions & 25 deletions

cp4d/5.0.x-tse-l4-base/cp4d-cloud-pak-deployer-pipeline-run-ocpv.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ spec:
3131
- name: cloud-pak-deployer-version
3232
value: "latest"
3333
- name: install-openshift-ai
34-
value: "'True'"
34+
value: "True"
3535
- name: configure-gpu
36-
value: "'True'"
36+
value: "True"
3737
# - name: analyticsengine-state
3838
# value: "installed"
3939
# - name: spss-state

cp4d/5.0.x-tse-l4-base/cp4d-cloud-pak-deployer-pipeline-run.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ spec:
2525
- name: cloud-pak-deployer-version
2626
value: "v2.9.4"
2727
- name: install-openshift-ai
28-
value: "'True'"
28+
value: "True"
2929
- name: configure-gpu
30-
value: "'True'"
30+
value: "True"
3131
# - name: analyticsengine-state
3232
# value: "installed"
3333
# - name: spss-state

cp4d/5.0.x-tse-l4-base/cp4d-cloud-pak-deployer-pipeline.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -623,19 +623,19 @@ spec:
623623
Do you want to install the OpenShift AI operator and configure it for CP4D? If yes, use value 'True'
624624
{
625625
"options": [
626-
"'False'",
627-
"'True'"
626+
"False",
627+
"True"
628628
]
629629
}
630-
default: "'True'"
630+
default: "True"
631631
- name: configure-gpu
632632
type: string
633633
description: |
634634
Do you want to install the NVIDIA operator and Node Feature Discovery for GPU nodes? If yes, use value 'True'
635635
{
636636
"options": [
637-
"'False'",
638-
"'True'"
637+
"False",
638+
"True"
639639
]
640640
}
641641
default: "'True'"
@@ -1527,10 +1527,10 @@ spec:
15271527
cluster_name: cpd-demo
15281528
domain_name: example.com
15291529
openshift_ai:
1530-
install: $(params.install-openshift-ai)
1530+
install: '$(params.install-openshift-ai)'
15311531
channel: fast
15321532
gpu:
1533-
install: $(params.configure-gpu)
1533+
install: '$(params.configure-gpu)'
15341534
openshift_storage:
15351535
- storage_name: $(params.cloud-pak-deployer-storage-class)
15361536
storage_type: $(params.cloud-pak-deployer-storage-type)

cp4d/5.0.x/cp4d-cloud-pak-deployer-pipeline-run-ocpv.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ spec:
2727
- name: cpd-sequential-install
2828
value: "True"
2929
- name: install-openshift-ai
30-
value: "'True'"
30+
value: "True"
3131
- name: configure-gpu
32-
value: "'True'"
32+
value: "True"
3333
# - name: analyticsengine-state
3434
# value: "installed"
3535
# - name: spss-state

cp4d/5.0.x/cp4d-cloud-pak-deployer-pipeline-run.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ spec:
2525
- name: cloud-pak-deployer-version
2626
value: "v2.9.4"
2727
- name: install-openshift-ai
28-
value: "'True'"
28+
value: "True"
2929
- name: configure-gpu
30-
value: "'True'"
30+
value: "True"
3131
# - name: analyticsengine-state
3232
# value: "installed"
3333
# - name: spss-state

cp4d/5.0.x/cp4d-cloud-pak-deployer-pipeline.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -628,25 +628,25 @@ spec:
628628
- name: install-openshift-ai
629629
type: string
630630
description: |
631-
Do you want to install the OpenShift AI operator and configure it for CP4D? Use value 'True' if yes
631+
Do you want to install the OpenShift AI operator and configure it for CP4D? Use value True if yes
632632
{
633633
"options": [
634-
"'False'",
635-
"'True'"
634+
"False",
635+
"True"
636636
]
637637
}
638-
default: "'True'"
638+
default: "True"
639639
- name: configure-gpu
640640
type: string
641641
description: |
642-
Do you want to install the NVIDIA operator and Node Feature Discovery for GPU nodes? Use value 'True' if yes
642+
Do you want to install the NVIDIA operator and Node Feature Discovery for GPU nodes? Use value True if yes
643643
{
644644
"options": [
645-
"'False'",
646-
"'True'"
645+
"False",
646+
"True"
647647
]
648648
}
649-
default: "'True'"
649+
default: "True"
650650
- name: watsonx-ai-state
651651
type: string
652652
description: |
@@ -1536,10 +1536,10 @@ spec:
15361536
cluster_name: cpd-demo
15371537
domain_name: example.com
15381538
openshift_ai:
1539-
install: $(params.install-openshift-ai)
1539+
install: '$(params.install-openshift-ai)'
15401540
channel: fast
15411541
gpu:
1542-
install: $(params.configure-gpu)
1542+
install: '$(params.configure-gpu)'
15431543
openshift_storage:
15441544
- storage_name: $(params.cloud-pak-deployer-storage-class)
15451545
storage_type: $(params.cloud-pak-deployer-storage-type)

0 commit comments

Comments
 (0)