From 99f548c04df61680aa16e76f8135201cb09914be Mon Sep 17 00:00:00 2001 From: Timo Tietavainen Date: Thu, 28 Nov 2019 10:02:41 +0200 Subject: [PATCH] Add extra line about src files are part of RIC platform project Signed-off-by: Timo Tietavainen Change-Id: I9535911cf22c10f2f12db1a1ed190d09bd7bc093 --- charts/dbaas-service/Chart.yaml | 5 +++++ charts/dbaas-service/templates/deployment.yaml | 5 +++++ charts/dbaas-service/templates/service.yaml | 5 +++++ charts/dbaas-service/values.yaml | 5 +++++ charts/dbaas-test/Chart.yaml | 5 +++++ charts/dbaas-test/templates/deployment.yaml | 5 +++++ charts/dbaas-test/values.yaml | 5 +++++ docker/Dockerfile.redis | 5 +++++ docker/Dockerfile.testapp | 5 +++++ redismodule/include/redismodule.h | 5 +++++ redismodule/src/exstrings.c | 5 +++++ redismodule/tst/mock/include/exstringsStub.h | 5 +++++ redismodule/tst/mock/include/redismodule.h | 5 +++++ redismodule/tst/mock/src/redismoduleStub.cpp | 5 +++++ redismodule/tst/src/exstrings_test.cpp | 5 +++++ redismodule/tst/src/main.cpp | 7 ++++++- testapplication/go/sdl/sdl.go | 5 +++++ testapplication/go/testapp.go | 5 +++++ 18 files changed, 91 insertions(+), 1 deletion(-) diff --git a/charts/dbaas-service/Chart.yaml b/charts/dbaas-service/Chart.yaml index 9684980..8d183de 100644 --- a/charts/dbaas-service/Chart.yaml +++ b/charts/dbaas-service/Chart.yaml @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + apiVersion: v1 appVersion: "1.0" description: DBaaS realized with standalone, non-persistent, non-redundant Redis diff --git a/charts/dbaas-service/templates/deployment.yaml b/charts/dbaas-service/templates/deployment.yaml index 4bf006d..341d898 100644 --- a/charts/dbaas-service/templates/deployment.yaml +++ b/charts/dbaas-service/templates/deployment.yaml @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + apiVersion: extensions/v1beta1 kind: Deployment metadata: diff --git a/charts/dbaas-service/templates/service.yaml b/charts/dbaas-service/templates/service.yaml index 78f4a78..472aeac 100644 --- a/charts/dbaas-service/templates/service.yaml +++ b/charts/dbaas-service/templates/service.yaml @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + apiVersion: v1 kind: Service metadata: diff --git a/charts/dbaas-service/values.yaml b/charts/dbaas-service/values.yaml index 1e7f4b9..9c66759 100644 --- a/charts/dbaas-service/values.yaml +++ b/charts/dbaas-service/values.yaml @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + backend: terminationGracePeriodSeconds: 0 replicas: 1 diff --git a/charts/dbaas-test/Chart.yaml b/charts/dbaas-test/Chart.yaml index 23b63e9..2af2367 100644 --- a/charts/dbaas-test/Chart.yaml +++ b/charts/dbaas-test/Chart.yaml @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + apiVersion: v1 appVersion: "1.0" description: Application for testing DBAAS connectivity diff --git a/charts/dbaas-test/templates/deployment.yaml b/charts/dbaas-test/templates/deployment.yaml index 2d4c5ba..d748f06 100644 --- a/charts/dbaas-test/templates/deployment.yaml +++ b/charts/dbaas-test/templates/deployment.yaml @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + apiVersion: extensions/v1beta1 kind: Deployment metadata: diff --git a/charts/dbaas-test/values.yaml b/charts/dbaas-test/values.yaml index b743881..1b23afa 100644 --- a/charts/dbaas-test/values.yaml +++ b/charts/dbaas-test/values.yaml @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + testapp: terminationGracePeriodSeconds: 0 replicas: 1 diff --git a/docker/Dockerfile.redis b/docker/Dockerfile.redis index aa77c42..98d4c26 100644 --- a/docker/Dockerfile.redis +++ b/docker/Dockerfile.redis @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + FROM nexus3.o-ran-sc.org:10004/bldr-alpine3:6-a3.9-nng as build-env COPY ./redismodule /redismodule diff --git a/docker/Dockerfile.testapp b/docker/Dockerfile.testapp index 5e1b998..1e88a62 100644 --- a/docker/Dockerfile.testapp +++ b/docker/Dockerfile.testapp @@ -13,6 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# + FROM ubuntu:latest # Install redis tools & golang & git diff --git a/redismodule/include/redismodule.h b/redismodule/include/redismodule.h index 4f08f80..c6f97d5 100755 --- a/redismodule/include/redismodule.h +++ b/redismodule/include/redismodule.h @@ -14,6 +14,11 @@ * limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + #ifndef REDISMODULE_H #define REDISMODULE_H diff --git a/redismodule/src/exstrings.c b/redismodule/src/exstrings.c index cec45ab..194edc5 100755 --- a/redismodule/src/exstrings.c +++ b/redismodule/src/exstrings.c @@ -14,6 +14,11 @@ * limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + #include "redismodule.h" #include #include diff --git a/redismodule/tst/mock/include/exstringsStub.h b/redismodule/tst/mock/include/exstringsStub.h index d61a31b..572f64c 100755 --- a/redismodule/tst/mock/include/exstringsStub.h +++ b/redismodule/tst/mock/include/exstringsStub.h @@ -14,6 +14,11 @@ * limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + #ifndef EXSTRINGSTUB_H_ #define EXSTRINGSTUB_H_ diff --git a/redismodule/tst/mock/include/redismodule.h b/redismodule/tst/mock/include/redismodule.h index 1e97588..3e9b93b 100755 --- a/redismodule/tst/mock/include/redismodule.h +++ b/redismodule/tst/mock/include/redismodule.h @@ -14,6 +14,11 @@ * limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + #ifndef REDISMODULE_H #define REDISMODULE_H diff --git a/redismodule/tst/mock/src/redismoduleStub.cpp b/redismodule/tst/mock/src/redismoduleStub.cpp index 2e401b7..029c48b 100755 --- a/redismodule/tst/mock/src/redismoduleStub.cpp +++ b/redismodule/tst/mock/src/redismoduleStub.cpp @@ -14,6 +14,11 @@ * limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + #include #include diff --git a/redismodule/tst/src/exstrings_test.cpp b/redismodule/tst/src/exstrings_test.cpp index e051e41..4816de5 100755 --- a/redismodule/tst/src/exstrings_test.cpp +++ b/redismodule/tst/src/exstrings_test.cpp @@ -14,6 +14,11 @@ * limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + #include #include #include diff --git a/redismodule/tst/src/main.cpp b/redismodule/tst/src/main.cpp index d74c9a8..eb09754 100755 --- a/redismodule/tst/src/main.cpp +++ b/redismodule/tst/src/main.cpp @@ -14,6 +14,11 @@ * limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + #include "CppUTest/CommandLineTestRunner.h" extern "C" { @@ -23,4 +28,4 @@ extern "C" { int main(int ac, char** av) { return CommandLineTestRunner::RunAllTests(ac, av); -} \ No newline at end of file +} diff --git a/testapplication/go/sdl/sdl.go b/testapplication/go/sdl/sdl.go index 1dbd4cc..2a40dac 100644 --- a/testapplication/go/sdl/sdl.go +++ b/testapplication/go/sdl/sdl.go @@ -13,6 +13,11 @@ // See the License for the specific language governing permissions and // limitations under the License. +// +// This source code is part of the near-RT RIC (RAN Intelligent Controller) +// platform project (RICP). +// + package sdl import ( diff --git a/testapplication/go/testapp.go b/testapplication/go/testapp.go index 7fb1780..ee39cb8 100644 --- a/testapplication/go/testapp.go +++ b/testapplication/go/testapp.go @@ -13,6 +13,11 @@ // See the License for the specific language governing permissions and // limitations under the License. +// +// This source code is part of the near-RT RIC (RAN Intelligent Controller) +// platform project (RICP). +// + package main import ( -- 2.16.6