This is an automated email from the ASF dual-hosted git repository.

zhongxjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-kubernetes.git


The following commit(s) were added to refs/heads/master by this push:
     new 498b3716 [chore] add license check (#661)
498b3716 is described below

commit 498b3716cebc0ec96701d443e86822509b09130a
Author: Jian Zhong <[email protected]>
AuthorDate: Fri Mar 28 07:55:59 2025 +0800

    [chore] add license check (#661)
---
 dubboctl/pkg/sdk/tpl/default/go/common/cmd/app.go       | 17 +++++++++++++++++
 .../pkg/sdk/tpl/default/go/common/conf/dubbogo.yaml     | 15 +++++++++++++++
 dubboctl/pkg/sdk/tpl/default/go/common/go.mod           | 15 +++++++++++++++
 dubboctl/pkg/sdk/tpl/default/java/common/pom.xml        | 16 ++++++++++++++++
 .../src/main/java/com/example/demo/DemoApplication.java | 17 +++++++++++++++++
 .../com/example/demo/demos/web/BasicController.java     | 13 +++++++------
 .../example/demo/demos/web/PathVariableController.java  | 13 +++++++------
 .../src/main/java/com/example/demo/demos/web/User.java  | 13 +++++++------
 .../java/com/example/demo/dubbo/api/DemoService.java    | 17 +++++++++++++++++
 .../java/com/example/demo/dubbo/consumer/Consumer.java  | 17 +++++++++++++++++
 .../com/example/demo/dubbo/service/DemoServiceImpl.java | 17 +++++++++++++++++
 .../admin/charts/kube-prometheus-stack/Chart.lock       | 15 +++++++++++++++
 .../admin/charts/kube-prometheus-stack/Chart.yaml       | 15 +++++++++++++++
 .../charts/kube-prometheus-stack/charts/crds/Chart.yaml | 15 +++++++++++++++
 .../charts/crds/crds/crd-alertmanagerconfigs.yaml       | 15 +++++++++++++++
 .../charts/crds/crds/crd-alertmanagers.yaml             | 15 +++++++++++++++
 .../charts/crds/crds/crd-podmonitors.yaml               | 15 +++++++++++++++
 .../charts/crds/crds/crd-probes.yaml                    | 15 +++++++++++++++
 .../charts/crds/crds/crd-prometheusagents.yaml          | 15 +++++++++++++++
 .../charts/crds/crds/crd-prometheuses.yaml              | 15 +++++++++++++++
 .../charts/crds/crds/crd-prometheusrules.yaml           | 15 +++++++++++++++
 .../charts/crds/crds/crd-scrapeconfigs.yaml             | 15 +++++++++++++++
 .../charts/crds/crds/crd-servicemonitors.yaml           | 15 +++++++++++++++
 .../charts/crds/crds/crd-thanosrulers.yaml              | 15 +++++++++++++++
 .../kube-prometheus-stack/charts/crds/values.yaml       | 15 +++++++++++++++
 .../kube-prometheus-stack/charts/grafana/Chart.yaml     | 15 +++++++++++++++
 .../charts/grafana/ci/default-values.yaml               | 15 +++++++++++++++
 .../charts/grafana/ci/with-affinity-values.yaml         | 15 +++++++++++++++
 .../charts/grafana/ci/with-dashboard-json-values.yaml   | 15 +++++++++++++++
 .../charts/grafana/ci/with-dashboard-values.yaml        | 15 +++++++++++++++
 .../grafana/ci/with-extraconfigmapmounts-values.yaml    | 15 +++++++++++++++
 .../charts/grafana/ci/with-image-renderer-values.yaml   | 15 +++++++++++++++
 .../charts/grafana/ci/with-nondefault-values.yaml       | 15 +++++++++++++++
 .../charts/grafana/ci/with-persistence.yaml             | 15 +++++++++++++++
 .../grafana/ci/with-sidecars-envvaluefrom-values.yaml   | 15 +++++++++++++++
 .../kube-prometheus-stack/charts/grafana/values.yaml    | 15 +++++++++++++++
 .../charts/kube-state-metrics/Chart.yaml                | 15 +++++++++++++++
 .../charts/kube-state-metrics/values.yaml               | 15 +++++++++++++++
 .../charts/prometheus-node-exporter/Chart.yaml          | 15 +++++++++++++++
 .../charts/prometheus-node-exporter/values.yaml         | 15 +++++++++++++++
 .../charts/prometheus-windows-exporter/Chart.yaml       | 15 +++++++++++++++
 .../charts/prometheus-windows-exporter/values.yaml      | 15 +++++++++++++++
 .../admin/charts/kube-prometheus-stack/values.yaml      | 15 +++++++++++++++
 pkg/art/art.go                                          | 17 +++++++++++++++++
 pkg/config/validation/agent/validation.go               | 17 +++++++++++++++++
 pkg/config/validation/validation.go                     | 17 +++++++++++++++++
 pkg/version/cobra.go                                    | 17 +++++++++++++++++
 47 files changed, 700 insertions(+), 18 deletions(-)

diff --git a/dubboctl/pkg/sdk/tpl/default/go/common/cmd/app.go 
b/dubboctl/pkg/sdk/tpl/default/go/common/cmd/app.go
index 5294e24c..71876341 100644
--- a/dubboctl/pkg/sdk/tpl/default/go/common/cmd/app.go
+++ b/dubboctl/pkg/sdk/tpl/default/go/common/cmd/app.go
@@ -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.
+ */
+
 package main
 
 import (
diff --git a/dubboctl/pkg/sdk/tpl/default/go/common/conf/dubbogo.yaml 
b/dubboctl/pkg/sdk/tpl/default/go/common/conf/dubbogo.yaml
index 0bca0bd4..2463de66 100644
--- a/dubboctl/pkg/sdk/tpl/default/go/common/conf/dubbogo.yaml
+++ b/dubboctl/pkg/sdk/tpl/default/go/common/conf/dubbogo.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 dubbo:
   registries:
     nacos:
diff --git a/dubboctl/pkg/sdk/tpl/default/go/common/go.mod 
b/dubboctl/pkg/sdk/tpl/default/go/common/go.mod
index f099388e..57d679b5 100644
--- a/dubboctl/pkg/sdk/tpl/default/go/common/go.mod
+++ b/dubboctl/pkg/sdk/tpl/default/go/common/go.mod
@@ -1,3 +1,18 @@
+// 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.
+
 module dubbo-go-app
 
 go 1.17
diff --git a/dubboctl/pkg/sdk/tpl/default/java/common/pom.xml 
b/dubboctl/pkg/sdk/tpl/default/java/common/pom.xml
index a416ba10..47a555be 100644
--- a/dubboctl/pkg/sdk/tpl/default/java/common/pom.xml
+++ b/dubboctl/pkg/sdk/tpl/default/java/common/pom.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
diff --git 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/DemoApplication.java
 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/DemoApplication.java
index e6c25c18..fb3f112f 100644
--- 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/DemoApplication.java
+++ 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/DemoApplication.java
@@ -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.
+ */
+
 package com.example.demo;
 
 import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
diff --git 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
index e0d9d6d0..1ceabb6e 100644
--- 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
+++ 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
@@ -1,11 +1,12 @@
 /*
- * Copyright 2013-2018 the original author or authors.
+ * 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
  *
- * Licensed 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
- *
- *      https://www.apache.org/licenses/LICENSE-2.0
+ *     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,
diff --git 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
index adad5af3..8af01e15 100644
--- 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
+++ 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
@@ -1,11 +1,12 @@
 /*
- * Copyright 2013-2018 the original author or authors.
+ * 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
  *
- * Licensed 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
- *
- *      https://www.apache.org/licenses/LICENSE-2.0
+ *     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,
diff --git 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/User.java
 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/User.java
index f1808461..f79a03b9 100644
--- 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/User.java
+++ 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/demos/web/User.java
@@ -1,11 +1,12 @@
 /*
- * Copyright 2013-2018 the original author or authors.
+ * 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
  *
- * Licensed 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
- *
- *      https://www.apache.org/licenses/LICENSE-2.0
+ *     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,
diff --git 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
index 906a51bd..fbcce57a 100644
--- 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
+++ 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
@@ -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.
+ */
+
 package com.example.demo.dubbo.api;
 
 public interface DemoService {
diff --git 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
index a2373a9e..b45c5a67 100644
--- 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
+++ 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
@@ -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.
+ */
+
 package com.example.demo.dubbo.consumer;
 
 import com.example.demo.dubbo.api.DemoService;
diff --git 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
index 65ef3c7d..8f7b5fb6 100644
--- 
a/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
+++ 
b/dubboctl/pkg/sdk/tpl/default/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
@@ -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.
+ */
+
 package com.example.demo.dubbo.service;
 
 import com.example.demo.dubbo.api.DemoService;
diff --git a/manifests/charts/admin/charts/kube-prometheus-stack/Chart.lock 
b/manifests/charts/admin/charts/kube-prometheus-stack/Chart.lock
index b84783c4..689c48bc 100644
--- a/manifests/charts/admin/charts/kube-prometheus-stack/Chart.lock
+++ b/manifests/charts/admin/charts/kube-prometheus-stack/Chart.lock
@@ -1,3 +1,18 @@
+# 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.
+
 dependencies:
 - name: crds
   repository: ""
diff --git a/manifests/charts/admin/charts/kube-prometheus-stack/Chart.yaml 
b/manifests/charts/admin/charts/kube-prometheus-stack/Chart.yaml
index f1326c02..47c2c636 100644
--- a/manifests/charts/admin/charts/kube-prometheus-stack/Chart.yaml
+++ b/manifests/charts/admin/charts/kube-prometheus-stack/Chart.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 annotations:
   artifacthub.io/license: Apache-2.0
   artifacthub.io/links: |
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/Chart.yaml 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/Chart.yaml
index adb9e4a5..9b563e62 100644
--- a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/Chart.yaml
+++ b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/Chart.yaml
@@ -1,3 +1,18 @@
+# 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: crds
 version: 0.0.0
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagerconfigs.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagerconfigs.yaml
index 957961d1..0fda9ddd 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagerconfigs.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagerconfigs.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagerconfigs.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagers.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagers.yaml
index 607211cf..546edefe 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagers.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagers.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagers.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-podmonitors.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-podmonitors.yaml
index 1a44bf8e..9eec9070 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-podmonitors.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-podmonitors.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_podmonitors.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml
index 98b824d3..894b9aa4 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_probes.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusagents.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusagents.yaml
index d3b87423..46c4cab2 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusagents.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusagents.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheusagents.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheuses.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheuses.yaml
index 3e7aa439..4c63896a 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheuses.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheuses.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheuses.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusrules.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusrules.yaml
index 2d5b1d4a..97e06377 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusrules.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusrules.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheusrules.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-scrapeconfigs.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-scrapeconfigs.yaml
index 985c806e..e9a944c5 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-scrapeconfigs.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-scrapeconfigs.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_scrapeconfigs.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-servicemonitors.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-servicemonitors.yaml
index e34a00bc..ead7bb8d 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-servicemonitors.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-servicemonitors.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_servicemonitors.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-thanosrulers.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-thanosrulers.yaml
index d3016fd1..24911184 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-thanosrulers.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/crds/crd-thanosrulers.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.81.0/example/prometheus-operator-crd/monitoring.coreos.com_thanosrulers.yaml
 ---
 apiVersion: apiextensions.k8s.io/v1
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/values.yaml 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/values.yaml
index 6de4baae..969d1d2e 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/crds/values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 ## Check out kube-prometheus-stack/values.yaml for more information
 ## on this parameter
 upgradeJob:
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/Chart.yaml 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/Chart.yaml
index f19407b0..df194e12 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/Chart.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/Chart.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 annotations:
   artifacthub.io/license: Apache-2.0
   artifacthub.io/links: |
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml
index fc2ba605..59dd5f99 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml
@@ -1 +1,16 @@
+# 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.
+
 # Leave this file empty to ensure that CI runs builds against the default 
configuration in values.yaml.
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml
index f5b9b53e..78258790 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 affinity:
   podAntiAffinity:
     preferredDuringSchedulingIgnoredDuringExecution:
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml
index e0c4e416..6faaa144 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 dashboards:
   my-provider:
     my-awesome-dashboard:
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml
index 7b662c5f..928305d0 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 dashboards:
   my-provider:
     my-awesome-dashboard:
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml
index 5cc44a05..77e7e743 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 extraConfigmapMounts:
   - name: '{{ include "grafana.fullname" . }}'
     configMap: '{{ include "grafana.fullname" . }}'
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml
index 06c0bda1..fecd12ff 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 podLabels:
   customLableA: Aaaaa
 imageRenderer:
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-nondefault-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-nondefault-values.yaml
index 48484895..a083bb71 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-nondefault-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-nondefault-values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 global:
   environment: prod
 ingress:
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml
index b92ca02c..ecc83b82 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 persistence:
   type: pvc
   enabled: true
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-sidecars-envvaluefrom-values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-sidecars-envvaluefrom-values.yaml
index a6935e56..7875b755 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-sidecars-envvaluefrom-values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/ci/with-sidecars-envvaluefrom-values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 extraObjects:
   - apiVersion: v1
     kind: ConfigMap
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/values.yaml
index 035c3cd2..e2c17c54 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/grafana/values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 global:
   # -- Overrides the Docker registry globally for all images
   imageRegistry: null
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml
index cb98805b..be194703 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 annotations:
   artifacthub.io/license: Apache-2.0
   artifacthub.io/links: |
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml
index 49571fbc..a4dbc35b 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml
@@ -1,3 +1,18 @@
+# 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 kube-state-metrics.
 prometheusScrape: true
 image:
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml
index 3cb29d11..d350cadc 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 annotations:
   artifacthub.io/license: Apache-2.0
   artifacthub.io/links: |
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml
index 499190cd..73f6169c 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml
@@ -1,3 +1,18 @@
+# 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 prometheus-node-exporter.
 # This is a YAML-formatted file.
 # Declare variables to be passed into your templates.
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml
index 0a688ad4..c9101ccc 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml
@@ -1,3 +1,18 @@
+# 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
 appVersion: 0.30.5
 description: A Helm chart for prometheus windows-exporter
diff --git 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml
 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml
index 6035cca7..7de4a73c 100644
--- 
a/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml
+++ 
b/manifests/charts/admin/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml
@@ -1,3 +1,18 @@
+# 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 prometheus-windows-exporter.
 # This is a YAML-formatted file.
 # Declare variables to be passed into your templates.
diff --git a/manifests/charts/admin/charts/kube-prometheus-stack/values.yaml 
b/manifests/charts/admin/charts/kube-prometheus-stack/values.yaml
index 7ba85476..4c1b1b17 100644
--- a/manifests/charts/admin/charts/kube-prometheus-stack/values.yaml
+++ b/manifests/charts/admin/charts/kube-prometheus-stack/values.yaml
@@ -1,3 +1,18 @@
+# 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.
+
 # Whether to enable kube-prometheus-stack.
 enabled: false
 
diff --git a/pkg/art/art.go b/pkg/art/art.go
index 23734efd..8ca16710 100644
--- a/pkg/art/art.go
+++ b/pkg/art/art.go
@@ -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.
+ */
+
 package art
 
 import (
diff --git a/pkg/config/validation/agent/validation.go 
b/pkg/config/validation/agent/validation.go
index da14d234..18787e42 100644
--- a/pkg/config/validation/agent/validation.go
+++ b/pkg/config/validation/agent/validation.go
@@ -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.
+ */
+
 package agent
 
 type Warning error
diff --git a/pkg/config/validation/validation.go 
b/pkg/config/validation/validation.go
index 2528e02d..2aba93ca 100644
--- a/pkg/config/validation/validation.go
+++ b/pkg/config/validation/validation.go
@@ -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.
+ */
+
 package validation
 
 import "github.com/apache/dubbo-kubernetes/pkg/config/validation/agent"
diff --git a/pkg/version/cobra.go b/pkg/version/cobra.go
index 8e7e36aa..dccc244f 100644
--- a/pkg/version/cobra.go
+++ b/pkg/version/cobra.go
@@ -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.
+ */
+
 package version
 
 import (

Reply via email to