From 0e3c709cdf0baf2392e092e808e61851bc989df3 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Thu, 11 Aug 2016 13:57:15 -0400 Subject: [PATCH] Fix typo in openshift.py provider Should say "Deploying to OpenShift" rather than Kubernetes. Same goes with "Undeploying from OpenShift" --- atomicapp/providers/openshift.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atomicapp/providers/openshift.py b/atomicapp/providers/openshift.py index 21e944e3..f1fe8415 100644 --- a/atomicapp/providers/openshift.py +++ b/atomicapp/providers/openshift.py @@ -238,7 +238,7 @@ def run(self): """ Deploys the app by given resource artifacts. """ - logger.info("Deploying to Kubernetes") + logger.info("Deploying to OpenShift") for kind, objects in self.oc_artifacts.iteritems(): for artifact in objects: @@ -253,7 +253,7 @@ def stop(self): Undeploy operation first scale down the replicas to 0 and then deletes the resource from cluster. """ - logger.info("Undeploying from Kubernetes") + logger.info("Undeploying from OpenShift") for kind, objects in self.oc_artifacts.iteritems(): for artifact in objects: