Conditions | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
1 | from st2actions.runners.pythonrunner import Action |
||
9 | def get_connection(self): |
||
10 | """ |
||
11 | Get a connection to the Kubernetes IO API Service |
||
12 | """ |
||
13 | user = self.config['user'] |
||
14 | password = self.config['password'] |
||
15 | base_api = self.config['kubernetes_api_url'] |
||
16 | |||
17 | # TODO : Instantiate API connection and return |
||
18 | return None |