From 11cbac553eb62f49b530d212a36c152edc4afc17 Mon Sep 17 00:00:00 2001 From: Varac <varac@varac.net> Date: Wed, 18 Dec 2019 16:44:21 +0100 Subject: [PATCH] Add requested changes from !191 --- docs/upgrading.md | 2 +- openappstack/cluster.py | 2 +- test/pytest/test_certs.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/upgrading.md b/docs/upgrading.md index 5e54888c9..3c0e7c520 100644 --- a/docs/upgrading.md +++ b/docs/upgrading.md @@ -15,4 +15,4 @@ intervention. * remove all helm charts (WARNING: Please backup all data before!): - `helm delete --purge oas-prod-cert-manager oas-prod-local-storage oas-prod-prometheus oas-prod-proxy` + `helm delete --purge oas-test-cert-manager oas-test-local-storage oas-test-prometheus oas-test-proxy oas-test-files` diff --git a/openappstack/cluster.py b/openappstack/cluster.py index e795f8e49..8d1b0ea8b 100644 --- a/openappstack/cluster.py +++ b/openappstack/cluster.py @@ -153,7 +153,7 @@ class Cluster: file_contents = yaml.safe_dump(settings, default_flow_style=False) log.debug(file_contents) - # Create CLUSTER_DIR/group_vars/all/ is non-existant + # Create CLUSTER_DIR/group_vars/all/ if non-existent vars_dir = os.path.dirname(self.settings_file) if not os.path.exists(vars_dir): os.makedirs(vars_dir) diff --git a/test/pytest/test_certs.py b/test/pytest/test_certs.py index 93feb1a5a..294803496 100755 --- a/test/pytest/test_certs.py +++ b/test/pytest/test_certs.py @@ -97,7 +97,7 @@ def valid_cert(domain: str, ca_file: str = '/tmp/custom_ca_bundle.crt'): @pytest.mark.certs def test_cert_validation(host): - """Checks for proper cluster certs of exposed services. + """Checks for proper cluster certs from exposed services. Check is executed on the local provisioning machine. """ -- GitLab