Skip to content
This repository was archived by the owner on Jan 19, 2018. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions atomicapp/providers/openshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down