Skip to content

Commit 2e5f1e1

Browse files
Merge branch 'apache:master' into master
2 parents cd673d0 + 31bbb53 commit 2e5f1e1

72 files changed

Lines changed: 2645 additions & 254 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/license.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
distribution: temurin
4242
java-version: 8
4343
cache: 'maven'
44-
- run: >-
45-
build/mvn org.apache.rat:apache-rat-plugin:check
46-
-Ptpcds -Pkubernetes-it
47-
-Pspark-3.3 -Pspark-3.4 -Pspark-3.5
44+
- run: |
45+
build/mvn org.apache.rat:apache-rat-plugin:check \
46+
-Ptpcds -Pkubernetes-it \
47+
-Pspark-3.3 -Pspark-3.4 -Pspark-3.5 -Pspark-4.0
4848
- name: Upload rat report
4949
if: failure()
5050
uses: actions/upload-artifact@v4

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
comment: 'verify-on-spark-3.4-binary'
7878
- java: 17
7979
spark: '3.5'
80-
spark-archive: '-Pscala-2.13 -Dspark.archive.mirror=https://archive.apache.org/dist/spark/spark-4.0.0-preview2 -Dspark.archive.name=spark-4.0.0-preview2-bin-hadoop3.tgz'
80+
spark-archive: '-Pscala-2.13 -Dspark.archive.mirror=https://archive.apache.org/dist/spark/spark-4.0.0 -Dspark.archive.name=spark-4.0.0-bin-hadoop3.tgz'
8181
exclude-tags: '-Dmaven.plugin.scalatest.exclude.tags=org.scalatest.tags.Slow,org.apache.kyuubi.tags.DeltaTest,org.apache.kyuubi.tags.IcebergTest,org.apache.kyuubi.tags.PaimonTest,org.apache.kyuubi.tags.SparkLocalClusterTest'
8282
comment: 'verify-on-spark-4.0-binary'
8383
env:

.rat-excludes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ build/scala-*/**
4343
**/metadata-store-schema*.sql
4444
**/*.derby.sql
4545
**/*.mysql.sql
46+
**/*.postgresql.sql
4647
**/*.sqlite.sql
4748
**/node/**
4849
**/web-ui/dist/**

build/release/known_translations

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Wang, Fei - Fei Wang
6363
wangmiao1002 - Miao Wang
6464
waywtdcc - Chao Chen
6565
wForget - Zhen Wang
66+
xglv1985 - Xu Guang Lv
6667
Xieming LI - Xieming Li
6768
XorSum - Baokun Han
6869
yabola - Chenliang Lu

build/release/pre_gen_release_notes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ def is_revert(commit_title):
214214
# e.g. * Fu Chen
215215
contributors_file = open(os.path.join(release_dir, contributors_file_name), "w")
216216
sorted_authors = list(authors)
217-
sorted_authors.sort(key=lambda author: author.split(" ")[-1])
218-
for author in authors:
217+
sorted_authors.sort(key=lambda author: author.split(" ")[0].lower())
218+
for author in sorted_authors:
219219
contributors_file.write("* %s\n" % author)
220220
contributors_file.close()
221221
print("Contributors list is successfully written to %s!" % contributors_file_name)

charts/kyuubi/templates/kyuubi-alert.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ metadata:
2222
name: {{ .Release.Name }}
2323
labels:
2424
{{- include "kyuubi.labels" . | nindent 4 }}
25+
{{- if .Values.metrics.prometheusRule.labels }}
26+
{{- toYaml .Values.metrics.prometheusRule.labels | nindent 4 }}
27+
{{- end }}
2528
spec:
2629
groups:
2730
{{- toYaml .Values.metrics.prometheusRule.groups | nindent 4 }}

charts/kyuubi/templates/kyuubi-headless-service.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ metadata:
2121
name: {{ .Release.Name }}-headless
2222
labels:
2323
{{- include "kyuubi.labels" $ | nindent 4 }}
24+
{{- with .Values.service.headless.annotations }}
25+
annotations:
26+
{{- toYaml . | nindent 4 }}
27+
{{- end }}
2428
spec:
2529
type: ClusterIP
2630
clusterIP: None

charts/kyuubi/templates/kyuubi-podmonitor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ metadata:
2323
labels:
2424
{{- include "kyuubi.labels" . | nindent 4 }}
2525
{{- if .Values.metrics.podMonitor.labels }}
26-
{{- toYaml .Values.metrics.podMonitor.labels | nindent 4 }}
26+
{{- toYaml .Values.metrics.podMonitor.labels | nindent 4 }}
2727
{{- end }}
2828
spec:
2929
selector:

charts/kyuubi/templates/kyuubi-servicemonitor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ metadata:
2323
labels:
2424
{{- include "kyuubi.labels" . | nindent 4 }}
2525
{{- if .Values.metrics.serviceMonitor.labels }}
26-
{{- toYaml .Values.metrics.serviceMonitor.labels | nindent 4 }}
26+
{{- toYaml .Values.metrics.serviceMonitor.labels | nindent 4 }}
2727
{{- end }}
2828
spec:
2929
selector:

charts/kyuubi/templates/kyuubi-statefulset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ spec:
4040
annotations:
4141
checksum/conf: {{ include (print $.Template.BasePath "/kyuubi-configmap.yaml") . | sha256sum }}
4242
checksum/conf-hadoop: {{ include (print $.Template.BasePath "/kyuubi-hadoop-configmap.yaml") . | sha256sum }}
43+
{{- with .Values.podAnnotations }}
44+
{{- toYaml . | nindent 8 }}
45+
{{- end }}
4346
spec:
4447
{{- with .Values.imagePullSecrets }}
4548
imagePullSecrets: {{- toYaml . | nindent 8 }}

0 commit comments

Comments
 (0)