(self, client=None)
| 9 | class SampleSet(launch_crd.K8sCR): |
| 10 | |
| 11 | def __init__(self, client=None): |
| 12 | super(SampleSet, self).__init__("batch.paddlepaddle.org", "samplesets", "v1alpha1", client) |
| 13 | |
| 14 | def is_expected_conditions(self, inst, expected_conditions): |
| 15 | conditions = inst.get('status', {}).get("phase") |