예제 #1
0
 def masters(self):
     return config.get(self.cluster, constants.MASTER)
예제 #2
0
 def get(self, role):
     try:
         return config.get(self.setup, role)
     except:
         return config.get(self.cluster, role)
예제 #3
0
 def clusters(self):
     return config.get(self.setup, constants.CLUSTERS)
예제 #4
0
 def vmcs(self):
     return config.get(self.cluster, constants.VMC)
예제 #5
0
파일: context.py 프로젝트: AthinaB/synnefo
 def masters(self):
     return config.get(self.cluster, constants.MASTER)
예제 #6
0
파일: context.py 프로젝트: AthinaB/synnefo
 def clusters(self):
     return config.get(self.setup, constants.CLUSTERS)
예제 #7
0
파일: context.py 프로젝트: AthinaB/synnefo
 def get(self, role):
     try:
         return config.get(self.setup, role)
     except:
         return config.get(self.cluster, role)
예제 #8
0
파일: context.py 프로젝트: AthinaB/synnefo
 def vmcs(self):
     return config.get(self.cluster, constants.VMC)