Skip to content

Commit

Permalink
Merge pull request #20 from alisihab/configmap-unconditional
Browse files Browse the repository at this point in the history
Remove conditionals in configmap
  • Loading branch information
jjansenvr authored Aug 2, 2024
2 parents 1232a05 + 5fe3a60 commit 11da28f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion charts/drill/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: drill
version: 1.3.3
version: 1.3.4
appVersion: 1.21.1
description: Helm Charts for deploying Apache Drill Clusters on Kubernetes
icon: https://raw.githubusercontent.com/wearefrank/charts/master/charts/drill/icon.svg
Expand Down
4 changes: 0 additions & 4 deletions charts/drill/templates/configmap.override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ metadata:
labels:
{{- include "drill.labels" . | nindent 4 }}
data:
{{- if (not .Values.drill.overrideConfiguration.existingConfigMap) -}}
drill-override.conf: |-
drill.exec: {
cluster-id: "{{ include "drill.fullname" . }}",
zk.connect: "{{ include "zookeeper.fullname" . }}:2181",
http.port: 8047
}
{{- toString .Values.drill.overrideConfiguration.drill | nindent 4 }}
{{- end -}}
{{- with .Values.drill.overrideConfiguration.drillMetastore }}
drill-metastore-override.conf: |-
{{- toString . | nindent 4 }}
Expand All @@ -33,7 +31,6 @@ data:
storage-plugins-override.conf: |-
{{- toString . | nindent 4 }}
{{- end }}
{{- if .Values.drill.overrideLogging.enabled -}}
logback.xml: |-
<configuration>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
Expand Down Expand Up @@ -61,4 +58,3 @@ data:
<logger name="{{ .name }}" level="{{ .level | default "trace" }}"/>
{{- end }}
</configuration>
{{- end -}}

0 comments on commit 11da28f

Please sign in to comment.