diff --git a/common-modules/cpd/variables.tf b/common-modules/cpd/variables.tf index a47c551f..772e7131 100644 --- a/common-modules/cpd/variables.tf +++ b/common-modules/cpd/variables.tf @@ -147,7 +147,7 @@ variable "cpd_platform" { type = map(string) default = { enable = "yes" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -156,7 +156,7 @@ variable "data_virtualization" { type = map(string) default = { enable = "no" - version = "1.7.3" + version = "1.7.5" channel = "v1.7" } } @@ -165,7 +165,7 @@ variable "analytics_engine" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "stable-v1" } } @@ -174,7 +174,7 @@ variable "watson_knowledge_catalog" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -183,7 +183,7 @@ variable "watson_studio" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -192,7 +192,7 @@ variable "watson_machine_learning" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.1" } } @@ -201,7 +201,7 @@ variable "watson_ai_openscale" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1" } } @@ -210,7 +210,7 @@ variable "spss_modeler" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -219,7 +219,7 @@ variable "cognos_dashboard_embedded" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -228,7 +228,7 @@ variable "datastage" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -237,7 +237,7 @@ variable "db2_warehouse" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -246,7 +246,7 @@ variable "db2_oltp" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -255,7 +255,7 @@ variable "cognos_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -264,7 +264,7 @@ variable "data_management_console" { type = map(string) default = { enable = "no" - version = "4.0.3" + version = "4.0.5" channel = "v1.0" } } @@ -273,7 +273,7 @@ variable "master_data_management" { type = map(string) default = { enable = "no" - version = "1.1.167" + version = "1.1.175" channel = "v1.1" } } @@ -282,7 +282,7 @@ variable "db2_aaservice" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -291,7 +291,7 @@ variable "decision_optimization" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -304,7 +304,7 @@ variable "planning_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -313,7 +313,7 @@ variable "bigsql" { type = map(string) default = { enable = "no" - version = "7.2.3" + version = "7.2.5" channel = "v7.2" } } @@ -322,7 +322,7 @@ variable "watson_assistant" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -353,7 +353,7 @@ variable "watson_discovery" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -362,7 +362,7 @@ variable "openpages" { type = map(string) default = { enable = "no" - version = "8.204.1" + version = "8.204.2" channel = "v1.0" } } diff --git a/managed-openshift/aws/terraform/PORTWORX-TROUBLESHOOTING.md b/managed-openshift/aws/terraform/PORTWORX-TROUBLESHOOTING.md new file mode 100644 index 00000000..52c4f315 --- /dev/null +++ b/managed-openshift/aws/terraform/PORTWORX-TROUBLESHOOTING.md @@ -0,0 +1,239 @@ +## Troubleshooting issues with Cloud Pak for Data installation on Portworx storage on AWS + +Some of the services may encounter issues when installing Cloud Pak for Data on Portworx storage on AWS. Please use the following troubleshooting help in case of any issues encountered with the following services. + +## Db2 Data Management Console + +Db2 Data Management Console service does not start in Liberty on AWS cluster with Portworx storage. The Db2 Data Management Console service pod fails to run successfully. As a workaround, use the following Db2 Data Management Console CR to create the service instance instead of provisioning the service instance from UI. Ensure that `disable_storage` is set to `true` in the CR specification. + +```plaintext +cat << EOF | oc apply -f - +apiVersion: dmc.databases.ibm.com/v1 +kind: Dmc +metadata: + name: data-management-console + annotations: + ansible.operator-sdk/reconcile-period: "30s" + ansible.sdk.operatorframework.io/verbosity: "4" +spec: + arch: x86_64 + version: 4.0.5 + description: "Data Management Console" + scaleConfig: small + storageClass: "YOUR_STORAGECLASS" + storageSize: 10Gi + disable_storage: true + license: + accept: true + license: Standard +EOF +``` +More details at [Limitations and known issues in Db2 Data Management Console](https://www.ibm.com/docs/en/cloud-paks/cp-data/4.0?topic=issues-db2-data-management-console) + + +## Match 360 with Watson + +The following steps should be considered when deploying on single zone AWS cluster with Portworx storage if the Elastic Search pods are not in running state. + +Set the same values for requests and limits for ElasticSearch. +``` + master: + resources: + requests: + cpu: "1" + memory: "1Gi" + limits: + cpu: "1" + memory: "1Gi" + data: + resources: + requests: + cpu: "1" + memory: "3Gi" + limits: + cpu: "1" + memory: "3Gi" +``` +Don't specify storage class field in mdm-cr and should have only storage vendor field defined. +``` + persistence: + storage_vendor: portworx +``` +Example CR: + +``` +cat < wml-deployments-etcd.yaml +``` + +2. Execute the following commands to update the yaml file + +``` + sed 's/etcdctl endpoint health/etcdctl endpoint health --user=root:$ROOT_PASSWORD/g' wml-deployments-etcd.yaml > wml-deployments-etcd-temp1.yaml + sed 's/etcdctl member update/etcdctl member update --user=root:$ROOT_PASSWORD/g' wml-deployments-etcd-temp1.yaml > wml-deployments-etcd-temp2.yaml + sed 's/etcdctl member add/etcdctl member add --user=root:$ROOT_PASSWORD/g' wml-deployments-etcd-temp2.yaml > wml-deployments-etcd-temp3.yaml + +``` + +3. Delete the existing wml etcd statefulset + +``` + oc delete -f wml-deployments-etcd.yaml +``` + +4. Wait for existing ETCD pods to get terminated + +``` + oc get pods | grep -i "wml-deployments-etcd" +``` + +5. Remove the wml deployment ETCD PVC and PV: + +``` + oc delete pvc data-wml-deployments-etcd-0 data-wml-deployments-etcd-1 data-wml-deployments-etcd-2 + oc get pv| grep -i "data-wml-deployments-etcd" | awk '{print $1}' | xargs oc delete pv +``` + +6. Making the following changes in the file "wml-deployments-etcd-temp4.yaml": + + 6(a). Remove the "metadata.creationTimestamp", "metadata.resourceVersion" and "metadata.uid" from the yaml file - `wml-deployments-etcd-temp3.yaml` + +``` +metadata: + .... + creationTimestamp: "2022-01-31T11:24:32Z" -------> Remove this line + resourceVersion: "8864069" -------> Remove this line + uid: 0227fa19-1d07-45f7-82cb-734864376482 -------> Remove this line +``` + +6(b). Remove the complete "status" section from the yaml file - wml-deployments-etcd-temp3.yaml + +``` + status: + phase: Pending +status: + collisionCount: 0 + currentReplicas: 3 + currentRevision: wml-deployments-etcd-545567cbbb + observedGeneration: 1 + readyReplicas: 3 + replicas: 3 + updateRevision: wml-deployments-etcd-545567cbbb + updatedReplicas: 3 +``` + +7. Recreate the etcd statefulset +``` + oc create -f wml-deployments-etcd-temp3.yaml +``` + +## Watson OpenScale + + +Sometimes when installing Watson OpenScale using Portworx storage on AWS, some of the pods fails to start. This is caused sometimes due to slow I/O operations on Portworx storage on AWS. This is observed when the `portworx-shared-gp3` storage class is used for persistent volumes requiring both RWO and RWX access modes. Starting Cloud Pak for Data version 4.0.4, OpenScale has introduced a custom storage class to be specified for volumes needing RWO access mode with a CR parameter by name `rwoStorageClass`. Use the following CR specification to install OpenScale service to fix the issue. + +``` +cat < +``` +Execute this command +``` + /opt/IBM/InformationServer/ASBServer/bin/iisAdmin.sh -set -key com.ibm.iis.isf.auditing.enable -value false +``` +Delete the IIS services pod +``` +oc delete pod +``` +This should resolve the error. + diff --git a/managed-openshift/aws/terraform/README.md b/managed-openshift/aws/terraform/README.md index 81bdfb59..4eb70fac 100644 --- a/managed-openshift/aws/terraform/README.md +++ b/managed-openshift/aws/terraform/README.md @@ -34,7 +34,7 @@ * Create a Route 53 domain. * [Download](https://cloud.redhat.com/openshift/install/pull-secret) a pull secret. Create a Red Hat account if you do not have one. * [Sign up](https://www.ibm.com/account/reg/us-en/signup?formid=urx-42212) for a Cloud Pak for Data Trial Key if you don't have the API key. -* If you choose Portworx as your storage class, see [Portworx documentation](PORTWORX.md) for generating `portworx spec url`. +* If you choose Portworx as your storage class, see [Portworx documentation](PORTWORX.md) for generating `portworx spec url`. Also see [Portworx troubleshooting documentation](PORTWORX-TROUBLESHOOTING.md) to fix commonly encountered issues when installing Cloud Pak for Data on Portworx storage on AWS. * Clone this repository: ```bash git clone diff --git a/managed-openshift/aws/terraform/variables.tf b/managed-openshift/aws/terraform/variables.tf index 038d4a21..b50d343f 100644 --- a/managed-openshift/aws/terraform/variables.tf +++ b/managed-openshift/aws/terraform/variables.tf @@ -252,7 +252,7 @@ variable "cpd_platform" { type = map(string) default = { enable = "yes" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -261,7 +261,7 @@ variable "data_virtualization" { type = map(string) default = { enable = "no" - version = "1.7.3" + version = "1.7.5" channel = "v1.7" } } @@ -270,7 +270,7 @@ variable "analytics_engine" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "stable-v1" } } @@ -279,7 +279,7 @@ variable "watson_knowledge_catalog" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -288,7 +288,7 @@ variable "watson_studio" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -297,7 +297,7 @@ variable "watson_machine_learning" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.1" } } @@ -306,7 +306,7 @@ variable "watson_ai_openscale" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1" } } @@ -315,7 +315,7 @@ variable "spss_modeler" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -324,7 +324,7 @@ variable "cognos_dashboard_embedded" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -333,7 +333,7 @@ variable "datastage" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -342,7 +342,7 @@ variable "db2_warehouse" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -351,7 +351,7 @@ variable "db2_oltp" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -360,7 +360,7 @@ variable "cognos_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -369,7 +369,7 @@ variable "data_management_console" { type = map(string) default = { enable = "no" - version = "4.0.3" + version = "4.0.5" channel = "v1.0" } } @@ -378,7 +378,7 @@ variable "master_data_management" { type = map(string) default = { enable = "no" - version = "1.1.167" + version = "1.1.175" channel = "v1.1" } } @@ -387,7 +387,7 @@ variable "db2_aaservice" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -396,7 +396,7 @@ variable "decision_optimization" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -405,7 +405,7 @@ variable "planning_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -414,7 +414,7 @@ variable "bigsql" { type = map(string) default = { enable = "no" - version = "7.2.3" + version = "7.2.5" channel = "v7.2" } } diff --git a/managed-openshift/aws/terraform/wkc-1az-new-vpc.tfvars b/managed-openshift/aws/terraform/wkc-1az-new-vpc.tfvars index 6eda237a..5e340b87 100644 --- a/managed-openshift/aws/terraform/wkc-1az-new-vpc.tfvars +++ b/managed-openshift/aws/terraform/wkc-1az-new-vpc.tfvars @@ -29,22 +29,22 @@ secret_access_key = "" accept_cpd_license = "accept" ## CPD services -watson_knowledge_catalog = { "enable" : "yes", "version" : "4.0.4", "channel" : "v1.0" } -data_virtualization = { "enable" : "no", "version" : "1.7.3", "channel" : "v1.7" } -analytics_engine = { "enable" : "no", "version" : "4.0.4", "channel" : "stable-v1" } -watson_studio = { "enable" : "no", "version" : "4.0.4", "channel" : "v2.0" } -watson_machine_learning = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.1" } -watson_ai_openscale = { "enable" : "no", "version" : "4.0.4", "channel" : "v1" } -spss_modeler = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -cognos_dashboard_embedded = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -datastage = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -db2_warehouse = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } -db2_oltp = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } -cognos_analytics = { "enable" : "no", "version" : "4.0.4", "channel" : "v4.0" } -master_data_management = { "enable" : "no", "version" : "1.1.167", "channel" : "v1.1" } -decision_optimization = { "enable" : "no", "version" : "4.0.4", "channel" : "v4.0" } -planning_analytics = { "enable" : "no", "version" : "4.0.4", "channel" : "v4.0" } -bigsql = { "enable" : "no", "version" : "7.2.3", "channel" : "v7.2" } +watson_knowledge_catalog = { "enable" : "yes", "version" : "4.0.5", "channel" : "v1.0" } +data_virtualization = { "enable" : "no", "version" : "1.7.5", "channel" : "v1.7" } +analytics_engine = { "enable" : "no", "version" : "4.0.5", "channel" : "stable-v1" } +watson_studio = { "enable" : "no", "version" : "4.0.5", "channel" : "v2.0" } +watson_machine_learning = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.1" } +watson_ai_openscale = { "enable" : "no", "version" : "4.0.5", "channel" : "v1" } +spss_modeler = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +cognos_dashboard_embedded = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +datastage = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +db2_warehouse = { "enable" : "no", "version" : "4.0.7", "channel" : "v1.0" } +db2_oltp = { "enable" : "no", "version" : "4.0.7", "channel" : "v1.0" } +cognos_analytics = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +master_data_management = { "enable" : "no", "version" : "1.1.175", "channel" : "v1.1" } +decision_optimization = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +planning_analytics = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +bigsql = { "enable" : "no", "version" : "7.2.5", "channel" : "v7.2" } diff --git a/managed-openshift/azure/arm/aro/azuredeploy.json b/managed-openshift/azure/arm/aro/azuredeploy.json index 592368ad..41fdbb46 100644 --- a/managed-openshift/azure/arm/aro/azuredeploy.json +++ b/managed-openshift/azure/arm/aro/azuredeploy.json @@ -379,8 +379,8 @@ "installDataRefineryScriptUrl": "[uri(parameters('_artifactsLocation'), concat('scripts/install-dr.sh', parameters('_artifactsLocationSasToken')))]", "installCdeScriptFileName": "install-cde.sh", "installCdeScriptUrl": "[uri(parameters('_artifactsLocation'), concat('scripts/install-cde.sh', parameters('_artifactsLocationSasToken')))]", - "installWkcCoreScriptFileName": "install-wkc-core.sh", - "installWkcCoreScriptUrl": "[uri(parameters('_artifactsLocation'), concat('scripts/install-wkc-core.sh', parameters('_artifactsLocationSasToken')))]", + "installWkcScriptFileName": "install-wkc.sh", + "installWkcScriptUrl": "[uri(parameters('_artifactsLocation'), concat('scripts/install-wkc.sh', parameters('_artifactsLocationSasToken')))]", "installDVScriptFileName": "install-dv.sh", "installDVScriptUrl": "[uri(parameters('_artifactsLocation'), concat('scripts/install-dv.sh', parameters('_artifactsLocationSasToken')))]", "deployOpenshiftExt": "[concat('Microsoft.Compute/virtualMachines/', variables('bastionHostname'), '/extensions/deployOpenshift')]", @@ -1077,7 +1077,7 @@ "value": "v2.0" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1149,7 +1149,7 @@ "value": "v1.0" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1221,7 +1221,7 @@ "value": "v1.0" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1293,7 +1293,7 @@ "value": "v2.0" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1362,10 +1362,10 @@ "value": "[variables('customDomain')]" }, "subscriptionChannel": { - "value": "v1.1" + "value": "v1" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1437,7 +1437,7 @@ "value": "v1" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1510,7 +1510,7 @@ "value": "v1.0" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1582,7 +1582,7 @@ "value": "v1.7" }, "version": { - "value": "1.7.3" + "value": "1.7.5" } } } @@ -1654,7 +1654,7 @@ "value": "stable-v1" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } @@ -1663,7 +1663,7 @@ "condition": "[and(equals(parameters('cloudPakLicenseAgreement'), 'accept'), equals(parameters('installWatsonKnowledgeCatalog'), 'yes'))]", "type": "Microsoft.Resources/deployments", "apiVersion": "2019-05-01", - "name": "CloudPakWKCCoreDeployment", + "name": "CloudPakWKCDeployment", "dependsOn": [ "[resourceId('Microsoft.RedHatOpenShift/OpenShiftClusters', parameters('clusterName'))]", "CloudPakDataRefineryDeployment", @@ -1678,10 +1678,10 @@ }, "parameters": { "cloudPakDeploymentScriptUrl": { - "value": "[variables('installWkcCoreScriptUrl')]" + "value": "[variables('installWkcScriptUrl')]" }, "cloudPakDeploymentScriptFileName": { - "value": "[variables('installWkcCoreScriptFileName')]" + "value": "[variables('installWkcScriptFileName')]" }, "redHatTags": { "value": "[variables('redHatTags')]" @@ -1726,7 +1726,7 @@ "value": "v1.0" }, "version": { - "value": "4.0.4" + "value": "4.0.5" } } } diff --git a/managed-openshift/azure/arm/aro/scripts/CloudPakConfigLite.sh b/managed-openshift/azure/arm/aro/scripts/CloudPakConfigLite.sh index e1ebd373..061e0bd7 100644 --- a/managed-openshift/azure/arm/aro/scripts/CloudPakConfigLite.sh +++ b/managed-openshift/azure/arm/aro/scripts/CloudPakConfigLite.sh @@ -208,7 +208,7 @@ name_space=$OPERATORNAMESPACE status="unknown" while [ "$status" != "Running" ] do - pod_name=$(oc get pods -n $name_space | grep $podname | awk '{print $1}' ) + pod_name=$(oc get pods -n $name_space | grep $podname | awk '{print $1}') ready_status=$(oc get pods -n $name_space $pod_name --no-headers | awk '{print $2}') pod_status=$(oc get pods -n $name_space $pod_name --no-headers | awk '{print $3}') echo $pod_name State - $ready_status, podstatus - $pod_status diff --git a/managed-openshift/azure/arm/aro/scripts/install-wkc-core.sh b/managed-openshift/azure/arm/aro/scripts/install-wkc.sh similarity index 100% rename from managed-openshift/azure/arm/aro/scripts/install-wkc-core.sh rename to managed-openshift/azure/arm/aro/scripts/install-wkc.sh diff --git a/managed-openshift/azure/arm/aro/scripts/install-wos.sh b/managed-openshift/azure/arm/aro/scripts/install-wos.sh index bf824455..2475a757 100644 --- a/managed-openshift/azure/arm/aro/scripts/install-wos.sh +++ b/managed-openshift/azure/arm/aro/scripts/install-wos.sh @@ -50,9 +50,9 @@ kind: Subscription metadata: name: ibm-watson-openscale-operator labels: - app.kubernetes.io/instance: ibm-watson-openscale-operator + app.kubernetes.io/instance: ibm-watson-openscale-operator-subscription app.kubernetes.io/managed-by: ibm-watson-openscale-operator - app.kubernetes.io/name: ibm-watson-openscale-operator + app.kubernetes.io/name: ibm-watson-openscale-operator-subscription namespace: $OPERATORNAMESPACE spec: channel: $CHANNEL diff --git a/managed-openshift/ibmcloud/terraform.tfvars.template b/managed-openshift/ibmcloud/terraform.tfvars.template index ab3374fa..672c0d4f 100644 --- a/managed-openshift/ibmcloud/terraform.tfvars.template +++ b/managed-openshift/ibmcloud/terraform.tfvars.template @@ -23,21 +23,21 @@ no_of_zones = "1" create_external_etcd = true -cpd_platform = {"enable":"yes", "version":"4.0.4", "channel":"v2.0"} - -watson_knowledge_catalog = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -data_virtualization = { "enable" : "no", "version" : "1.7.3", "channel" : "v1.7" } -analytics_engine = { "enable" : "no", "version" : "4.0.4", "channel" : "stable-v1" } -watson_studio = { "enable" : "no", "version" : "4.0.4", "channel" : "v2.0" } -watson_machine_learning = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.1" } -watson_ai_openscale = { "enable" : "no", "version" : "4.0.4", "channel" : "v1" } -spss_modeler = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -cognos_dashboard_embedded = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -datastage = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -db2_warehouse = { "enable" : "no", "version" : "4.0.6", "channel" : "v1.0" } -db2_oltp = { "enable" : "no", "version" : "4.0.6", "channel" : "v1.0" } -data_management_console = { "enable" : "no", "version" : "4.0.3", "channel" : "v1.0" } -cognos_analytics = { "enable" : "no", "version" : "4.0.4", "channel" : "v4.0" } -master_data_management = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.1" } -decision_optimization = { "enable" : "no", "version" : "4.0.4", "channel" : "v4.0" } -db2_aaservice = { "enable" : "no", "version" : "4.0.6", "channel" : "v4.0" } +cpd_platform = {"enable":"yes", "version":"4.0.5", "channel":"v2.0"} + +watson_knowledge_catalog = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +data_virtualization = { "enable" : "no", "version" : "1.7.5", "channel" : "v1.7" } +analytics_engine = { "enable" : "no", "version" : "4.0.5", "channel" : "stable-v1" } +watson_studio = { "enable" : "no", "version" : "4.0.5", "channel" : "v2.0" } +watson_machine_learning = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.1" } +watson_ai_openscale = { "enable" : "no", "version" : "4.0.5", "channel" : "v1" } +spss_modeler = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +cognos_dashboard_embedded = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +datastage = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +db2_warehouse = { "enable" : "no", "version" : "4.0.7", "channel" : "v1.0" } +db2_oltp = { "enable" : "no", "version" : "4.0.7", "channel" : "v1.0" } +data_management_console = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +cognos_analytics = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +master_data_management = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.1" } +decision_optimization = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +db2_aaservice = { "enable" : "no", "version" : "4.0.7", "channel" : "v4.0" } diff --git a/managed-openshift/ibmcloud/vars.tf b/managed-openshift/ibmcloud/vars.tf index 225ff5d6..29365dae 100644 --- a/managed-openshift/ibmcloud/vars.tf +++ b/managed-openshift/ibmcloud/vars.tf @@ -72,7 +72,7 @@ variable "cpd_platform" { type = map(string) default = { enable = "yes" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -81,7 +81,7 @@ variable "data_virtualization" { type = map(string) default = { enable = "no" - version = "1.7.3" + version = "1.7.5" channel = "v1.7" } } @@ -90,7 +90,7 @@ variable "analytics_engine" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "stable-v1" } } @@ -99,7 +99,7 @@ variable "watson_knowledge_catalog" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -108,7 +108,7 @@ variable "watson_studio" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -117,7 +117,7 @@ variable "watson_machine_learning" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.1" } } @@ -126,7 +126,7 @@ variable "watson_ai_openscale" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1" } } @@ -135,7 +135,7 @@ variable "spss_modeler" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -144,7 +144,7 @@ variable "cognos_dashboard_embedded" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -153,7 +153,7 @@ variable "datastage" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -162,7 +162,7 @@ variable "db2_warehouse" { type = map(string) default = { enable = "no" - version = "4.0.6" + version = "4.0.7" channel = "v1.0" } } @@ -171,7 +171,7 @@ variable "db2_oltp" { type = map(string) default = { enable = "no" - version = "4.0.6" + version = "4.0.7" channel = "v1.0" } } @@ -180,7 +180,7 @@ variable "cognos_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -189,7 +189,7 @@ variable "data_management_console" { type = map(string) default = { enable = "no" - version = "4.0.3" + version = "4.0.5" channel = "v1.0" } } @@ -198,7 +198,7 @@ variable "master_data_management" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.1" } } @@ -207,7 +207,7 @@ variable "db2_aaservice" { type = map(string) default = { enable = "no" - version = "4.0.6" + version = "4.0.7" channel = "v1.0" } } @@ -216,7 +216,7 @@ variable "decision_optimization" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } diff --git a/selfmanaged-openshift/aws/PORTWORX-TROUBLESHOOTING.md b/selfmanaged-openshift/aws/PORTWORX-TROUBLESHOOTING.md index 878737fa..52c4f315 100644 --- a/selfmanaged-openshift/aws/PORTWORX-TROUBLESHOOTING.md +++ b/selfmanaged-openshift/aws/PORTWORX-TROUBLESHOOTING.md @@ -17,7 +17,7 @@ metadata: ansible.sdk.operatorframework.io/verbosity: "4" spec: arch: x86_64 - version: 4.0.1 + version: 4.0.5 description: "Data Management Console" scaleConfig: small storageClass: "YOUR_STORAGECLASS" @@ -72,7 +72,7 @@ spec: license: accept: true license: Enterprise # Specify the license you purchased - version: 1.1.167 + version: 1.1.175 persistence: storage_vendor: portworx # Specify the storage vendor (ocs | portworx) common_core_services: @@ -206,18 +206,34 @@ spec: license: accept: true license: Enterprise - version: 4.0.4 + version: 4.0.5 type: service storageClass: portworx-shared-gp3 rwoStorageClass: portworx-metastoredb-sc EOF ``` +After installation if the status of the default Openscale instance on CP4D Web Console is shown as failed, execute this command on the terminal +``` +oc label deployment aiopenscale-ibm-aios-nginx icpd-addon/status=`oc get cm aios-openscale-defaultinstance-cm -o jsonpath='{.data.instance_id}'` +``` +Refresh the CP4D Web console, this instance should be in running state. +## Watson Knowledge Catalog - - - - - +While creation of Data Discovery job, if there is an error while adding a data connection, Diasble the audit logging in IIS service. Execute the following commands +to disable the logging +Get in to the IIS services pod by running this command +``` +oc rsh +``` +Execute this command +``` + /opt/IBM/InformationServer/ASBServer/bin/iisAdmin.sh -set -key com.ibm.iis.isf.auditing.enable -value false +``` +Delete the IIS services pod +``` +oc delete pod +``` +This should resolve the error. diff --git a/selfmanaged-openshift/aws/variables.tf b/selfmanaged-openshift/aws/variables.tf index 99903c37..c1018099 100644 --- a/selfmanaged-openshift/aws/variables.tf +++ b/selfmanaged-openshift/aws/variables.tf @@ -337,7 +337,7 @@ variable "cpd_platform" { type = map(string) default = { enable = "yes" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -346,7 +346,7 @@ variable "data_virtualization" { type = map(string) default = { enable = "no" - version = "1.7.3" + version = "1.7.5" channel = "v1.7" } } @@ -355,7 +355,7 @@ variable "analytics_engine" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "stable-v1" } } @@ -364,7 +364,7 @@ variable "watson_knowledge_catalog" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -373,7 +373,7 @@ variable "watson_studio" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -382,7 +382,7 @@ variable "watson_machine_learning" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.1" } } @@ -391,7 +391,7 @@ variable "watson_ai_openscale" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1" } } @@ -400,7 +400,7 @@ variable "spss_modeler" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -409,7 +409,7 @@ variable "cognos_dashboard_embedded" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -418,7 +418,7 @@ variable "datastage" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -427,7 +427,7 @@ variable "db2_warehouse" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -436,7 +436,7 @@ variable "db2_oltp" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -445,7 +445,7 @@ variable "cognos_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -454,7 +454,7 @@ variable "data_management_console" { type = map(string) default = { enable = "no" - version = "4.0.3" + version = "4.0.5" channel = "v1.0" } } @@ -463,7 +463,7 @@ variable "master_data_management" { type = map(string) default = { enable = "no" - version = "1.1.167" + version = "1.1.175" channel = "v1.1" } } @@ -472,7 +472,7 @@ variable "db2_aaservice" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -481,7 +481,7 @@ variable "decision_optimization" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -490,7 +490,7 @@ variable "planning_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -499,7 +499,7 @@ variable "bigsql" { type = map(string) default = { enable = "no" - version = "7.2.3" + version = "7.2.5" channel = "v7.2" } } @@ -508,7 +508,7 @@ variable "watson_assistant" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -517,7 +517,7 @@ variable "watson_discovery" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -526,7 +526,7 @@ variable "openpages" { type = map(string) default = { enable = "no" - version = "8.204.1" + version = "8.204.2" channel = "v1.0" } } diff --git a/selfmanaged-openshift/aws/wkc-1az-ocs-new-vpc.tfvars b/selfmanaged-openshift/aws/wkc-1az-ocs-new-vpc.tfvars index 0aef2ff2..13b91656 100644 --- a/selfmanaged-openshift/aws/wkc-1az-ocs-new-vpc.tfvars +++ b/selfmanaged-openshift/aws/wkc-1az-ocs-new-vpc.tfvars @@ -14,22 +14,22 @@ openshift_password = "" accept_cpd_license = "accept" cpd_api_key = "" -watson_knowledge_catalog = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -data_virtualization = { "enable" : "no", "version" : "1.7.3", "channel" : "v1.7" } -analytics_engine = { "enable" : "no", "version" : "4.0.4", "channel" : "stable-v1" } -watson_studio = { "enable" : "no", "version" : "4.0.4", "channel" : "v2.0" } -watson_machine_learning = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.1" } -watson_ai_openscale = { "enable" : "no", "version" : "4.0.4", "channel" : "v1" } -spss_modeler = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -cognos_dashboard_embedded = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -datastage = { "enable" : "no", "version" : "4.0.4", "channel" : "v1.0" } -db2_warehouse = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } -db2_oltp = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } -cognos_analytics = { "enable" : "no", "version" : "4.0.4", "channel" : "v4.0" } -master_data_management = { "enable" : "no", "version" : "1.1.167", "channel" : "v1.1" } -decision_optimization = { "enable" : "no", "version" : "4.0.3", "channel" : "v4.0" } -planning_analytics = { "enable" : "no", "version" : "4.0.3", "channel" : "v4.0" } -bigsql = { "enable" : "no", "version" : "7.2.3", "channel" : "v7.2" } +watson_knowledge_catalog = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +data_virtualization = { "enable" : "no", "version" : "1.7.5", "channel" : "v1.7" } +analytics_engine = { "enable" : "no", "version" : "4.0.5", "channel" : "stable-v1" } +watson_studio = { "enable" : "no", "version" : "4.0.5", "channel" : "v2.0" } +watson_machine_learning = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.1" } +watson_ai_openscale = { "enable" : "no", "version" : "4.0.5", "channel" : "v1" } +spss_modeler = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +cognos_dashboard_embedded = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +datastage = { "enable" : "no", "version" : "4.0.5", "channel" : "v1.0" } +db2_warehouse = { "enable" : "no", "version" : "4.0.7", "channel" : "v1.0" } +db2_oltp = { "enable" : "no", "version" : "4.0.7", "channel" : "v1.0" } +cognos_analytics = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +master_data_management = { "enable" : "no", "version" : "1.1.175", "channel" : "v1.1" } +decision_optimization = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +planning_analytics = { "enable" : "no", "version" : "4.0.5", "channel" : "v4.0" } +bigsql = { "enable" : "no", "version" : "7.2.5", "channel" : "v7.2" } diff --git a/selfmanaged-openshift/azure/azure_infra/variables.tf b/selfmanaged-openshift/azure/azure_infra/variables.tf index 0a826dbd..fb1ec7c1 100644 --- a/selfmanaged-openshift/azure/azure_infra/variables.tf +++ b/selfmanaged-openshift/azure/azure_infra/variables.tf @@ -231,7 +231,7 @@ variable "cpd_platform" { type = map(string) default = { enable = "yes" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -240,7 +240,7 @@ variable "data_virtualization" { type = map(string) default = { enable = "no" - version = "1.7.3" + version = "1.7.5" channel = "v1.7" } } @@ -249,7 +249,7 @@ variable "analytics_engine" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "stable-v1" } } @@ -258,7 +258,7 @@ variable "watson_knowledge_catalog" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -267,7 +267,7 @@ variable "watson_studio" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v2.0" } } @@ -276,7 +276,7 @@ variable "watson_machine_learning" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.1" } } @@ -285,7 +285,7 @@ variable "watson_ai_openscale" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1" } } @@ -294,7 +294,7 @@ variable "spss_modeler" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -303,7 +303,7 @@ variable "cognos_dashboard_embedded" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -312,7 +312,7 @@ variable "datastage" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -321,7 +321,7 @@ variable "db2_warehouse" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -330,7 +330,7 @@ variable "db2_oltp" { type = map(string) default = { enable = "no" - version = "4.0.5" + version = "4.0.7" channel = "v1.0" } } @@ -339,7 +339,7 @@ variable "cognos_analytics" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -357,7 +357,7 @@ variable "master_data_management" { type = map(string) default = { enable = "no" - version = "1.1.167" + version = "1.1.175" channel = "v1.1" } } @@ -366,7 +366,7 @@ variable "db2_aaservice" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v1.0" } } @@ -375,7 +375,7 @@ variable "decision_optimization" { type = map(string) default = { enable = "no" - version = "4.0.4" + version = "4.0.5" channel = "v4.0" } } @@ -384,7 +384,7 @@ variable "bigsql" { type = map(string) default = { enable = "no" - version = "7.2.3" + version = "7.2.5" channel = "v7.2" } }