Skip to content

Commit

Permalink
fix(chart): schema enum types for ipDualStack setting
Browse files Browse the repository at this point in the history
  • Loading branch information
sanadhis committed Sep 10, 2024
1 parent 85bde9c commit 25eb679
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions charts/caddy-ingress-controller/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,23 @@
},
"ipFamilies": {
"$id": "#/properties/service/properties/ipDualStack/properties/ipFamilies",
"type": "array"
"type": "array",
"items": {
"type": "string",
"enum": [
"IPv4",
"IPv6"
]
}
},
"ipFamilyPolicy": {
"$id": "#/properties/service/properties/ipDualStack/properties/ipFamilyPolicy",
"type": "string"
"type": "string",
"enum": [
"SingleStack",
"PreferDualStack",
"RequireDualStack"
]
}
}
}
Expand Down

0 comments on commit 25eb679

Please sign in to comment.