Enabling Legacy Query Engine
The query engine is no longer installed by default. This guide demonstrates how to enable the query engine using the Immuta Enterprise Helm chart (IEHC).
If you are using any of the legacy data platforms, you must enable the query engine.
Prerequisites
The Immuta in production guide must be completed before proceeding.
Validate that secret
immuta-secretexists in the current namespace.kubectl get secret/immuta-secret
Create Kubernetes secret
Create a file named
secret-data.envwith the following content.# query-engine IMMUTA_FEATURE_PASSWORD=<immuta-feature-password> PATRONI_SUPERUSER_PASSWORD=<patroni-superuser-password> PATRONI_REPLICATION_PASSWORD=<patroni-replication-password> PATRONI_RESTAPI_PASSWORD=<patroni-api-password>Create secret named
immuta-legacy-secretfrom filesecret-data.envkubectl create secret generic immuta-legacy-secret --from-env-file=secret-data.envDelete file
secret-data.env, as it's no longer needed.rm -i secret-data.env
Edit Helm values
Edit the
immuta-values.yamlfile to include the following Helm values.Update all placeholder values in the
immuta-values.yamlfile.
Avoid these special characters in generated passwords
whitespace, $, &, :, \, /, '
Apply Helm values
Perform a Helm upgrade to apply the changes made to immuta-values.yaml.
Last updated

