-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix handling of additional properties (#180)
… by pulling in the fix from dhall-lang/dhall-haskell#2343
- Loading branch information
1 parent
9e56107
commit 49d1d68
Showing
442 changed files
with
3,652 additions
and
1,270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
1.12/defaults/io.k8s.api.authorization.v1.SubjectAccessReviewSpec.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
1.12/defaults/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
1.12/defaults/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,42 @@ | ||
{ default = None (List { mapKey : Text, mapValue : Text }) | ||
, defaultRequest = None (List { mapKey : Text, mapValue : Text }) | ||
, max = None (List { mapKey : Text, mapValue : Text }) | ||
, maxLimitRequestRatio = None (List { mapKey : Text, mapValue : Text }) | ||
, min = None (List { mapKey : Text, mapValue : Text }) | ||
{ default = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, defaultRequest = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, max = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, maxLimitRequestRatio = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, min = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, type = None Text | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 8 additions & 1 deletion
9
1.12/defaults/io.k8s.api.core.v1.PersistentVolumeClaimStatus.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
{ hard = None (List { mapKey : Text, mapValue : Text }) | ||
{ hard = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, scopeSelector = None ./../types/io.k8s.api.core.v1.ScopeSelector.dhall | ||
, scopes = None (List Text) | ||
} |
18 changes: 16 additions & 2 deletions
18
1.12/defaults/io.k8s.api.core.v1.ResourceQuotaStatus.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
{ hard = None (List { mapKey : Text, mapValue : Text }) | ||
, used = None (List { mapKey : Text, mapValue : Text }) | ||
{ hard = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, used = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
} |
18 changes: 16 additions & 2 deletions
18
1.12/defaults/io.k8s.api.core.v1.ResourceRequirements.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
{ limits = None (List { mapKey : Text, mapValue : Text }) | ||
, requests = None (List { mapKey : Text, mapValue : Text }) | ||
{ limits = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
, requests = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.api.resource.Quantity.dhall | ||
} | ||
) | ||
} |
9 changes: 8 additions & 1 deletion
9
1.12/defaults/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
{ disruptedPods = None (List { mapKey : Text, mapValue : Text }) | ||
{ disruptedPods = | ||
None | ||
( List | ||
{ mapKey : Text | ||
, mapValue : | ||
./../types/io.k8s.apimachinery.pkg.apis.meta.v1.Time.dhall | ||
} | ||
) | ||
, observedGeneration = None Integer | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
./schemas.dhall sha256:37e47c6f221e88aa912b2ec50a068da165daaac0dcd98b5c93163aca8d5a9aa3 | ||
./schemas.dhall sha256:47eb3ab96288d81eded31e958d9c6ffbe4b0992f373f96acd9b9406814297941 | ||
∧ { IntOrString = | ||
( ./types.dhall sha256:2d50b04e72eb37474f357a7598291469bcc2e208ffb71c72363f37d010314ea7 | ||
( ./types.dhall sha256:3406e39fcac9fc0f2934e6182eade34021764adca5106b8c237498e5d749e4e8 | ||
).IntOrString | ||
, Resource = | ||
./typesUnion.dhall sha256:f8dd9be0437d5c298a5fa0a86f87cfce779de22809b5ab6aa77f38a319e121ba | ||
./typesUnion.dhall sha256:0cb4792e404154c08ecf7ddc2098037741902c7b27130d35fd58e149b7e7cd10 | ||
} |
Oops, something went wrong.