예제 #1
0
파일: docker.py 프로젝트: qooroo/hive
 def __init__(self, subprocess, hive_home, options):
     Command.__init__(self, "docker", subprocess, hive_home, options)
     self._cli = ["docker"]
예제 #2
0
파일: template.py 프로젝트: qooroo/hive
 def __init__(self, subprocess, hive_home, options):
     Command.__init__(self, "script", subprocess, hive_home, options)
예제 #3
0
파일: certificate.py 프로젝트: qooroo/hive
 def __init__(self, subprocess, hive_home, options):
     Command.__init__(self, "certificate", subprocess, hive_home, options)
예제 #4
0
    def __init__(self, subprocess, hive_home, options):
        Command.__init__(self, "kubernetes", subprocess, hive_home, options)

        self._kubernetes = kubernetes(subprocess, hive_home, options)
예제 #5
0
    def __init__(self, subprocess, hive_home, options):
        Command.__init__(self, "kubernetes", subprocess, hive_home, options)

        self.gcloud = gcloud(subprocess, hive_home, options)
        self.resources_path = '/hive_share/kubernetes/manifests'
예제 #6
0
파일: kubernetes.py 프로젝트: qooroo/hive
    def __init__(self, subprocess, hive_home, options):
        Command.__init__(self, "kubernetes", subprocess, hive_home, options)

        self.resources_path = '/hive_share/kubernetes/manifests'
        self.kubectl = gcloud(subprocess, hive_home, options).get_container() + " kubectl "