Install Data Catalog on OpenShift (OCP/OKD)
curl -u<jfrog_username>:<jfrog_token> -L -O \ "https://one.hitachivantara.com/artifactory/pdc-generic-dev/pentaho/pdc-docker-deployment/release-v10.2.10/pdc-full-release-[build_number]-k8s.tgz"tar -xvf pdc-full-release-[build_number]-k8s.tgz -C /optcd /opt/pentaho/pdc-helm-chartscp conf/default/example.custom-values.yaml conf/default/custom-values.yamlvi conf/default/custom-values.yamlglobalOverrides: applicationFqdn: <fqdn to access the application> imageRegistryName: one.hitachivantara.com/docker imageRegistryUserName: <hitachi jfrog username> imageRegistryUserPassword: <hitachi jfrog token> opensearch: sysctlImage: enabled: false volumePermissions: enabled: false oc-routes: enabled: true cat: licensing-api: licenseServerUrl: <pdc license server url> fe-workers: persistence: storageClass: <storage class> # Replace with the storage class available in your cluster
kubectl create ns <namespace>oc adm policy add-scc-to-group anyuid system:serviceaccounts:<namespace> oc adm policy add-scc-to-user privileged -z pdso-data-service -n <namespace>helmfile sync -n <namespace>kubectl get pods,svc -n <namespace>https://<applicationFqdn>
Last updated
Was this helpful?

