GangSchedulingPolicy defines the parameters for gang scheduling.
| Name | Type | Description | Notes |
|---|---|---|---|
| min_count | int | MinCount is the minimum number of pods that must be schedulable or scheduled at the same time for the scheduler to admit the entire group. It must be a positive integer. |
from kubernetes.client.models.v1alpha2_gang_scheduling_policy import V1alpha2GangSchedulingPolicy
# TODO update the JSON string below
json = "{}"
# create an instance of V1alpha2GangSchedulingPolicy from a JSON string
v1alpha2_gang_scheduling_policy_instance = V1alpha2GangSchedulingPolicy.from_json(json)
# print the JSON string representation of the object
print(V1alpha2GangSchedulingPolicy.to_json())
# convert the object into a dict
v1alpha2_gang_scheduling_policy_dict = v1alpha2_gang_scheduling_policy_instance.to_dict()
# create an instance of V1alpha2GangSchedulingPolicy from a dict
v1alpha2_gang_scheduling_policy_from_dict = V1alpha2GangSchedulingPolicy.from_dict(v1alpha2_gang_scheduling_policy_dict)