Skip to content

Commit

Permalink
Merge pull request #127 from fiaas/fix-pdb-conditions-field-name
Browse files Browse the repository at this point in the history
Bugfix: Make conditions field name plural in PodDisruptionBudgetStatus
  • Loading branch information
tg90nor committed Jan 12, 2024
2 parents db04e06 + 668c96b commit 5f39b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k8s/models/policy_v1_pod_disruption_budget.py
Expand Up @@ -29,7 +29,7 @@ class PodDisruptionBudgetSpec(Model):


class PodDisruptionBudgetStatus(Model):
condition = ListField(Condition)
conditions = ListField(Condition)
currentHealthy = Field(int)
desiredHealthy = Field(int)
disruptionsAllowed = Field(int)
Expand Down

0 comments on commit 5f39b8f

Please sign in to comment.