From 0ada0a392dceea104085532c08c2313d221a324c Mon Sep 17 00:00:00 2001 From: iizitounene Date: Thu, 15 Jan 2026 18:05:36 +0100 Subject: [PATCH] chore: update license headers to The OKDP Authors. --- .github/workflows/ci.yml | 3 +-- .github/workflows/docker-rebuild.yml | 2 +- .github/workflows/release-please.yml | 2 +- .local/application-local.yaml | 16 ++++++++++++++++ CHANGELOG.md | 8 ++++---- Dockerfile | 16 ++++++++++++++++ LICENSE | 2 +- Makefile | 16 ++++++++++++++++ cmd/root.go | 2 +- helm/spark-web-proxy/Chart.yaml | 16 ++++++++++++++++ helm/spark-web-proxy/templates/_helpers.tpl | 16 ++++++++++++++++ helm/spark-web-proxy/templates/configmap.yaml | 16 ++++++++++++++++ helm/spark-web-proxy/templates/deployment.yaml | 16 ++++++++++++++++ helm/spark-web-proxy/templates/hpa.yaml | 16 ++++++++++++++++ helm/spark-web-proxy/templates/ingress.yaml | 16 ++++++++++++++++ helm/spark-web-proxy/templates/rbac.yaml | 16 ++++++++++++++++ helm/spark-web-proxy/templates/service.yaml | 16 ++++++++++++++++ .../templates/serviceaccount.yaml | 16 ++++++++++++++++ .../templates/tests/test-connection.yaml | 16 ++++++++++++++++ helm/spark-web-proxy/values.yaml | 16 ++++++++++++++++ internal/config/config.go | 2 +- internal/config/config_test.go | 2 +- internal/config/testdata/application.yaml | 16 ++++++++++++++++ internal/constants/constants.go | 2 +- internal/controllers/health.go | 2 +- internal/controllers/sparkapps_controller.go | 2 +- internal/controllers/sparkhistory_controller.go | 2 +- internal/controllers/sparkui_controller.go | 2 +- internal/discovery/resolvers.go | 2 +- .../resolvers/k8s/informers/sparkapp_informer.go | 2 +- .../resolvers/rest/client/rest_client.go | 2 +- .../discovery/resolvers/rest/sparkapp_rest.go | 2 +- internal/logging/logging.go | 2 +- internal/model/sparkapp.go | 2 +- internal/model/sparkapp_instance.go | 2 +- internal/model/sparkapp_instance_test.go | 2 +- internal/model/sparkapp_test.go | 2 +- internal/model/types.go | 2 +- internal/security/http_security.go | 2 +- internal/server/server.go | 2 +- internal/spark/default_handler.go | 2 +- internal/spark/incomplete_apps_handler.go | 2 +- internal/spark/proxy/handler.go | 2 +- internal/spark/proxy/proxy.go | 2 +- internal/utils/httputils.go | 2 +- internal/utils/httputils_test.go | 2 +- internal/utils/pod_utils.go | 2 +- internal/utils/sparkutils.go | 2 +- internal/utils/sparkutils_test.go | 2 +- main.go | 2 +- 50 files changed, 278 insertions(+), 39 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49cfd96..d609f8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,5 @@ - # -# Copyright 2025 tosit.io +# Copyright 2025 The OKDP Authors. # # 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/.github/workflows/docker-rebuild.yml b/.github/workflows/docker-rebuild.yml index 1cc14b7..3486ed9 100644 --- a/.github/workflows/docker-rebuild.yml +++ b/.github/workflows/docker-rebuild.yml @@ -1,5 +1,5 @@ # -# Copyright 2025 tosit.io +# Copyright 2025 The OKDP Authors. # # 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/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 46d8c66..9a46cfd 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,5 +1,5 @@ # -# Copyright 2025 tosit.io +# Copyright 2025 The OKDP Authors. # # 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/.local/application-local.yaml b/.local/application-local.yaml index 1ada90e..efd4359 100644 --- a/.local/application-local.yaml +++ b/.local/application-local.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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. +# + proxy: listenAddress: 0.0.0.0 port: 8090 diff --git a/CHANGELOG.md b/CHANGELOG.md index 41fe459..b5571a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,15 @@ ## [0.2.1](https://github.com/OKDP/spark-web-proxy/compare/v0.2.0...v0.2.1) (2026-01-12) +### Chore -### Documentation +* upgrade to Go 1.24 and update dependencies (k8s, x/oauth2, x/crypto, etc)([1b8df05](https://github.com/OKDP/spark-web-proxy/commit/1b8df058e3a9f7bf98010dd915d936b37c816c79)) -* update Readme.md ([73c7637](https://github.com/OKDP/spark-web-proxy/commit/73c76370fc4bfe031a21c0201480a25d615653e1)) +### Documentation -### Continuous Integration +* update Readme.md ([73c7637](https://github.com/OKDP/spark-web-proxy/commit/73c76370fc4bfe031a21c0201480a25d615653e1)) -* release 0.2.1 ([90c4cde](https://github.com/OKDP/spark-web-proxy/commit/90c4cdefb15a53c2a1e58cd9b622254922e204aa)) ## [0.2.0](https://github.com/OKDP/spark-web-proxy/compare/v0.1.0...v0.2.0) (2026-01-09) diff --git a/Dockerfile b/Dockerfile index 713d89d..97aad21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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. +# + ARG GO_VERSION=1.24 FROM golang:${GO_VERSION} AS go-build diff --git a/LICENSE b/LICENSE index c16bed3..9e7c4cd 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2024 tosit.io + Copyright 2024 The OKDP Authors. 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/Makefile b/Makefile index 9429a16..9f061fa 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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. +# + .PHONY: help help: @echo "Available commands:" diff --git a/cmd/root.go b/cmd/root.go index 0891e93..45d1621 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/helm/spark-web-proxy/Chart.yaml b/helm/spark-web-proxy/Chart.yaml index b608dcf..4b70a7c 100644 --- a/helm/spark-web-proxy/Chart.yaml +++ b/helm/spark-web-proxy/Chart.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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: spark-web-proxy description: Helm chart for spark-web-proxy diff --git a/helm/spark-web-proxy/templates/_helpers.tpl b/helm/spark-web-proxy/templates/_helpers.tpl index 27d95e3..4db706e 100644 --- a/helm/spark-web-proxy/templates/_helpers.tpl +++ b/helm/spark-web-proxy/templates/_helpers.tpl @@ -1,3 +1,19 @@ +{{/* + Copyright 2026 The OKDP Authors. + + 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 + + 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. +*/}} + {{/* Expand the name of the chart. */}} diff --git a/helm/spark-web-proxy/templates/configmap.yaml b/helm/spark-web-proxy/templates/configmap.yaml index 2c67e03..629ab18 100644 --- a/helm/spark-web-proxy/templates/configmap.yaml +++ b/helm/spark-web-proxy/templates/configmap.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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/helm/spark-web-proxy/templates/deployment.yaml b/helm/spark-web-proxy/templates/deployment.yaml index 75a0b8c..65269a6 100644 --- a/helm/spark-web-proxy/templates/deployment.yaml +++ b/helm/spark-web-proxy/templates/deployment.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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/helm/spark-web-proxy/templates/hpa.yaml b/helm/spark-web-proxy/templates/hpa.yaml index 35745b4..a808381 100644 --- a/helm/spark-web-proxy/templates/hpa.yaml +++ b/helm/spark-web-proxy/templates/hpa.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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.autoscaling.enabled }} apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler diff --git a/helm/spark-web-proxy/templates/ingress.yaml b/helm/spark-web-proxy/templates/ingress.yaml index 1874aa6..2aa490e 100644 --- a/helm/spark-web-proxy/templates/ingress.yaml +++ b/helm/spark-web-proxy/templates/ingress.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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.ingress.enabled -}} {{- $fullName := include "spark-web-proxy.fullname" . -}} {{- $svcPort := .Values.service.port -}} diff --git a/helm/spark-web-proxy/templates/rbac.yaml b/helm/spark-web-proxy/templates/rbac.yaml index 742abe1..bd6fce6 100644 --- a/helm/spark-web-proxy/templates/rbac.yaml +++ b/helm/spark-web-proxy/templates/rbac.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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.rbac.create -}} {{- range $jobNamespace := .Values.configuration.spark.jobNamespaces | default list }} {{- if ne $jobNamespace "" }} diff --git a/helm/spark-web-proxy/templates/service.yaml b/helm/spark-web-proxy/templates/service.yaml index 2dcd9fd..f2ca6f9 100644 --- a/helm/spark-web-proxy/templates/service.yaml +++ b/helm/spark-web-proxy/templates/service.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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/helm/spark-web-proxy/templates/serviceaccount.yaml b/helm/spark-web-proxy/templates/serviceaccount.yaml index af834a5..29b0de6 100644 --- a/helm/spark-web-proxy/templates/serviceaccount.yaml +++ b/helm/spark-web-proxy/templates/serviceaccount.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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.serviceAccount.create -}} apiVersion: v1 kind: ServiceAccount diff --git a/helm/spark-web-proxy/templates/tests/test-connection.yaml b/helm/spark-web-proxy/templates/tests/test-connection.yaml index dbfe663..7a2efb9 100644 --- a/helm/spark-web-proxy/templates/tests/test-connection.yaml +++ b/helm/spark-web-proxy/templates/tests/test-connection.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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: Pod metadata: diff --git a/helm/spark-web-proxy/values.yaml b/helm/spark-web-proxy/values.yaml index 2f480ce..891546f 100644 --- a/helm/spark-web-proxy/values.yaml +++ b/helm/spark-web-proxy/values.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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. +# + # -- Desired number of okdp-server pods to run. replicaCount: 1 diff --git a/internal/config/config.go b/internal/config/config.go index 7acfc03..2dedc7b 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/config/config_test.go b/internal/config/config_test.go index 97b79ce..c0af908 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2024 okdp.io + * Copyright 2024 The OKDP Authors. * * 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/internal/config/testdata/application.yaml b/internal/config/testdata/application.yaml index bebe397..c8b7138 100644 --- a/internal/config/testdata/application.yaml +++ b/internal/config/testdata/application.yaml @@ -1,3 +1,19 @@ +# +# Copyright 2026 The OKDP Authors. +# +# 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 +# +# 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. +# + proxy: listenAddress: 0.0.0.0 port: 8090 diff --git a/internal/constants/constants.go b/internal/constants/constants.go index 8558a53..649a010 100644 --- a/internal/constants/constants.go +++ b/internal/constants/constants.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/controllers/health.go b/internal/controllers/health.go index 2b377f6..e07f4d8 100644 --- a/internal/controllers/health.go +++ b/internal/controllers/health.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/controllers/sparkapps_controller.go b/internal/controllers/sparkapps_controller.go index 6c45de2..83f16fc 100644 --- a/internal/controllers/sparkapps_controller.go +++ b/internal/controllers/sparkapps_controller.go @@ -1,5 +1,5 @@ /* - * Copyright 2026 okdp.io + * Copyright 2026 The OKDP Authors. * * 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/internal/controllers/sparkhistory_controller.go b/internal/controllers/sparkhistory_controller.go index ad6f6a1..5b85276 100644 --- a/internal/controllers/sparkhistory_controller.go +++ b/internal/controllers/sparkhistory_controller.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/controllers/sparkui_controller.go b/internal/controllers/sparkui_controller.go index 7ce76a9..b2f6d38 100644 --- a/internal/controllers/sparkui_controller.go +++ b/internal/controllers/sparkui_controller.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/discovery/resolvers.go b/internal/discovery/resolvers.go index b29ef4f..30c659f 100644 --- a/internal/discovery/resolvers.go +++ b/internal/discovery/resolvers.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/discovery/resolvers/k8s/informers/sparkapp_informer.go b/internal/discovery/resolvers/k8s/informers/sparkapp_informer.go index 0bf5d53..759d3e5 100644 --- a/internal/discovery/resolvers/k8s/informers/sparkapp_informer.go +++ b/internal/discovery/resolvers/k8s/informers/sparkapp_informer.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/discovery/resolvers/rest/client/rest_client.go b/internal/discovery/resolvers/rest/client/rest_client.go index ac8fb09..83fe107 100644 --- a/internal/discovery/resolvers/rest/client/rest_client.go +++ b/internal/discovery/resolvers/rest/client/rest_client.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/discovery/resolvers/rest/sparkapp_rest.go b/internal/discovery/resolvers/rest/sparkapp_rest.go index ab0a2b6..23abac5 100644 --- a/internal/discovery/resolvers/rest/sparkapp_rest.go +++ b/internal/discovery/resolvers/rest/sparkapp_rest.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/logging/logging.go b/internal/logging/logging.go index f476366..ccb6e27 100644 --- a/internal/logging/logging.go +++ b/internal/logging/logging.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/model/sparkapp.go b/internal/model/sparkapp.go index fcce582..72a6dbf 100644 --- a/internal/model/sparkapp.go +++ b/internal/model/sparkapp.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/model/sparkapp_instance.go b/internal/model/sparkapp_instance.go index 2b0df8a..eecaa51 100644 --- a/internal/model/sparkapp_instance.go +++ b/internal/model/sparkapp_instance.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/model/sparkapp_instance_test.go b/internal/model/sparkapp_instance_test.go index b52e424..66e5923 100644 --- a/internal/model/sparkapp_instance_test.go +++ b/internal/model/sparkapp_instance_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/model/sparkapp_test.go b/internal/model/sparkapp_test.go index 03468fb..9b75837 100644 --- a/internal/model/sparkapp_test.go +++ b/internal/model/sparkapp_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/model/types.go b/internal/model/types.go index deea1b0..594131c 100644 --- a/internal/model/types.go +++ b/internal/model/types.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/security/http_security.go b/internal/security/http_security.go index 4b8a705..b337b39 100644 --- a/internal/security/http_security.go +++ b/internal/security/http_security.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/server/server.go b/internal/server/server.go index d914322..f390c87 100644 --- a/internal/server/server.go +++ b/internal/server/server.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/spark/default_handler.go b/internal/spark/default_handler.go index fcdef60..57efb88 100644 --- a/internal/spark/default_handler.go +++ b/internal/spark/default_handler.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/spark/incomplete_apps_handler.go b/internal/spark/incomplete_apps_handler.go index 3f9475b..287636f 100644 --- a/internal/spark/incomplete_apps_handler.go +++ b/internal/spark/incomplete_apps_handler.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/spark/proxy/handler.go b/internal/spark/proxy/handler.go index c0adb47..8cd930c 100644 --- a/internal/spark/proxy/handler.go +++ b/internal/spark/proxy/handler.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/spark/proxy/proxy.go b/internal/spark/proxy/proxy.go index b5ca07c..1cb8d46 100644 --- a/internal/spark/proxy/proxy.go +++ b/internal/spark/proxy/proxy.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/utils/httputils.go b/internal/utils/httputils.go index 92da722..d9b242c 100644 --- a/internal/utils/httputils.go +++ b/internal/utils/httputils.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/utils/httputils_test.go b/internal/utils/httputils_test.go index 552dc93..736334c 100644 --- a/internal/utils/httputils_test.go +++ b/internal/utils/httputils_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/utils/pod_utils.go b/internal/utils/pod_utils.go index 3d73589..fa900a7 100644 --- a/internal/utils/pod_utils.go +++ b/internal/utils/pod_utils.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/utils/sparkutils.go b/internal/utils/sparkutils.go index e7a5ad3..11840ba 100644 --- a/internal/utils/sparkutils.go +++ b/internal/utils/sparkutils.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/internal/utils/sparkutils_test.go b/internal/utils/sparkutils_test.go index f55bbaf..7128a0f 100644 --- a/internal/utils/sparkutils_test.go +++ b/internal/utils/sparkutils_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * 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/main.go b/main.go index b8b701d..e3ee267 100644 --- a/main.go +++ b/main.go @@ -1,5 +1,5 @@ /* - * Copyright 2025 okdp.io + * Copyright 2025 The OKDP Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.