1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

Adding kubernetes orchestrator for rollouts, adding requirements for incremental docker builds

This commit is contained in:
Ajay Deshpande
2018-09-14 15:58:57 -07:00
committed by zach dwiel
parent 6541bc76b9
commit ce9838a7d6
10 changed files with 327 additions and 15 deletions

View File

@@ -0,0 +1,19 @@
class DeployParameters(object):
def __init__(self):
pass
class Deploy(object):
def __init__(self, deploy_parameters):
self.deploy_parameters = deploy_parameters
def setup(self) -> bool:
pass
def deploy(self) -> bool:
pass