()
| 118 | |
| 119 | |
| 120 | def main(): |
| 121 | config.load_kube_config() |
| 122 | try: |
| 123 | c = Configuration().get_default_copy() |
| 124 | except AttributeError: |
| 125 | c = Configuration() |
| 126 | c.assert_hostname = False |
| 127 | Configuration.set_default(c) |
| 128 | core_v1 = core_v1_api.CoreV1Api() |
| 129 | |
| 130 | exec_commands(core_v1) |
| 131 | |
| 132 | |
| 133 | if __name__ == '__main__': |
no test coverage detected