-
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.
Prefer "schema" syntax for examples (#93)
* Also update to the latest version of `dhall` * Also fix `./scripts/generate.sh` to generate the `schemas*` files
- Loading branch information
1 parent
fee24c0
commit 7af2ab5
Showing
1,444 changed files
with
5,407 additions
and
10,193 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
9 changes: 3 additions & 6 deletions
9
defaults/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration.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,9 +1,6 @@ | ||
{ apiVersion = | ||
"admissionregistration.k8s.io/v1beta1" | ||
, kind = | ||
"MutatingWebhookConfiguration" | ||
, metadata = | ||
./io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.dhall | ||
{ apiVersion = "admissionregistration.k8s.io/v1beta1" | ||
, kind = "MutatingWebhookConfiguration" | ||
, metadata = ./io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.dhall | ||
, webhooks = | ||
[] : List ./../types/io.k8s.api.admissionregistration.v1beta1.Webhook.dhall | ||
} |
11 changes: 4 additions & 7 deletions
11
defaults/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList.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,10 +1,7 @@ | ||
{ apiVersion = | ||
"admissionregistration.k8s.io/v1beta1" | ||
, kind = | ||
"MutatingWebhookConfigurationList" | ||
{ apiVersion = "admissionregistration.k8s.io/v1beta1" | ||
, kind = "MutatingWebhookConfigurationList" | ||
, items = | ||
[] : List | ||
./../types/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration.dhall | ||
, metadata = | ||
./io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.dhall | ||
./../types/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration.dhall | ||
, metadata = ./io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.dhall | ||
} |
15 changes: 5 additions & 10 deletions
15
defaults/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations.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,11 +1,6 @@ | ||
{ apiGroups = | ||
[] : List Text | ||
, apiVersions = | ||
[] : List Text | ||
, operations = | ||
[] : List Text | ||
, resources = | ||
[] : List Text | ||
, scope = | ||
None Text | ||
{ apiGroups = [] : List Text | ||
, apiVersions = [] : List Text | ||
, operations = [] : List Text | ||
, resources = [] : List Text | ||
, scope = None Text | ||
} |
9 changes: 3 additions & 6 deletions
9
defaults/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration.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,9 +1,6 @@ | ||
{ apiVersion = | ||
"admissionregistration.k8s.io/v1beta1" | ||
, kind = | ||
"ValidatingWebhookConfiguration" | ||
, metadata = | ||
./io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.dhall | ||
{ apiVersion = "admissionregistration.k8s.io/v1beta1" | ||
, kind = "ValidatingWebhookConfiguration" | ||
, metadata = ./io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.dhall | ||
, webhooks = | ||
[] : List ./../types/io.k8s.api.admissionregistration.v1beta1.Webhook.dhall | ||
} |
Oops, something went wrong.