Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit afb5df7

Browse files
committed
correction chart hive
1 parent cb14baa commit afb5df7

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

charts/hive-metastore/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type: application
2525
# This is the chart version. This version number should be incremented each time you make changes
2626
# to the chart and its templates, including the app version.
2727
# Versions are expected to follow Semantic Versioning (https://semver.org/)
28-
version: 1.1.10
28+
version: 1.1.11
2929

3030
# This is the version number of the application being deployed. This version number should be
3131
# incremented each time you make changes to the application. Versions are not expected to

charts/hive-metastore/templates/deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ spec:
4040
{{ if .Values.listener.enabled }}
4141
env:
4242
- name: KAFKA_BROKER_URL
43-
value: {{ .Values.listener.kafka-broker-url }}
43+
value: {{ .Values.listener.kafkaBrokerUrl }}
4444
- name: KAFKA_TOPIC_NAME
45-
value: {{ .Values.listener.kafka-topic-name }}
45+
value: {{ .Values.listener.kafkaTopicName }}
4646
- name: DOMAIN_NAMESPACE
47-
value: {{ .Values.listener.domain-namespace }}
47+
value: {{ .Values.listener.domainNamespace }}
4848
- name: HIVE_AUX_JARS_PATH
49-
value: {{ .Values.listener.jar-path }}
49+
value: {{ .Values.listener.jarPath }}
5050
{{ end }}
5151
readinessProbe:
5252
tcpSocket:

charts/hive-metastore/values.schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,18 +95,18 @@
9595
"type": "boolean",
9696
"default": false
9797
},
98-
"kafka-broker-url": {
98+
"kafkaBrokerUrl": {
9999
"description": "kafka broker url for pushing your hive metastore event",
100100
"type": "string",
101101
"default": "change.me"
102102

103103
},
104-
"kafka-topic-name": {
104+
"kafkaTopicName": {
105105
"description": "kafka topic name for pushing your hive metastore event",
106106
"type": "string",
107107
"default": "changeMe"
108108
},
109-
"domain-namespace": {
109+
"domainNamespace": {
110110
"description": "domain name where your hive metastore is located inside your organization",
111111
"type": "string",
112112
"x-form": {

charts/hive-metastore/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ postgresql:
4949

5050
listener:
5151
enabled: true
52-
class-name: org.pengfei.hive.listener.CustomHiveListener
53-
kafka-broker-url: kafka-0.kafka-headless:9092
54-
kafka-topic-name: hive-meta
55-
domain-namespace: user-pengfei
56-
jar-path: "/opt/hive/lib/hive-listener.jar"
52+
className: org.pengfei.hive.listener.CustomHiveListener
53+
kafkaBrokerUrl: kafka-0.kafka-headless:9092
54+
kafkaTopicName: hive-meta
55+
domainNamespace: user-pengfei
56+
jarPath: "/opt/hive/lib/hive-listener.jar"
5757

5858
readiness:
5959
enabled: "true"

0 commit comments

Comments
 (0)