This is an automated email from the ASF dual-hosted git repository. gongchao pushed a commit to branch helm-chart in repository https://gitbox.apache.org/repos/asf/hertzbeat-helm-chart.git
commit e879bd8706b72007c60c4e225959e715f5f7399d Author: tomsun28 <[email protected]> AuthorDate: Wed Apr 10 10:02:20 2024 +0800 [improve] initial license clean up (#1725) --- hertzbeat/Chart.yaml | 17 +++++++++++++++++ hertzbeat/templates/collector/configmap.yaml | 17 +++++++++++++++++ hertzbeat/templates/collector/deployment.yaml | 17 +++++++++++++++++ hertzbeat/templates/collector/hpa.yaml | 17 +++++++++++++++++ hertzbeat/templates/database/configmap.yaml | 17 +++++++++++++++++ hertzbeat/templates/database/pvc.yaml | 17 +++++++++++++++++ hertzbeat/templates/database/service.yaml | 17 +++++++++++++++++ hertzbeat/templates/database/statefulset.yaml | 17 +++++++++++++++++ hertzbeat/templates/manager/configmap.yaml | 17 +++++++++++++++++ hertzbeat/templates/manager/deployment.yaml | 17 +++++++++++++++++ hertzbeat/templates/manager/ingress.yaml | 17 +++++++++++++++++ hertzbeat/templates/manager/service-cluster.yaml | 17 +++++++++++++++++ hertzbeat/templates/manager/service-expose.yaml | 17 +++++++++++++++++ hertzbeat/templates/tsdb/configmap.yaml | 17 +++++++++++++++++ hertzbeat/templates/tsdb/pvc.yaml | 17 +++++++++++++++++ hertzbeat/templates/tsdb/service.yaml | 17 +++++++++++++++++ hertzbeat/templates/tsdb/statefulset.yaml | 17 +++++++++++++++++ hertzbeat/values.yaml | 17 +++++++++++++++++ 18 files changed, 306 insertions(+) diff --git a/hertzbeat/Chart.yaml b/hertzbeat/Chart.yaml index 1aaeea4..dbee0de 100644 --- a/hertzbeat/Chart.yaml +++ b/hertzbeat/Chart.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v2 name: hertzbeat description: An open-source, real-time monitoring system with custom monitoring, high performance cluster and agentless capabilities. diff --git a/hertzbeat/templates/collector/configmap.yaml b/hertzbeat/templates/collector/configmap.yaml index 42d20b7..2180fb8 100644 --- a/hertzbeat/templates/collector/configmap.yaml +++ b/hertzbeat/templates/collector/configmap.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v1 kind: ConfigMap metadata: diff --git a/hertzbeat/templates/collector/deployment.yaml b/hertzbeat/templates/collector/deployment.yaml index 5b1de1c..98954b7 100644 --- a/hertzbeat/templates/collector/deployment.yaml +++ b/hertzbeat/templates/collector/deployment.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: apps/v1 kind: Deployment metadata: diff --git a/hertzbeat/templates/collector/hpa.yaml b/hertzbeat/templates/collector/hpa.yaml index 6a4457c..ee82be3 100644 --- a/hertzbeat/templates/collector/hpa.yaml +++ b/hertzbeat/templates/collector/hpa.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + {{- if .Values.collector.autoscaling.enabled }} apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutoscaler diff --git a/hertzbeat/templates/database/configmap.yaml b/hertzbeat/templates/database/configmap.yaml index edbc03a..2f80a89 100644 --- a/hertzbeat/templates/database/configmap.yaml +++ b/hertzbeat/templates/database/configmap.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v1 kind: ConfigMap metadata: diff --git a/hertzbeat/templates/database/pvc.yaml b/hertzbeat/templates/database/pvc.yaml index 279fd27..69f6ad4 100644 --- a/hertzbeat/templates/database/pvc.yaml +++ b/hertzbeat/templates/database/pvc.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + {{- if .Values.database.persistence.enabled }} kind: PersistentVolumeClaim apiVersion: v1 diff --git a/hertzbeat/templates/database/service.yaml b/hertzbeat/templates/database/service.yaml index 946049b..589fd21 100644 --- a/hertzbeat/templates/database/service.yaml +++ b/hertzbeat/templates/database/service.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v1 kind: Service metadata: diff --git a/hertzbeat/templates/database/statefulset.yaml b/hertzbeat/templates/database/statefulset.yaml index ea97e6c..181af83 100644 --- a/hertzbeat/templates/database/statefulset.yaml +++ b/hertzbeat/templates/database/statefulset.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: apps/v1 kind: StatefulSet metadata: diff --git a/hertzbeat/templates/manager/configmap.yaml b/hertzbeat/templates/manager/configmap.yaml index 623e312..27ab8ad 100644 --- a/hertzbeat/templates/manager/configmap.yaml +++ b/hertzbeat/templates/manager/configmap.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v1 kind: ConfigMap metadata: diff --git a/hertzbeat/templates/manager/deployment.yaml b/hertzbeat/templates/manager/deployment.yaml index fe966bb..77fd44b 100644 --- a/hertzbeat/templates/manager/deployment.yaml +++ b/hertzbeat/templates/manager/deployment.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: apps/v1 kind: Deployment metadata: diff --git a/hertzbeat/templates/manager/ingress.yaml b/hertzbeat/templates/manager/ingress.yaml index 3d886f5..dc83b31 100644 --- a/hertzbeat/templates/manager/ingress.yaml +++ b/hertzbeat/templates/manager/ingress.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + {{- if .Values.expose.ingress.enabled }} apiVersion: networking.k8s.io/v1 kind: Ingress diff --git a/hertzbeat/templates/manager/service-cluster.yaml b/hertzbeat/templates/manager/service-cluster.yaml index c52298b..2262cb6 100644 --- a/hertzbeat/templates/manager/service-cluster.yaml +++ b/hertzbeat/templates/manager/service-cluster.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v1 kind: Service metadata: diff --git a/hertzbeat/templates/manager/service-expose.yaml b/hertzbeat/templates/manager/service-expose.yaml index f99160a..6da1901 100644 --- a/hertzbeat/templates/manager/service-expose.yaml +++ b/hertzbeat/templates/manager/service-expose.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + {{- if or (eq .Values.expose.type "ClusterIP") (eq .Values.expose.type "NodePort") (eq .Values.expose.type "LoadBalancer") (eq .Values.expose.type "Ingress") }} apiVersion: v1 kind: Service diff --git a/hertzbeat/templates/tsdb/configmap.yaml b/hertzbeat/templates/tsdb/configmap.yaml index af0ee8c..a8263dd 100644 --- a/hertzbeat/templates/tsdb/configmap.yaml +++ b/hertzbeat/templates/tsdb/configmap.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v1 kind: ConfigMap metadata: diff --git a/hertzbeat/templates/tsdb/pvc.yaml b/hertzbeat/templates/tsdb/pvc.yaml index 0115090..4096151 100644 --- a/hertzbeat/templates/tsdb/pvc.yaml +++ b/hertzbeat/templates/tsdb/pvc.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + {{- if .Values.tsdb.persistence.enabled }} kind: PersistentVolumeClaim apiVersion: v1 diff --git a/hertzbeat/templates/tsdb/service.yaml b/hertzbeat/templates/tsdb/service.yaml index 9cb1995..44f992f 100644 --- a/hertzbeat/templates/tsdb/service.yaml +++ b/hertzbeat/templates/tsdb/service.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: v1 kind: Service metadata: diff --git a/hertzbeat/templates/tsdb/statefulset.yaml b/hertzbeat/templates/tsdb/statefulset.yaml index 36add18..891ada9 100644 --- a/hertzbeat/templates/tsdb/statefulset.yaml +++ b/hertzbeat/templates/tsdb/statefulset.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + apiVersion: apps/v1 kind: StatefulSet metadata: diff --git a/hertzbeat/values.yaml b/hertzbeat/values.yaml index ab6e467..f778817 100644 --- a/hertzbeat/values.yaml +++ b/hertzbeat/values.yaml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + # Default values for hertzbeat. manager: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
