diff options
author | Liam Fallon <liam.fallon@est.tech> | 2022-02-17 12:57:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-02-17 12:57:59 +0000 |
commit | 6fe7a26007187510fad151dbbf8314c53787fe76 (patch) | |
tree | 7aaab320941748a357457ca87c4ca605662a8547 /csit/prepare-config-files.py | |
parent | 461a8bd824c06f42c717e6db55ba5cbb8b280c46 (diff) | |
parent | 7abe36cd557a9c2d5abebcf54a4ed5957a4168a1 (diff) |
Merge "Add docker configuration for Prometheus and Grafana"
Diffstat (limited to 'csit/prepare-config-files.py')
-rwxr-xr-x | csit/prepare-config-files.py | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/csit/prepare-config-files.py b/csit/prepare-config-files.py new file mode 100755 index 00000000..977df556 --- /dev/null +++ b/csit/prepare-config-files.py @@ -0,0 +1,57 @@ +#!/usr/bin/python3 +# +# ============LICENSE_START==================================================== +# Copyright (C) 2022 Nordix Foundation. +# ============================================================================= +# 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. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END====================================================== + +import os +import argparse + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Process configuration files for https/ssl ' + 'disabling.') + parser.add_argument('--https', default="true", + help='enable or disable https/ssl connection. ' + 'use https=true or https=false') + + https_enabled = parser.parse_args().https + message_router_port = '3905' if https_enabled == "true" else '3904' + + current_dir = os.getcwd() + config_dir = current_dir + "/config/" + + files = [] + for (dirpath, dirnames, filenames) in os.walk(config_dir): + for filename in filenames: + files.append(os.path.join(dirpath, filename)) + + for file in files: + try: + with open(file, 'r+') as f: + content = f.read() + new_content = content.replace("{{HTTPS_ENABLED}}", https_enabled) + new_content = new_content.replace("{{MESSAGE_ROUTER_PORT}}", message_router_port) + + if new_content != content: + f.seek(0) + f.truncate() + f.write(new_content) + print("File {0} updated!".format(file)) + except UnicodeDecodeError: + print("File didn't open: ", file) + + exit(0) |