-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: zongz <[email protected]>
- Loading branch information
Showing
2,538 changed files
with
155,443 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
k8s/1.14/api/admissionregistration/v1beta1/mutating_webhook_configuration.k
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
""" | ||
This is the mutating_webhook_configuration module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
import apimachinery.pkg.apis.meta.v1 | ||
|
||
|
||
schema MutatingWebhookConfiguration: | ||
""" | ||
MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. | ||
|
||
Attributes | ||
---------- | ||
apiVersion : str, default is "admissionregistration.k8s.io/v1beta1", required | ||
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources | ||
kind : str, default is "MutatingWebhookConfiguration", required | ||
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds | ||
metadata : v1.ObjectMeta, default is Undefined, optional | ||
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. | ||
webhooks : [Webhook], default is Undefined, optional | ||
Webhooks is a list of webhooks and the affected resources and operations. | ||
""" | ||
|
||
|
||
apiVersion: "admissionregistration.k8s.io/v1beta1" = "admissionregistration.k8s.io/v1beta1" | ||
|
||
kind: "MutatingWebhookConfiguration" = "MutatingWebhookConfiguration" | ||
|
||
metadata?: v1.ObjectMeta | ||
|
||
webhooks?: [Webhook] | ||
|
||
|
34 changes: 34 additions & 0 deletions
34
k8s/1.14/api/admissionregistration/v1beta1/mutating_webhook_configuration_list.k
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
""" | ||
This is the mutating_webhook_configuration_list module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
import apimachinery.pkg.apis.meta.v1 | ||
|
||
|
||
schema MutatingWebhookConfigurationList: | ||
""" | ||
MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration. | ||
|
||
Attributes | ||
---------- | ||
apiVersion : str, default is "admissionregistration.k8s.io/v1beta1", required | ||
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources | ||
items : [MutatingWebhookConfiguration], default is Undefined, required | ||
List of MutatingWebhookConfiguration. | ||
kind : str, default is "MutatingWebhookConfigurationList", required | ||
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds | ||
metadata : v1.ListMeta, default is Undefined, optional | ||
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds | ||
""" | ||
|
||
|
||
apiVersion: "admissionregistration.k8s.io/v1beta1" = "admissionregistration.k8s.io/v1beta1" | ||
|
||
items: [MutatingWebhookConfiguration] | ||
|
||
kind: "MutatingWebhookConfigurationList" = "MutatingWebhookConfigurationList" | ||
|
||
metadata?: v1.ListMeta | ||
|
||
|
43 changes: 43 additions & 0 deletions
43
k8s/1.14/api/admissionregistration/v1beta1/rule_with_operations.k
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
""" | ||
This is the rule_with_operations module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
|
||
|
||
schema RuleWithOperations: | ||
""" | ||
RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid. | ||
|
||
Attributes | ||
---------- | ||
apiGroups : [str], default is Undefined, optional | ||
APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. | ||
apiVersions : [str], default is Undefined, optional | ||
APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. | ||
operations : [str], default is Undefined, optional | ||
Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required. | ||
resources : [str], default is Undefined, optional | ||
Resources is a list of resources this rule applies to. | ||
|
||
For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources. | ||
|
||
If wildcard is present, the validation rule will ensure resources do not overlap with each other. | ||
|
||
Depending on the enclosing object, subresources might not be allowed. Required. | ||
scope : str, default is Undefined, optional | ||
scope specifies the scope of this rule. Valid values are "Cluster", "Namespaced", and "*" "Cluster" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. "Namespaced" means that only namespaced resources will match this rule. "*" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is "*". | ||
""" | ||
|
||
|
||
apiGroups?: [str] | ||
|
||
apiVersions?: [str] | ||
|
||
operations?: [str] | ||
|
||
resources?: [str] | ||
|
||
scope?: str | ||
|
||
|
29 changes: 29 additions & 0 deletions
29
k8s/1.14/api/admissionregistration/v1beta1/service_reference.k
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
""" | ||
This is the service_reference module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
|
||
|
||
schema ServiceReference: | ||
""" | ||
ServiceReference holds a reference to Service.legacy.k8s.io | ||
|
||
Attributes | ||
---------- | ||
name : str, default is Undefined, required | ||
`name` is the name of the service. Required | ||
namespace : str, default is Undefined, required | ||
`namespace` is the namespace of the service. Required | ||
path : str, default is Undefined, optional | ||
`path` is an optional URL path which will be sent in any request to this service. | ||
""" | ||
|
||
|
||
name: str | ||
|
||
namespace: str | ||
|
||
path?: str | ||
|
||
|
34 changes: 34 additions & 0 deletions
34
k8s/1.14/api/admissionregistration/v1beta1/validating_webhook_configuration.k
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
""" | ||
This is the validating_webhook_configuration module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
import apimachinery.pkg.apis.meta.v1 | ||
|
||
|
||
schema ValidatingWebhookConfiguration: | ||
""" | ||
ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. | ||
|
||
Attributes | ||
---------- | ||
apiVersion : str, default is "admissionregistration.k8s.io/v1beta1", required | ||
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources | ||
kind : str, default is "ValidatingWebhookConfiguration", required | ||
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds | ||
metadata : v1.ObjectMeta, default is Undefined, optional | ||
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. | ||
webhooks : [Webhook], default is Undefined, optional | ||
Webhooks is a list of webhooks and the affected resources and operations. | ||
""" | ||
|
||
|
||
apiVersion: "admissionregistration.k8s.io/v1beta1" = "admissionregistration.k8s.io/v1beta1" | ||
|
||
kind: "ValidatingWebhookConfiguration" = "ValidatingWebhookConfiguration" | ||
|
||
metadata?: v1.ObjectMeta | ||
|
||
webhooks?: [Webhook] | ||
|
||
|
34 changes: 34 additions & 0 deletions
34
k8s/1.14/api/admissionregistration/v1beta1/validating_webhook_configuration_list.k
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
""" | ||
This is the validating_webhook_configuration_list module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
import apimachinery.pkg.apis.meta.v1 | ||
|
||
|
||
schema ValidatingWebhookConfigurationList: | ||
""" | ||
ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration. | ||
|
||
Attributes | ||
---------- | ||
apiVersion : str, default is "admissionregistration.k8s.io/v1beta1", required | ||
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources | ||
items : [ValidatingWebhookConfiguration], default is Undefined, required | ||
List of ValidatingWebhookConfiguration. | ||
kind : str, default is "ValidatingWebhookConfigurationList", required | ||
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds | ||
metadata : v1.ListMeta, default is Undefined, optional | ||
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds | ||
""" | ||
|
||
|
||
apiVersion: "admissionregistration.k8s.io/v1beta1" = "admissionregistration.k8s.io/v1beta1" | ||
|
||
items: [ValidatingWebhookConfiguration] | ||
|
||
kind: "ValidatingWebhookConfigurationList" = "ValidatingWebhookConfigurationList" | ||
|
||
metadata?: v1.ListMeta | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
""" | ||
This is the webhook module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
import apimachinery.pkg.apis.meta.v1 | ||
|
||
|
||
schema Webhook: | ||
""" | ||
Webhook describes an admission webhook and the resources and operations it applies to. | ||
|
||
Attributes | ||
---------- | ||
admissionReviewVersions : [str], default is Undefined, optional | ||
AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`. | ||
clientConfig : WebhookClientConfig, default is Undefined, required | ||
ClientConfig defines how to communicate with the hook. Required | ||
failurePolicy : str, default is Undefined, optional | ||
FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. | ||
name : str, default is Undefined, required | ||
The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required. | ||
namespaceSelector : v1.LabelSelector, default is Undefined, optional | ||
NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook. | ||
|
||
For example, to run the webhook on any objects whose namespace is not associated with "runlevel" of "0" or "1"; you will set the selector as follows: "namespaceSelector": { | ||
"matchExpressions": [ | ||
{ | ||
"key": "runlevel", | ||
"operator": "NotIn", | ||
"values": [ | ||
"0", | ||
"1" | ||
] | ||
} | ||
] | ||
} | ||
|
||
If instead you want to only run the webhook on any objects whose namespace is associated with the "environment" of "prod" or "staging"; you will set the selector as follows: "namespaceSelector": { | ||
"matchExpressions": [ | ||
{ | ||
"key": "environment", | ||
"operator": "In", | ||
"values": [ | ||
"prod", | ||
"staging" | ||
] | ||
} | ||
] | ||
} | ||
|
||
See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors. | ||
|
||
Default to the empty LabelSelector, which matches everything. | ||
rules : [RuleWithOperations], default is Undefined, optional | ||
Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. | ||
sideEffects : str, default is Undefined, optional | ||
SideEffects states whether this webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown. | ||
timeoutSeconds : int, default is Undefined, optional | ||
TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds. | ||
""" | ||
|
||
|
||
admissionReviewVersions?: [str] | ||
|
||
clientConfig: WebhookClientConfig | ||
|
||
failurePolicy?: str | ||
|
||
name: str | ||
|
||
namespaceSelector?: v1.LabelSelector | ||
|
||
rules?: [RuleWithOperations] | ||
|
||
sideEffects?: str | ||
|
||
timeoutSeconds?: int | ||
|
||
|
43 changes: 43 additions & 0 deletions
43
k8s/1.14/api/admissionregistration/v1beta1/webhook_client_config.k
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
""" | ||
This is the webhook_client_config module in k8s.api.admissionregistration.v1beta1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
|
||
|
||
schema WebhookClientConfig: | ||
""" | ||
WebhookClientConfig contains the information to make a TLS connection with the webhook | ||
|
||
Attributes | ||
---------- | ||
caBundle : str, default is Undefined, optional | ||
`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. | ||
service : ServiceReference, default is Undefined, optional | ||
`service` is a reference to the service for this webhook. Either `service` or `url` must be specified. | ||
|
||
If the webhook is running within the cluster, then you should use `service`. | ||
|
||
Port 443 will be used if it is open, otherwise it is an error. | ||
url : str, default is Undefined, optional | ||
`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. | ||
|
||
The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. | ||
|
||
Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. | ||
|
||
The scheme must be "https"; the URL must begin with "https://". | ||
|
||
A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. | ||
|
||
Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. | ||
""" | ||
|
||
|
||
caBundle?: str | ||
|
||
service?: ServiceReference | ||
|
||
url?: str | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
""" | ||
This is the controller_revision module in k8s.api.apps.v1 package. | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
import apimachinery.pkg.apis.meta.v1 | ||
import apimachinery.pkg.runtime | ||
|
||
|
||
schema ControllerRevision: | ||
""" | ||
ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. | ||
|
||
Attributes | ||
---------- | ||
apiVersion : str, default is "apps/v1", required | ||
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources | ||
data : runtime.RawExtension, default is Undefined, optional | ||
Data is the serialized representation of the state. | ||
kind : str, default is "ControllerRevision", required | ||
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds | ||
metadata : v1.ObjectMeta, default is Undefined, optional | ||
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata | ||
revision : int, default is Undefined, required | ||
Revision indicates the revision of the state represented by Data. | ||
""" | ||
|
||
|
||
apiVersion: "apps/v1" = "apps/v1" | ||
|
||
data?: runtime.RawExtension | ||
|
||
kind: "ControllerRevision" = "ControllerRevision" | ||
|
||
metadata?: v1.ObjectMeta | ||
|
||
revision: int | ||
|
||
|
Oops, something went wrong.