summaryrefslogtreecommitdiffstats
path: root/k8s/k8splugin
diff options
context:
space:
mode:
Diffstat (limited to 'k8s/k8splugin')
-rw-r--r--k8s/k8splugin/__init__.py3
-rw-r--r--k8s/k8splugin/cloudify_importer.py1
-rw-r--r--k8s/k8splugin/decorators.py3
-rw-r--r--k8s/k8splugin/discovery.py3
-rw-r--r--k8s/k8splugin/exceptions.py3
-rw-r--r--k8s/k8splugin/utils.py3
6 files changed, 6 insertions, 10 deletions
diff --git a/k8s/k8splugin/__init__.py b/k8s/k8splugin/__init__.py
index 7ca69b7..85e4411 100644
--- a/k8s/k8splugin/__init__.py
+++ b/k8s/k8splugin/__init__.py
@@ -16,7 +16,6 @@
# limitations under the License.
# ============LICENSE_END=========================================================
#
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
# REVIEW: Tried to source the version from here but you run into import issues
# because "tasks" module is loaded. This method seems to be the PEP 396
@@ -25,4 +24,4 @@
from .tasks import create_for_components, create_for_components_with_streams, \
create_and_start_container, create_and_start_container_for_components, \
- stop_and_remove_container, cleanup_discovery, policy_update, scale, update_image \ No newline at end of file
+ stop_and_remove_container, cleanup_discovery, policy_update, scale, update_image
diff --git a/k8s/k8splugin/cloudify_importer.py b/k8s/k8splugin/cloudify_importer.py
index 10a6cf5..b2e7bad 100644
--- a/k8s/k8splugin/cloudify_importer.py
+++ b/k8s/k8splugin/cloudify_importer.py
@@ -1,6 +1,7 @@
# #######
# Copyright (c) 2017 GigaSpaces Technologies Ltd. All rights reserved
# Copyright (c) 2019 Pantheon.tech. All rights reserved
+# Copyright (c) 2020 AT&T Intellectual Property. All rights reserved
#
# 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/k8splugin/decorators.py b/k8s/k8splugin/decorators.py
index b9b32bf..4137601 100644
--- a/k8s/k8splugin/decorators.py
+++ b/k8s/k8splugin/decorators.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -16,7 +16,6 @@
# limitations under the License.
# ============LICENSE_END=========================================================
#
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
import copy
diff --git a/k8s/k8splugin/discovery.py b/k8s/k8splugin/discovery.py
index 76c160a..99f5023 100644
--- a/k8s/k8splugin/discovery.py
+++ b/k8s/k8splugin/discovery.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
# Copyright (c) 2019 Pantheon.tech. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,7 +17,6 @@
# limitations under the License.
# ============LICENSE_END=========================================================
#
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
import json
import logging
diff --git a/k8s/k8splugin/exceptions.py b/k8s/k8splugin/exceptions.py
index 0d8a341..1c398c6 100644
--- a/k8s/k8splugin/exceptions.py
+++ b/k8s/k8splugin/exceptions.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -16,7 +16,6 @@
# limitations under the License.
# ============LICENSE_END=========================================================
#
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
class DockerPluginDeploymentError(RuntimeError):
pass
diff --git a/k8s/k8splugin/utils.py b/k8s/k8splugin/utils.py
index 6475aaa..73eef61 100644
--- a/k8s/k8splugin/utils.py
+++ b/k8s/k8splugin/utils.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
# Copyright (c) 2019 Pantheon.tech. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,7 +17,6 @@
# limitations under the License.
# ============LICENSE_END=========================================================
#
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
import string
import random