Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(tdp_vars_defaults): changes in order tu use phoenix via knox #894

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tdp_vars_defaults/hbase/hbase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ phoenix_queryserver_hbase_site:
phoenix.queryserver.tls.keystore.password: "{{ hbase_keystore_password }}"
phoenix.queryserver.tls.truststore: "{{ hbase_truststore_location }}"
phoenix.queryserver.tls.truststore.password: "{{ hbase_truststore_password }}"
phoenix.queryserver.withRemoteUserExtractor: "true"
#This parameter below must not be changed
phoenix.queryserver.remoteUserExtractor.param: "doAs"
rpignolet marked this conversation as resolved.
Show resolved Hide resolved

phoenix_queryserver_properties: "{{ hbase_site | combine(phoenix_queryserver_hbase_site) }}"

Expand Down
3 changes: 3 additions & 0 deletions tdp_vars_defaults/knox/knox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ tdpldap_services:
LIVYSERVER3:
hosts: "{% if groups['livy_spark3_server'] is defined %}{{ groups['livy_spark3_server'] | default([]) | map('tosit.tdp.access_fqdn', hostvars) | list }}{% else %}{% endif %}"
port: "8999"
AVATICA:
hosts: "{% if groups['phoenix_queryserver_daemon'] is defined %}{{ groups['phoenix_queryserver_daemon'] | default([]) | map('tosit.tdp.access_fqdn', hostvars) | list }}{% else %}{% endif %}"
port: "{{ phoenix_queryserver_http_port }}"

# Service start on boot policies
knox_start_on_boot: no
Expand Down
Loading