Skip to content
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,10 @@ spec:
# Qubership custom change: Qubership Custom volume mounts to support ReadOnlyRootFS
- name: tmp
mountPath: /tmp
- name: hue-logs
mountPath: /usr/share/hue/logs
- name: hadoop-conf
mountPath: /etc/hadoop/conf
# Qubership custom change: Qubership Custom volume mounts for Qubership Hue from cert-manager secrets and extra user-defined mounts via Helm values
{{- if .Values.certManagerInegration.enabled }}
{{- range .Values.certManagerInegration.secretMounts }}
Expand Down Expand Up @@ -511,6 +515,10 @@ spec:
# Qubership custom change: Qubership Custom volume mounts to support ReadOnlyRootFS
- name: tmp
emptyDir: {}
- name: hue-logs
emptyDir: {}
- name: hadoop-conf
emptyDir: {}
# Qubership custom change: Qubership custom volumes for config files, cert-manager secrets, and conditional integrations (Kerberos, SSL, LDAP) using Helm values
{{- if .Values.certManagerInegration.enabled }}
- name: {{.Values.certManagerInegration.secretName }}-volume
Expand Down
8 changes: 8 additions & 0 deletions chart/helm/hue/templates/hue/deployment-hue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ spec:
# Qubership custom change: Qubership Custom volume mounts to support ReadOnlyRootFS
- name: tmp
mountPath: /tmp
- name: hue-logs
mountPath: /usr/share/hue/logs
- name: hadoop-conf
mountPath: /etc/hadoop/conf
# Qubership custom change: Qubership Custom volume mounts for Hue from cert-manager secrets and extra user-defined mounts via Helm values
{{- if .Values.certManagerInegration.enabled }}
{{- range .Values.certManagerInegration.secretMounts }}
Expand Down Expand Up @@ -181,6 +185,10 @@ spec:
# Qubership custom change: Qubership Custom volume mounts to support ReadOnlyRootFS
- name: tmp
emptyDir: {}
- name: hue-logs
emptyDir: {}
- name: hadoop-conf
emptyDir: {}
# Qubership custom change: Qubership custom volumes for config files, cert-manager secrets, and conditional integrations (Kerberos, SSL, LDAP) using Helm values
{{- if .Values.certManagerInegration.enabled }}
- name: {{.Values.certManagerInegration.secretName }}-volume
Expand Down
2 changes: 1 addition & 1 deletion hue_docker/get_hive_conf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ AMBARIVariablesArray=(
done

echo "Start hadoop conf creation"
export TMP_HCC=~/tmp_hadoop_conf_creation
export TMP_HCC=/tmp/tmp_hadoop_conf_creation
rm -rf $TMP_HCC
mkdir $TMP_HCC

Expand Down
Loading