Add extra line about src files are part of RIC platform project 32/1832/1
authorTimo Tietavainen <timo.tietavainen@nokia.com>
Thu, 28 Nov 2019 08:02:41 +0000 (10:02 +0200)
committerTimo Tietavainen <timo.tietavainen@nokia.com>
Thu, 28 Nov 2019 08:02:41 +0000 (10:02 +0200)
Signed-off-by: Timo Tietavainen <timo.tietavainen@nokia.com>
Change-Id: I9535911cf22c10f2f12db1a1ed190d09bd7bc093

18 files changed:
charts/dbaas-service/Chart.yaml
charts/dbaas-service/templates/deployment.yaml
charts/dbaas-service/templates/service.yaml
charts/dbaas-service/values.yaml
charts/dbaas-test/Chart.yaml
charts/dbaas-test/templates/deployment.yaml
charts/dbaas-test/values.yaml
docker/Dockerfile.redis
docker/Dockerfile.testapp
redismodule/include/redismodule.h
redismodule/src/exstrings.c
redismodule/tst/mock/include/exstringsStub.h
redismodule/tst/mock/include/redismodule.h
redismodule/tst/mock/src/redismoduleStub.cpp
redismodule/tst/src/exstrings_test.cpp
redismodule/tst/src/main.cpp
testapplication/go/sdl/sdl.go
testapplication/go/testapp.go

index 9684980..8d183de 100644 (file)
 #   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
index 4bf006d..341d898 100644 (file)
 #   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:
index 78f4a78..472aeac 100644 (file)
 #   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:
index 1e7f4b9..9c66759 100644 (file)
 #   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
index 23b63e9..2af2367 100644 (file)
 #   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
index 2d4c5ba..d748f06 100644 (file)
 #   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:
index b743881..1b23afa 100644 (file)
 #   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
index aa77c42..98d4c26 100644 (file)
 #   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
index 5e1b998..1e88a62 100644 (file)
 #   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
index 4f08f80..c6f97d5 100755 (executable)
  *   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
 
index cec45ab..194edc5 100755 (executable)
  *   limitations under the License.
  */
 
+/*
+ * This source code is part of the near-RT RIC (RAN Intelligent Controller)
+ * platform project (RICP).
+ */
+
 #include "redismodule.h"
 #include <stdio.h>
 #include <stdlib.h>
index d61a31b..572f64c 100755 (executable)
  *   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_
 
index 1e97588..3e9b93b 100755 (executable)
  *   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
 
index 2e401b7..029c48b 100755 (executable)
  *   limitations under the License.
  */
 
+/*
+ * This source code is part of the near-RT RIC (RAN Intelligent Controller)
+ * platform project (RICP).
+ */
+
 
 #include <CppUTest/TestHarness.h>
 #include <CppUTestExt/MockSupport.h>
index e051e41..4816de5 100755 (executable)
  *   limitations under the License.
  */
 
+/*
+ * This source code is part of the near-RT RIC (RAN Intelligent Controller)
+ * platform project (RICP).
+ */
+
 #include <string>
 #include <map>
 #include <list>
index d74c9a8..eb09754 100755 (executable)
  *   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
+}
index 1dbd4cc..2a40dac 100644 (file)
 //   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 (
index 7fb1780..ee39cb8 100644 (file)
 //   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 (