Update default config 90/29190/4
authorsuchinton2001 <suchinton.2001@gmail.com>
Thu, 14 Sep 2023 12:53:03 +0000 (18:23 +0530)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Mon, 18 Sep 2023 15:57:12 +0000 (15:57 +0000)
- Add License header
- Add CA.pem file path to enable "Secure mode" connection with kuksa

Bug-AGL: SPEC-4905

Signed-off-by: suchinton2001 <suchinton.2001@gmail.com>
Change-Id: Ib9c8d7d2984db97563d6ba62d03d272b79979823

extras/config.py

index 5056cc3..cc61c57 100644 (file)
@@ -1,14 +1,34 @@
+"""
+   Copyright 2023 Suchinton Chakravarty
+
+   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.
+"""
+
 import os
 import platform
 
-python_version = "python" + platform.python_version_tuple()[0] + "." + platform.python_version_tuple()[1]
+python_version = f"python{'.'.join(platform.python_version_tuple()[:2])}"
+
+CA = os.path.abspath(os.path.join(os.path.dirname(__file__), "../assets/CA.pem"))
 
 KUKSA_CONFIG = {
     "ip": 'localhost',
     "port": "8090",
     'protocol': 'ws',
     'insecure': False,
+    'cacertificate': CA,
+    'tls_server_name': "Server",
 }
 
 TOKEN_PATH = os.path.join(os.path.expanduser("~"), 
-                          f".local/lib/{python_version}/site-packages/kuksa_certificates/jwt/super-admin.json.token")
\ No newline at end of file
+                          f".local/lib/{python_version}/site-packages/kuksa_certificates/jwt/super-admin.json.token")