From f14a6619a783433aa9badc69ff1588f1b2a6ab61 Mon Sep 17 00:00:00 2001 From: HighPon Date: Tue, 7 Jan 2025 13:49:07 +0000 Subject: [PATCH] fix: update license --- .../dockers-index-exportation-image.yaml | 2 +- cmd/index/job/exportation/main.go | 2 +- cmd/index/job/exportation/sample.yaml | 2 +- dockers/index/job/exportation/Dockerfile | 4 ++-- internal/config/index_exporter.go | 2 +- k8s/index/job/exportation/cronjob.yaml | 2 +- k8s/index/job/exportation/pvc.yaml | 15 +++++++++++++++ pkg/index/job/exportation/config/config.go | 2 +- pkg/index/job/exportation/service/exporter.go | 2 +- pkg/index/job/exportation/service/options.go | 2 +- pkg/index/job/exportation/usecase/exportation.go | 2 +- 11 files changed, 26 insertions(+), 11 deletions(-) diff --git a/.github/workflows/dockers-index-exportation-image.yaml b/.github/workflows/dockers-index-exportation-image.yaml index e1562edd70..5e85d2bae8 100644 --- a/.github/workflows/dockers-index-exportation-image.yaml +++ b/.github/workflows/dockers-index-exportation-image.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2024 vdaas.org vald team +# Copyright (C) 2019-2025 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/cmd/index/job/exportation/main.go b/cmd/index/job/exportation/main.go index 8c16dd224b..c7493321ca 100644 --- a/cmd/index/job/exportation/main.go +++ b/cmd/index/job/exportation/main.go @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2024 vdaas.org vald team +// Copyright (C) 2019-2025 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. diff --git a/cmd/index/job/exportation/sample.yaml b/cmd/index/job/exportation/sample.yaml index 4ed586d02f..c397e4b710 100644 --- a/cmd/index/job/exportation/sample.yaml +++ b/cmd/index/job/exportation/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2024 vdaas.org vald team +# Copyright (C) 2019-2025 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/dockers/index/job/exportation/Dockerfile b/dockers/index/job/exportation/Dockerfile index d329680172..2ff5f582a6 100644 --- a/dockers/index/job/exportation/Dockerfile +++ b/dockers/index/job/exportation/Dockerfile @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:latest # check=error=true # -# Copyright (C) 2019-2024 vdaas.org vald team +# Copyright (C) 2019-2025 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. @@ -86,4 +86,4 @@ COPY --from=builder /usr/bin/index-exportation /usr/bin/index-exportation COPY cmd/index/job/exportation/sample.yaml /etc/server/config.yaml # skipcq: DOK-DL3002 USER nonroot:nonroot -ENTRYPOINT ["/usr/bin/index-exportation"] \ No newline at end of file +ENTRYPOINT ["/usr/bin/index-exportation"] diff --git a/internal/config/index_exporter.go b/internal/config/index_exporter.go index f2f9e3303f..5065392df1 100644 --- a/internal/config/index_exporter.go +++ b/internal/config/index_exporter.go @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2024 vdaas.org vald team +// Copyright (C) 2019-2025 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. diff --git a/k8s/index/job/exportation/cronjob.yaml b/k8s/index/job/exportation/cronjob.yaml index 72415bcfdf..ec93b16074 100644 --- a/k8s/index/job/exportation/cronjob.yaml +++ b/k8s/index/job/exportation/cronjob.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2024 vdaas.org vald team +# Copyright (C) 2019-2025 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/k8s/index/job/exportation/pvc.yaml b/k8s/index/job/exportation/pvc.yaml index 474aebc6de..36d0c0918e 100644 --- a/k8s/index/job/exportation/pvc.yaml +++ b/k8s/index/job/exportation/pvc.yaml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2025 vdaas.org vald team +# +# 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 +# +# 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: PersistentVolumeClaim metadata: diff --git a/pkg/index/job/exportation/config/config.go b/pkg/index/job/exportation/config/config.go index 00c864822e..062b3592ee 100644 --- a/pkg/index/job/exportation/config/config.go +++ b/pkg/index/job/exportation/config/config.go @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2024 vdaas.org vald team +// Copyright (C) 2019-2025 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. diff --git a/pkg/index/job/exportation/service/exporter.go b/pkg/index/job/exportation/service/exporter.go index 749bd35367..b442c60723 100644 --- a/pkg/index/job/exportation/service/exporter.go +++ b/pkg/index/job/exportation/service/exporter.go @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2024 vdaas.org vald team +// Copyright (C) 2019-2025 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. diff --git a/pkg/index/job/exportation/service/options.go b/pkg/index/job/exportation/service/options.go index 6d4a5889af..7ac8b08b02 100644 --- a/pkg/index/job/exportation/service/options.go +++ b/pkg/index/job/exportation/service/options.go @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2024 vdaas.org vald team +// Copyright (C) 2019-2025 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. diff --git a/pkg/index/job/exportation/usecase/exportation.go b/pkg/index/job/exportation/usecase/exportation.go index 488244ca5d..ee2b764c00 100644 --- a/pkg/index/job/exportation/usecase/exportation.go +++ b/pkg/index/job/exportation/usecase/exportation.go @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2024 vdaas.org vald team +// Copyright (C) 2019-2025 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License.