diff --git a/2.11/_gen/elbv2/main.libsonnet b/2.11/_gen/elbv2/main.libsonnet new file mode 100644 index 0000000..69d12c2 --- /dev/null +++ b/2.11/_gen/elbv2/main.libsonnet @@ -0,0 +1,6 @@ +{ + local d = (import 'doc-util/main.libsonnet'), + '#':: d.pkg(name='elbv2', url='', help=''), + v1alpha1: (import 'v1alpha1/main.libsonnet'), + v1beta1: (import 'v1beta1/main.libsonnet'), +} diff --git a/2.11/_gen/elbv2/v1alpha1/main.libsonnet b/2.11/_gen/elbv2/v1alpha1/main.libsonnet new file mode 100644 index 0000000..22e9cb6 --- /dev/null +++ b/2.11/_gen/elbv2/v1alpha1/main.libsonnet @@ -0,0 +1,5 @@ +{ + local d = (import 'doc-util/main.libsonnet'), + '#':: d.pkg(name='v1alpha1', url='', help=''), + targetGroupBinding: (import 'targetGroupBinding.libsonnet'), +} diff --git a/2.11/_gen/elbv2/v1alpha1/targetGroupBinding.libsonnet b/2.11/_gen/elbv2/v1alpha1/targetGroupBinding.libsonnet new file mode 100644 index 0000000..5c92cea --- /dev/null +++ b/2.11/_gen/elbv2/v1alpha1/targetGroupBinding.libsonnet @@ -0,0 +1,108 @@ +{ + local d = (import 'doc-util/main.libsonnet'), + '#':: d.pkg(name='targetGroupBinding', url='', help='"TargetGroupBinding is the Schema for the TargetGroupBinding API"'), + '#metadata':: d.obj(help='"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create."'), + metadata: { + '#withAnnotations':: d.fn(help='"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"', args=[d.arg(name='annotations', type=d.T.object)]), + withAnnotations(annotations): { metadata+: { annotations: annotations } }, + '#withAnnotationsMixin':: d.fn(help='"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='annotations', type=d.T.object)]), + withAnnotationsMixin(annotations): { metadata+: { annotations+: annotations } }, + '#withClusterName':: d.fn(help='"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request."', args=[d.arg(name='clusterName', type=d.T.string)]), + withClusterName(clusterName): { metadata+: { clusterName: clusterName } }, + '#withCreationTimestamp':: d.fn(help='"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."', args=[d.arg(name='creationTimestamp', type=d.T.string)]), + withCreationTimestamp(creationTimestamp): { metadata+: { creationTimestamp: creationTimestamp } }, + '#withDeletionGracePeriodSeconds':: d.fn(help='"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only."', args=[d.arg(name='deletionGracePeriodSeconds', type=d.T.integer)]), + withDeletionGracePeriodSeconds(deletionGracePeriodSeconds): { metadata+: { deletionGracePeriodSeconds: deletionGracePeriodSeconds } }, + '#withDeletionTimestamp':: d.fn(help='"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."', args=[d.arg(name='deletionTimestamp', type=d.T.string)]), + withDeletionTimestamp(deletionTimestamp): { metadata+: { deletionTimestamp: deletionTimestamp } }, + '#withFinalizers':: d.fn(help='"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."', args=[d.arg(name='finalizers', type=d.T.array)]), + withFinalizers(finalizers): { metadata+: { finalizers: if std.isArray(v=finalizers) then finalizers else [finalizers] } }, + '#withFinalizersMixin':: d.fn(help='"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='finalizers', type=d.T.array)]), + withFinalizersMixin(finalizers): { metadata+: { finalizers+: if std.isArray(v=finalizers) then finalizers else [finalizers] } }, + '#withGenerateName':: d.fn(help='"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency"', args=[d.arg(name='generateName', type=d.T.string)]), + withGenerateName(generateName): { metadata+: { generateName: generateName } }, + '#withGeneration':: d.fn(help='"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only."', args=[d.arg(name='generation', type=d.T.integer)]), + withGeneration(generation): { metadata+: { generation: generation } }, + '#withLabels':: d.fn(help='"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"', args=[d.arg(name='labels', type=d.T.object)]), + withLabels(labels): { metadata+: { labels: labels } }, + '#withLabelsMixin':: d.fn(help='"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='labels', type=d.T.object)]), + withLabelsMixin(labels): { metadata+: { labels+: labels } }, + '#withName':: d.fn(help='"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names"', args=[d.arg(name='name', type=d.T.string)]), + withName(name): { metadata+: { name: name } }, + '#withNamespace':: d.fn(help='"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \\"default\\" namespace, but \\"default\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces"', args=[d.arg(name='namespace', type=d.T.string)]), + withNamespace(namespace): { metadata+: { namespace: namespace } }, + '#withOwnerReferences':: d.fn(help='"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."', args=[d.arg(name='ownerReferences', type=d.T.array)]), + withOwnerReferences(ownerReferences): { metadata+: { ownerReferences: if std.isArray(v=ownerReferences) then ownerReferences else [ownerReferences] } }, + '#withOwnerReferencesMixin':: d.fn(help='"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ownerReferences', type=d.T.array)]), + withOwnerReferencesMixin(ownerReferences): { metadata+: { ownerReferences+: if std.isArray(v=ownerReferences) then ownerReferences else [ownerReferences] } }, + '#withResourceVersion':: d.fn(help='"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency"', args=[d.arg(name='resourceVersion', type=d.T.string)]), + withResourceVersion(resourceVersion): { metadata+: { resourceVersion: resourceVersion } }, + '#withSelfLink':: d.fn(help='"SelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release."', args=[d.arg(name='selfLink', type=d.T.string)]), + withSelfLink(selfLink): { metadata+: { selfLink: selfLink } }, + '#withUid':: d.fn(help='"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids"', args=[d.arg(name='uid', type=d.T.string)]), + withUid(uid): { metadata+: { uid: uid } }, + }, + '#new':: d.fn(help='new returns an instance of TargetGroupBinding', args=[d.arg(name='name', type=d.T.string)]), + new(name): { + apiVersion: 'elbv2.k8s.aws/v1alpha1', + kind: 'TargetGroupBinding', + } + self.metadata.withName(name=name), + '#spec':: d.obj(help='"TargetGroupBindingSpec defines the desired state of TargetGroupBinding"'), + spec: { + '#networking':: d.obj(help='"networking provides the networking setup for ELBV2 LoadBalancer to access targets in TargetGroup."'), + networking: { + '#ingress':: d.obj(help='"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup."'), + ingress: { + '#from':: d.obj(help='"List of peers which should be able to access the targets in TargetGroup.\\nAt least one NetworkingPeer should be specified."'), + from: { + '#ipBlock':: d.obj(help='"IPBlock defines an IPBlock peer.\\nIf specified, none of the other fields can be set."'), + ipBlock: { + '#withCidr':: d.fn(help='"CIDR is the network CIDR.\\nBoth IPV4 or IPV6 CIDR are accepted."', args=[d.arg(name='cidr', type=d.T.string)]), + withCidr(cidr): { ipBlock+: { cidr: cidr } }, + }, + '#securityGroup':: d.obj(help='"SecurityGroup defines a SecurityGroup peer.\\nIf specified, none of the other fields can be set."'), + securityGroup: { + '#withGroupID':: d.fn(help='"GroupID is the EC2 SecurityGroupID."', args=[d.arg(name='groupID', type=d.T.string)]), + withGroupID(groupID): { securityGroup+: { groupID: groupID } }, + }, + }, + '#ports':: d.obj(help='"List of ports which should be made accessible on the targets in TargetGroup.\\nIf ports is empty or unspecified, it defaults to all ports with TCP."'), + ports: { + '#withPort':: d.fn(help='"The port which traffic must match.\\nWhen NodePort endpoints(instance TargetType) is used, this must be a numerical port.\\nWhen Port endpoints(ip TargetType) is used, this can be either numerical or named port on pods.\\nif port is unspecified, it defaults to all ports."', args=[d.arg(name='port', type=d.T.any)]), + withPort(port): { port: port }, + '#withProtocol':: d.fn(help='"The protocol which traffic must match.\\nIf protocol is unspecified, it defaults to TCP."', args=[d.arg(name='protocol', type=d.T.string)]), + withProtocol(protocol): { protocol: protocol }, + }, + '#withFrom':: d.fn(help='"List of peers which should be able to access the targets in TargetGroup.\\nAt least one NetworkingPeer should be specified."', args=[d.arg(name='from', type=d.T.array)]), + withFrom(from): { from: if std.isArray(v=from) then from else [from] }, + '#withFromMixin':: d.fn(help='"List of peers which should be able to access the targets in TargetGroup.\\nAt least one NetworkingPeer should be specified."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='from', type=d.T.array)]), + withFromMixin(from): { from+: if std.isArray(v=from) then from else [from] }, + '#withPorts':: d.fn(help='"List of ports which should be made accessible on the targets in TargetGroup.\\nIf ports is empty or unspecified, it defaults to all ports with TCP."', args=[d.arg(name='ports', type=d.T.array)]), + withPorts(ports): { ports: if std.isArray(v=ports) then ports else [ports] }, + '#withPortsMixin':: d.fn(help='"List of ports which should be made accessible on the targets in TargetGroup.\\nIf ports is empty or unspecified, it defaults to all ports with TCP."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ports', type=d.T.array)]), + withPortsMixin(ports): { ports+: if std.isArray(v=ports) then ports else [ports] }, + }, + '#withIngress':: d.fn(help='"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup."', args=[d.arg(name='ingress', type=d.T.array)]), + withIngress(ingress): { spec+: { networking+: { ingress: if std.isArray(v=ingress) then ingress else [ingress] } } }, + '#withIngressMixin':: d.fn(help='"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ingress', type=d.T.array)]), + withIngressMixin(ingress): { spec+: { networking+: { ingress+: if std.isArray(v=ingress) then ingress else [ingress] } } }, + }, + '#serviceRef':: d.obj(help='"serviceRef is a reference to a Kubernetes Service and ServicePort."'), + serviceRef: { + '#withName':: d.fn(help='"Name is the name of the Service."', args=[d.arg(name='name', type=d.T.string)]), + withName(name): { spec+: { serviceRef+: { name: name } } }, + '#withPort':: d.fn(help='"Port is the port of the ServicePort."', args=[d.arg(name='port', type=d.T.any)]), + withPort(port): { spec+: { serviceRef+: { port: port } } }, + }, + '#withMultiClusterTargetGroup':: d.fn(help='"MultiClusterTargetGroup Denotes if the TargetGroup is shared among multiple clusters"', args=[d.arg(name='multiClusterTargetGroup', type=d.T.boolean)]), + withMultiClusterTargetGroup(multiClusterTargetGroup): { spec+: { multiClusterTargetGroup: multiClusterTargetGroup } }, + '#withTargetGroupARN':: d.fn(help='"targetGroupARN is the Amazon Resource Name (ARN) for the TargetGroup."', args=[d.arg(name='targetGroupARN', type=d.T.string)]), + withTargetGroupARN(targetGroupARN): { spec+: { targetGroupARN: targetGroupARN } }, + '#withTargetGroupName':: d.fn(help='"targetGroupName is the Name of the TargetGroup."', args=[d.arg(name='targetGroupName', type=d.T.string)]), + withTargetGroupName(targetGroupName): { spec+: { targetGroupName: targetGroupName } }, + '#withTargetType':: d.fn(help='"targetType is the TargetType of TargetGroup. If unspecified, it will be automatically inferred."', args=[d.arg(name='targetType', type=d.T.string)]), + withTargetType(targetType): { spec+: { targetType: targetType } }, + }, + '#mixin': 'ignore', + mixin: self, +} diff --git a/2.11/_gen/elbv2/v1beta1/ingressClassParams.libsonnet b/2.11/_gen/elbv2/v1beta1/ingressClassParams.libsonnet new file mode 100644 index 0000000..2c3330e --- /dev/null +++ b/2.11/_gen/elbv2/v1beta1/ingressClassParams.libsonnet @@ -0,0 +1,158 @@ +{ + local d = (import 'doc-util/main.libsonnet'), + '#':: d.pkg(name='ingressClassParams', url='', help='"IngressClassParams is the Schema for the IngressClassParams API"'), + '#metadata':: d.obj(help='"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create."'), + metadata: { + '#withAnnotations':: d.fn(help='"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"', args=[d.arg(name='annotations', type=d.T.object)]), + withAnnotations(annotations): { metadata+: { annotations: annotations } }, + '#withAnnotationsMixin':: d.fn(help='"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='annotations', type=d.T.object)]), + withAnnotationsMixin(annotations): { metadata+: { annotations+: annotations } }, + '#withClusterName':: d.fn(help='"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request."', args=[d.arg(name='clusterName', type=d.T.string)]), + withClusterName(clusterName): { metadata+: { clusterName: clusterName } }, + '#withCreationTimestamp':: d.fn(help='"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."', args=[d.arg(name='creationTimestamp', type=d.T.string)]), + withCreationTimestamp(creationTimestamp): { metadata+: { creationTimestamp: creationTimestamp } }, + '#withDeletionGracePeriodSeconds':: d.fn(help='"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only."', args=[d.arg(name='deletionGracePeriodSeconds', type=d.T.integer)]), + withDeletionGracePeriodSeconds(deletionGracePeriodSeconds): { metadata+: { deletionGracePeriodSeconds: deletionGracePeriodSeconds } }, + '#withDeletionTimestamp':: d.fn(help='"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."', args=[d.arg(name='deletionTimestamp', type=d.T.string)]), + withDeletionTimestamp(deletionTimestamp): { metadata+: { deletionTimestamp: deletionTimestamp } }, + '#withFinalizers':: d.fn(help='"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."', args=[d.arg(name='finalizers', type=d.T.array)]), + withFinalizers(finalizers): { metadata+: { finalizers: if std.isArray(v=finalizers) then finalizers else [finalizers] } }, + '#withFinalizersMixin':: d.fn(help='"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='finalizers', type=d.T.array)]), + withFinalizersMixin(finalizers): { metadata+: { finalizers+: if std.isArray(v=finalizers) then finalizers else [finalizers] } }, + '#withGenerateName':: d.fn(help='"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency"', args=[d.arg(name='generateName', type=d.T.string)]), + withGenerateName(generateName): { metadata+: { generateName: generateName } }, + '#withGeneration':: d.fn(help='"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only."', args=[d.arg(name='generation', type=d.T.integer)]), + withGeneration(generation): { metadata+: { generation: generation } }, + '#withLabels':: d.fn(help='"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"', args=[d.arg(name='labels', type=d.T.object)]), + withLabels(labels): { metadata+: { labels: labels } }, + '#withLabelsMixin':: d.fn(help='"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='labels', type=d.T.object)]), + withLabelsMixin(labels): { metadata+: { labels+: labels } }, + '#withName':: d.fn(help='"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names"', args=[d.arg(name='name', type=d.T.string)]), + withName(name): { metadata+: { name: name } }, + '#withNamespace':: d.fn(help='"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \\"default\\" namespace, but \\"default\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces"', args=[d.arg(name='namespace', type=d.T.string)]), + withNamespace(namespace): { metadata+: { namespace: namespace } }, + '#withOwnerReferences':: d.fn(help='"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."', args=[d.arg(name='ownerReferences', type=d.T.array)]), + withOwnerReferences(ownerReferences): { metadata+: { ownerReferences: if std.isArray(v=ownerReferences) then ownerReferences else [ownerReferences] } }, + '#withOwnerReferencesMixin':: d.fn(help='"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ownerReferences', type=d.T.array)]), + withOwnerReferencesMixin(ownerReferences): { metadata+: { ownerReferences+: if std.isArray(v=ownerReferences) then ownerReferences else [ownerReferences] } }, + '#withResourceVersion':: d.fn(help='"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency"', args=[d.arg(name='resourceVersion', type=d.T.string)]), + withResourceVersion(resourceVersion): { metadata+: { resourceVersion: resourceVersion } }, + '#withSelfLink':: d.fn(help='"SelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release."', args=[d.arg(name='selfLink', type=d.T.string)]), + withSelfLink(selfLink): { metadata+: { selfLink: selfLink } }, + '#withUid':: d.fn(help='"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids"', args=[d.arg(name='uid', type=d.T.string)]), + withUid(uid): { metadata+: { uid: uid } }, + }, + '#new':: d.fn(help='new returns an instance of IngressClassParams', args=[d.arg(name='name', type=d.T.string)]), + new(name): { + apiVersion: 'elbv2.k8s.aws/v1beta1', + kind: 'IngressClassParams', + } + self.metadata.withName(name=name) + self.metadata.withAnnotations(annotations={ + 'tanka.dev/namespaced': 'false', + }), + '#spec':: d.obj(help='"IngressClassParamsSpec defines the desired state of IngressClassParams"'), + spec: { + '#group':: d.obj(help='"Group defines the IngressGroup for all Ingresses that belong to IngressClass with this IngressClassParams."'), + group: { + '#withName':: d.fn(help='"Name is the name of IngressGroup."', args=[d.arg(name='name', type=d.T.string)]), + withName(name): { spec+: { group+: { name: name } } }, + }, + '#listeners':: d.obj(help='"Listeners define a list of listeners with their protocol, port and attributes."'), + listeners: { + '#listenerAttributes':: d.obj(help='"The attributes of the listener"'), + listenerAttributes: { + '#withKey':: d.fn(help='"The key of the attribute."', args=[d.arg(name='key', type=d.T.string)]), + withKey(key): { key: key }, + '#withValue':: d.fn(help='"The value of the attribute."', args=[d.arg(name='value', type=d.T.string)]), + withValue(value): { value: value }, + }, + '#withListenerAttributes':: d.fn(help='"The attributes of the listener"', args=[d.arg(name='listenerAttributes', type=d.T.array)]), + withListenerAttributes(listenerAttributes): { listenerAttributes: if std.isArray(v=listenerAttributes) then listenerAttributes else [listenerAttributes] }, + '#withListenerAttributesMixin':: d.fn(help='"The attributes of the listener"\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='listenerAttributes', type=d.T.array)]), + withListenerAttributesMixin(listenerAttributes): { listenerAttributes+: if std.isArray(v=listenerAttributes) then listenerAttributes else [listenerAttributes] }, + '#withPort':: d.fn(help='"The port of the listener"', args=[d.arg(name='port', type=d.T.integer)]), + withPort(port): { port: port }, + '#withProtocol':: d.fn(help='"The protocol of the listener"', args=[d.arg(name='protocol', type=d.T.string)]), + withProtocol(protocol): { protocol: protocol }, + }, + '#loadBalancerAttributes':: d.obj(help='"LoadBalancerAttributes define the custom attributes to LoadBalancers for all Ingress that that belong to IngressClass with this IngressClassParams."'), + loadBalancerAttributes: { + '#withKey':: d.fn(help='"The key of the attribute."', args=[d.arg(name='key', type=d.T.string)]), + withKey(key): { key: key }, + '#withValue':: d.fn(help='"The value of the attribute."', args=[d.arg(name='value', type=d.T.string)]), + withValue(value): { value: value }, + }, + '#minimumLoadBalancerCapacity':: d.obj(help='"MinimumLoadBalancerCapacity define the capacity reservation for LoadBalancers for all Ingress that belong to IngressClass with this IngressClassParams."'), + minimumLoadBalancerCapacity: { + '#withCapacityUnits':: d.fn(help='"The Capacity Units Value."', args=[d.arg(name='capacityUnits', type=d.T.integer)]), + withCapacityUnits(capacityUnits): { spec+: { minimumLoadBalancerCapacity+: { capacityUnits: capacityUnits } } }, + }, + '#namespaceSelector':: d.obj(help='"NamespaceSelector restrict the namespaces of Ingresses that are allowed to specify the IngressClass with this IngressClassParams.\\n* if absent or present but empty, it selects all namespaces."'), + namespaceSelector: { + '#matchExpressions':: d.obj(help='"matchExpressions is a list of label selector requirements. The requirements are ANDed."'), + matchExpressions: { + '#withKey':: d.fn(help='"key is the label key that the selector applies to."', args=[d.arg(name='key', type=d.T.string)]), + withKey(key): { key: key }, + '#withOperator':: d.fn(help="\"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\"", args=[d.arg(name='operator', type=d.T.string)]), + withOperator(operator): { operator: operator }, + '#withValues':: d.fn(help='"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch."', args=[d.arg(name='values', type=d.T.array)]), + withValues(values): { values: if std.isArray(v=values) then values else [values] }, + '#withValuesMixin':: d.fn(help='"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='values', type=d.T.array)]), + withValuesMixin(values): { values+: if std.isArray(v=values) then values else [values] }, + }, + '#withMatchExpressions':: d.fn(help='"matchExpressions is a list of label selector requirements. The requirements are ANDed."', args=[d.arg(name='matchExpressions', type=d.T.array)]), + withMatchExpressions(matchExpressions): { spec+: { namespaceSelector+: { matchExpressions: if std.isArray(v=matchExpressions) then matchExpressions else [matchExpressions] } } }, + '#withMatchExpressionsMixin':: d.fn(help='"matchExpressions is a list of label selector requirements. The requirements are ANDed."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='matchExpressions', type=d.T.array)]), + withMatchExpressionsMixin(matchExpressions): { spec+: { namespaceSelector+: { matchExpressions+: if std.isArray(v=matchExpressions) then matchExpressions else [matchExpressions] } } }, + '#withMatchLabels':: d.fn(help='"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\"key\\", the\\noperator is \\"In\\", and the values array contains only \\"value\\". The requirements are ANDed."', args=[d.arg(name='matchLabels', type=d.T.object)]), + withMatchLabels(matchLabels): { spec+: { namespaceSelector+: { matchLabels: matchLabels } } }, + '#withMatchLabelsMixin':: d.fn(help='"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\"key\\", the\\noperator is \\"In\\", and the values array contains only \\"value\\". The requirements are ANDed."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='matchLabels', type=d.T.object)]), + withMatchLabelsMixin(matchLabels): { spec+: { namespaceSelector+: { matchLabels+: matchLabels } } }, + }, + '#subnets':: d.obj(help='"Subnets defines the subnets for all Ingresses that belong to IngressClass with this IngressClassParams."'), + subnets: { + '#withIds':: d.fn(help='"IDs specify the resource IDs of subnets. Exactly one of this or `tags` must be specified."', args=[d.arg(name='ids', type=d.T.array)]), + withIds(ids): { spec+: { subnets+: { ids: if std.isArray(v=ids) then ids else [ids] } } }, + '#withIdsMixin':: d.fn(help='"IDs specify the resource IDs of subnets. Exactly one of this or `tags` must be specified."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ids', type=d.T.array)]), + withIdsMixin(ids): { spec+: { subnets+: { ids+: if std.isArray(v=ids) then ids else [ids] } } }, + '#withTags':: d.fn(help="\"Tags specifies subnets in the load balancer's VPC where each\\ntag specified in the map key contains one of the values in the corresponding\\nvalue list.\\nExactly one of this or `ids` must be specified.\"", args=[d.arg(name='tags', type=d.T.object)]), + withTags(tags): { spec+: { subnets+: { tags: tags } } }, + '#withTagsMixin':: d.fn(help="\"Tags specifies subnets in the load balancer's VPC where each\\ntag specified in the map key contains one of the values in the corresponding\\nvalue list.\\nExactly one of this or `ids` must be specified.\"\n\n**Note:** This function appends passed data to existing values", args=[d.arg(name='tags', type=d.T.object)]), + withTagsMixin(tags): { spec+: { subnets+: { tags+: tags } } }, + }, + '#tags':: d.obj(help='"Tags defines list of Tags on AWS resources provisioned for Ingresses that belong to IngressClass with this IngressClassParams."'), + tags: { + '#withKey':: d.fn(help='"The key of the tag."', args=[d.arg(name='key', type=d.T.string)]), + withKey(key): { key: key }, + '#withValue':: d.fn(help='"The value of the tag."', args=[d.arg(name='value', type=d.T.string)]), + withValue(value): { value: value }, + }, + '#withCertificateArn':: d.fn(help='"CertificateArn specifies the ARN of the certificates for all Ingresses that belong to IngressClass with this IngressClassParams."', args=[d.arg(name='certificateArn', type=d.T.array)]), + withCertificateArn(certificateArn): { spec+: { certificateArn: if std.isArray(v=certificateArn) then certificateArn else [certificateArn] } }, + '#withCertificateArnMixin':: d.fn(help='"CertificateArn specifies the ARN of the certificates for all Ingresses that belong to IngressClass with this IngressClassParams."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='certificateArn', type=d.T.array)]), + withCertificateArnMixin(certificateArn): { spec+: { certificateArn+: if std.isArray(v=certificateArn) then certificateArn else [certificateArn] } }, + '#withInboundCIDRs':: d.fn(help='"InboundCIDRs specifies the CIDRs that are allowed to access the Ingresses that belong to IngressClass with this IngressClassParams."', args=[d.arg(name='inboundCIDRs', type=d.T.array)]), + withInboundCIDRs(inboundCIDRs): { spec+: { inboundCIDRs: if std.isArray(v=inboundCIDRs) then inboundCIDRs else [inboundCIDRs] } }, + '#withInboundCIDRsMixin':: d.fn(help='"InboundCIDRs specifies the CIDRs that are allowed to access the Ingresses that belong to IngressClass with this IngressClassParams."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='inboundCIDRs', type=d.T.array)]), + withInboundCIDRsMixin(inboundCIDRs): { spec+: { inboundCIDRs+: if std.isArray(v=inboundCIDRs) then inboundCIDRs else [inboundCIDRs] } }, + '#withIpAddressType':: d.fn(help='"IPAddressType defines the ip address type for all Ingresses that belong to IngressClass with this IngressClassParams."', args=[d.arg(name='ipAddressType', type=d.T.string)]), + withIpAddressType(ipAddressType): { spec+: { ipAddressType: ipAddressType } }, + '#withListeners':: d.fn(help='"Listeners define a list of listeners with their protocol, port and attributes."', args=[d.arg(name='listeners', type=d.T.array)]), + withListeners(listeners): { spec+: { listeners: if std.isArray(v=listeners) then listeners else [listeners] } }, + '#withListenersMixin':: d.fn(help='"Listeners define a list of listeners with their protocol, port and attributes."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='listeners', type=d.T.array)]), + withListenersMixin(listeners): { spec+: { listeners+: if std.isArray(v=listeners) then listeners else [listeners] } }, + '#withLoadBalancerAttributes':: d.fn(help='"LoadBalancerAttributes define the custom attributes to LoadBalancers for all Ingress that that belong to IngressClass with this IngressClassParams."', args=[d.arg(name='loadBalancerAttributes', type=d.T.array)]), + withLoadBalancerAttributes(loadBalancerAttributes): { spec+: { loadBalancerAttributes: if std.isArray(v=loadBalancerAttributes) then loadBalancerAttributes else [loadBalancerAttributes] } }, + '#withLoadBalancerAttributesMixin':: d.fn(help='"LoadBalancerAttributes define the custom attributes to LoadBalancers for all Ingress that that belong to IngressClass with this IngressClassParams."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='loadBalancerAttributes', type=d.T.array)]), + withLoadBalancerAttributesMixin(loadBalancerAttributes): { spec+: { loadBalancerAttributes+: if std.isArray(v=loadBalancerAttributes) then loadBalancerAttributes else [loadBalancerAttributes] } }, + '#withScheme':: d.fn(help='"Scheme defines the scheme for all Ingresses that belong to IngressClass with this IngressClassParams."', args=[d.arg(name='scheme', type=d.T.string)]), + withScheme(scheme): { spec+: { scheme: scheme } }, + '#withSslPolicy':: d.fn(help='"SSLPolicy specifies the SSL Policy for all Ingresses that belong to IngressClass with this IngressClassParams."', args=[d.arg(name='sslPolicy', type=d.T.string)]), + withSslPolicy(sslPolicy): { spec+: { sslPolicy: sslPolicy } }, + '#withTags':: d.fn(help='"Tags defines list of Tags on AWS resources provisioned for Ingresses that belong to IngressClass with this IngressClassParams."', args=[d.arg(name='tags', type=d.T.array)]), + withTags(tags): { spec+: { tags: if std.isArray(v=tags) then tags else [tags] } }, + '#withTagsMixin':: d.fn(help='"Tags defines list of Tags on AWS resources provisioned for Ingresses that belong to IngressClass with this IngressClassParams."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='tags', type=d.T.array)]), + withTagsMixin(tags): { spec+: { tags+: if std.isArray(v=tags) then tags else [tags] } }, + }, + '#mixin': 'ignore', + mixin: self, +} diff --git a/2.11/_gen/elbv2/v1beta1/main.libsonnet b/2.11/_gen/elbv2/v1beta1/main.libsonnet new file mode 100644 index 0000000..2f9fb69 --- /dev/null +++ b/2.11/_gen/elbv2/v1beta1/main.libsonnet @@ -0,0 +1,6 @@ +{ + local d = (import 'doc-util/main.libsonnet'), + '#':: d.pkg(name='v1beta1', url='', help=''), + ingressClassParams: (import 'ingressClassParams.libsonnet'), + targetGroupBinding: (import 'targetGroupBinding.libsonnet'), +} diff --git a/2.11/_gen/elbv2/v1beta1/targetGroupBinding.libsonnet b/2.11/_gen/elbv2/v1beta1/targetGroupBinding.libsonnet new file mode 100644 index 0000000..d038e6d --- /dev/null +++ b/2.11/_gen/elbv2/v1beta1/targetGroupBinding.libsonnet @@ -0,0 +1,134 @@ +{ + local d = (import 'doc-util/main.libsonnet'), + '#':: d.pkg(name='targetGroupBinding', url='', help='"TargetGroupBinding is the Schema for the TargetGroupBinding API"'), + '#metadata':: d.obj(help='"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create."'), + metadata: { + '#withAnnotations':: d.fn(help='"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"', args=[d.arg(name='annotations', type=d.T.object)]), + withAnnotations(annotations): { metadata+: { annotations: annotations } }, + '#withAnnotationsMixin':: d.fn(help='"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='annotations', type=d.T.object)]), + withAnnotationsMixin(annotations): { metadata+: { annotations+: annotations } }, + '#withClusterName':: d.fn(help='"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request."', args=[d.arg(name='clusterName', type=d.T.string)]), + withClusterName(clusterName): { metadata+: { clusterName: clusterName } }, + '#withCreationTimestamp':: d.fn(help='"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."', args=[d.arg(name='creationTimestamp', type=d.T.string)]), + withCreationTimestamp(creationTimestamp): { metadata+: { creationTimestamp: creationTimestamp } }, + '#withDeletionGracePeriodSeconds':: d.fn(help='"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only."', args=[d.arg(name='deletionGracePeriodSeconds', type=d.T.integer)]), + withDeletionGracePeriodSeconds(deletionGracePeriodSeconds): { metadata+: { deletionGracePeriodSeconds: deletionGracePeriodSeconds } }, + '#withDeletionTimestamp':: d.fn(help='"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."', args=[d.arg(name='deletionTimestamp', type=d.T.string)]), + withDeletionTimestamp(deletionTimestamp): { metadata+: { deletionTimestamp: deletionTimestamp } }, + '#withFinalizers':: d.fn(help='"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."', args=[d.arg(name='finalizers', type=d.T.array)]), + withFinalizers(finalizers): { metadata+: { finalizers: if std.isArray(v=finalizers) then finalizers else [finalizers] } }, + '#withFinalizersMixin':: d.fn(help='"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='finalizers', type=d.T.array)]), + withFinalizersMixin(finalizers): { metadata+: { finalizers+: if std.isArray(v=finalizers) then finalizers else [finalizers] } }, + '#withGenerateName':: d.fn(help='"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency"', args=[d.arg(name='generateName', type=d.T.string)]), + withGenerateName(generateName): { metadata+: { generateName: generateName } }, + '#withGeneration':: d.fn(help='"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only."', args=[d.arg(name='generation', type=d.T.integer)]), + withGeneration(generation): { metadata+: { generation: generation } }, + '#withLabels':: d.fn(help='"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"', args=[d.arg(name='labels', type=d.T.object)]), + withLabels(labels): { metadata+: { labels: labels } }, + '#withLabelsMixin':: d.fn(help='"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='labels', type=d.T.object)]), + withLabelsMixin(labels): { metadata+: { labels+: labels } }, + '#withName':: d.fn(help='"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names"', args=[d.arg(name='name', type=d.T.string)]), + withName(name): { metadata+: { name: name } }, + '#withNamespace':: d.fn(help='"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \\"default\\" namespace, but \\"default\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces"', args=[d.arg(name='namespace', type=d.T.string)]), + withNamespace(namespace): { metadata+: { namespace: namespace } }, + '#withOwnerReferences':: d.fn(help='"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."', args=[d.arg(name='ownerReferences', type=d.T.array)]), + withOwnerReferences(ownerReferences): { metadata+: { ownerReferences: if std.isArray(v=ownerReferences) then ownerReferences else [ownerReferences] } }, + '#withOwnerReferencesMixin':: d.fn(help='"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ownerReferences', type=d.T.array)]), + withOwnerReferencesMixin(ownerReferences): { metadata+: { ownerReferences+: if std.isArray(v=ownerReferences) then ownerReferences else [ownerReferences] } }, + '#withResourceVersion':: d.fn(help='"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency"', args=[d.arg(name='resourceVersion', type=d.T.string)]), + withResourceVersion(resourceVersion): { metadata+: { resourceVersion: resourceVersion } }, + '#withSelfLink':: d.fn(help='"SelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release."', args=[d.arg(name='selfLink', type=d.T.string)]), + withSelfLink(selfLink): { metadata+: { selfLink: selfLink } }, + '#withUid':: d.fn(help='"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids"', args=[d.arg(name='uid', type=d.T.string)]), + withUid(uid): { metadata+: { uid: uid } }, + }, + '#new':: d.fn(help='new returns an instance of TargetGroupBinding', args=[d.arg(name='name', type=d.T.string)]), + new(name): { + apiVersion: 'elbv2.k8s.aws/v1beta1', + kind: 'TargetGroupBinding', + } + self.metadata.withName(name=name), + '#spec':: d.obj(help='"TargetGroupBindingSpec defines the desired state of TargetGroupBinding"'), + spec: { + '#networking':: d.obj(help='"networking defines the networking rules to allow ELBV2 LoadBalancer to access targets in TargetGroup."'), + networking: { + '#ingress':: d.obj(help='"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup."'), + ingress: { + '#from':: d.obj(help='"List of peers which should be able to access the targets in TargetGroup.\\nAt least one NetworkingPeer should be specified."'), + from: { + '#ipBlock':: d.obj(help='"IPBlock defines an IPBlock peer.\\nIf specified, none of the other fields can be set."'), + ipBlock: { + '#withCidr':: d.fn(help='"CIDR is the network CIDR.\\nBoth IPV4 or IPV6 CIDR are accepted."', args=[d.arg(name='cidr', type=d.T.string)]), + withCidr(cidr): { ipBlock+: { cidr: cidr } }, + }, + '#securityGroup':: d.obj(help='"SecurityGroup defines a SecurityGroup peer.\\nIf specified, none of the other fields can be set."'), + securityGroup: { + '#withGroupID':: d.fn(help='"GroupID is the EC2 SecurityGroupID."', args=[d.arg(name='groupID', type=d.T.string)]), + withGroupID(groupID): { securityGroup+: { groupID: groupID } }, + }, + }, + '#ports':: d.obj(help='"List of ports which should be made accessible on the targets in TargetGroup.\\nIf ports is empty or unspecified, it defaults to all ports with TCP."'), + ports: { + '#withPort':: d.fn(help='"The port which traffic must match.\\nWhen NodePort endpoints(instance TargetType) is used, this must be a numerical port.\\nWhen Port endpoints(ip TargetType) is used, this can be either numerical or named port on pods.\\nif port is unspecified, it defaults to all ports."', args=[d.arg(name='port', type=d.T.any)]), + withPort(port): { port: port }, + '#withProtocol':: d.fn(help='"The protocol which traffic must match.\\nIf protocol is unspecified, it defaults to TCP."', args=[d.arg(name='protocol', type=d.T.string)]), + withProtocol(protocol): { protocol: protocol }, + }, + '#withFrom':: d.fn(help='"List of peers which should be able to access the targets in TargetGroup.\\nAt least one NetworkingPeer should be specified."', args=[d.arg(name='from', type=d.T.array)]), + withFrom(from): { from: if std.isArray(v=from) then from else [from] }, + '#withFromMixin':: d.fn(help='"List of peers which should be able to access the targets in TargetGroup.\\nAt least one NetworkingPeer should be specified."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='from', type=d.T.array)]), + withFromMixin(from): { from+: if std.isArray(v=from) then from else [from] }, + '#withPorts':: d.fn(help='"List of ports which should be made accessible on the targets in TargetGroup.\\nIf ports is empty or unspecified, it defaults to all ports with TCP."', args=[d.arg(name='ports', type=d.T.array)]), + withPorts(ports): { ports: if std.isArray(v=ports) then ports else [ports] }, + '#withPortsMixin':: d.fn(help='"List of ports which should be made accessible on the targets in TargetGroup.\\nIf ports is empty or unspecified, it defaults to all ports with TCP."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ports', type=d.T.array)]), + withPortsMixin(ports): { ports+: if std.isArray(v=ports) then ports else [ports] }, + }, + '#withIngress':: d.fn(help='"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup."', args=[d.arg(name='ingress', type=d.T.array)]), + withIngress(ingress): { spec+: { networking+: { ingress: if std.isArray(v=ingress) then ingress else [ingress] } } }, + '#withIngressMixin':: d.fn(help='"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='ingress', type=d.T.array)]), + withIngressMixin(ingress): { spec+: { networking+: { ingress+: if std.isArray(v=ingress) then ingress else [ingress] } } }, + }, + '#nodeSelector':: d.obj(help='"node selector for instance type target groups to only register certain nodes"'), + nodeSelector: { + '#matchExpressions':: d.obj(help='"matchExpressions is a list of label selector requirements. The requirements are ANDed."'), + matchExpressions: { + '#withKey':: d.fn(help='"key is the label key that the selector applies to."', args=[d.arg(name='key', type=d.T.string)]), + withKey(key): { key: key }, + '#withOperator':: d.fn(help="\"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\"", args=[d.arg(name='operator', type=d.T.string)]), + withOperator(operator): { operator: operator }, + '#withValues':: d.fn(help='"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch."', args=[d.arg(name='values', type=d.T.array)]), + withValues(values): { values: if std.isArray(v=values) then values else [values] }, + '#withValuesMixin':: d.fn(help='"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='values', type=d.T.array)]), + withValuesMixin(values): { values+: if std.isArray(v=values) then values else [values] }, + }, + '#withMatchExpressions':: d.fn(help='"matchExpressions is a list of label selector requirements. The requirements are ANDed."', args=[d.arg(name='matchExpressions', type=d.T.array)]), + withMatchExpressions(matchExpressions): { spec+: { nodeSelector+: { matchExpressions: if std.isArray(v=matchExpressions) then matchExpressions else [matchExpressions] } } }, + '#withMatchExpressionsMixin':: d.fn(help='"matchExpressions is a list of label selector requirements. The requirements are ANDed."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='matchExpressions', type=d.T.array)]), + withMatchExpressionsMixin(matchExpressions): { spec+: { nodeSelector+: { matchExpressions+: if std.isArray(v=matchExpressions) then matchExpressions else [matchExpressions] } } }, + '#withMatchLabels':: d.fn(help='"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\"key\\", the\\noperator is \\"In\\", and the values array contains only \\"value\\". The requirements are ANDed."', args=[d.arg(name='matchLabels', type=d.T.object)]), + withMatchLabels(matchLabels): { spec+: { nodeSelector+: { matchLabels: matchLabels } } }, + '#withMatchLabelsMixin':: d.fn(help='"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\"key\\", the\\noperator is \\"In\\", and the values array contains only \\"value\\". The requirements are ANDed."\n\n**Note:** This function appends passed data to existing values', args=[d.arg(name='matchLabels', type=d.T.object)]), + withMatchLabelsMixin(matchLabels): { spec+: { nodeSelector+: { matchLabels+: matchLabels } } }, + }, + '#serviceRef':: d.obj(help='"serviceRef is a reference to a Kubernetes Service and ServicePort."'), + serviceRef: { + '#withName':: d.fn(help='"Name is the name of the Service."', args=[d.arg(name='name', type=d.T.string)]), + withName(name): { spec+: { serviceRef+: { name: name } } }, + '#withPort':: d.fn(help='"Port is the port of the ServicePort."', args=[d.arg(name='port', type=d.T.any)]), + withPort(port): { spec+: { serviceRef+: { port: port } } }, + }, + '#withIpAddressType':: d.fn(help='"ipAddressType specifies whether the target group is of type IPv4 or IPv6. If unspecified, it will be automatically inferred."', args=[d.arg(name='ipAddressType', type=d.T.string)]), + withIpAddressType(ipAddressType): { spec+: { ipAddressType: ipAddressType } }, + '#withMultiClusterTargetGroup':: d.fn(help='"MultiClusterTargetGroup Denotes if the TargetGroup is shared among multiple clusters"', args=[d.arg(name='multiClusterTargetGroup', type=d.T.boolean)]), + withMultiClusterTargetGroup(multiClusterTargetGroup): { spec+: { multiClusterTargetGroup: multiClusterTargetGroup } }, + '#withTargetGroupARN':: d.fn(help='"targetGroupARN is the Amazon Resource Name (ARN) for the TargetGroup."', args=[d.arg(name='targetGroupARN', type=d.T.string)]), + withTargetGroupARN(targetGroupARN): { spec+: { targetGroupARN: targetGroupARN } }, + '#withTargetGroupName':: d.fn(help='"targetGroupName is the Name of the TargetGroup."', args=[d.arg(name='targetGroupName', type=d.T.string)]), + withTargetGroupName(targetGroupName): { spec+: { targetGroupName: targetGroupName } }, + '#withTargetType':: d.fn(help='"targetType is the TargetType of TargetGroup. If unspecified, it will be automatically inferred."', args=[d.arg(name='targetType', type=d.T.string)]), + withTargetType(targetType): { spec+: { targetType: targetType } }, + '#withVpcID':: d.fn(help='"VpcID is the VPC of the TargetGroup. If unspecified, it will be automatically inferred."', args=[d.arg(name='vpcID', type=d.T.string)]), + withVpcID(vpcID): { spec+: { vpcID: vpcID } }, + }, + '#mixin': 'ignore', + mixin: self, +} diff --git a/2.11/gen.libsonnet b/2.11/gen.libsonnet new file mode 100644 index 0000000..10550db --- /dev/null +++ b/2.11/gen.libsonnet @@ -0,0 +1,5 @@ +{ + local d = (import 'doc-util/main.libsonnet'), + '#':: d.pkg(name='aws_load_balancer_controller', url='github.com/jsonnet-libs/aws-load-balancer-controller-libsonnet/2.11/main.libsonnet', help=''), + elbv2:: (import '_gen/elbv2/main.libsonnet'), +} diff --git a/2.11/main.libsonnet b/2.11/main.libsonnet new file mode 100644 index 0000000..f5597a5 --- /dev/null +++ b/2.11/main.libsonnet @@ -0,0 +1 @@ +(import 'gen.libsonnet') diff --git a/docs/2.11/README.md b/docs/2.11/README.md new file mode 100644 index 0000000..903edba --- /dev/null +++ b/docs/2.11/README.md @@ -0,0 +1,13 @@ +--- +permalink: /2.11/ +--- + +# aws_load_balancer_controller + +```jsonnet +local aws_load_balancer_controller = import "github.com/jsonnet-libs/aws-load-balancer-controller-libsonnet/2.11/main.libsonnet" +``` + + + +* [elbv2](elbv2/index.md) \ No newline at end of file diff --git a/docs/2.11/elbv2/index.md b/docs/2.11/elbv2/index.md new file mode 100644 index 0000000..88b9bb3 --- /dev/null +++ b/docs/2.11/elbv2/index.md @@ -0,0 +1,10 @@ +--- +permalink: /2.11/elbv2/ +--- + +# elbv2 + + + +* [v1alpha1](v1alpha1/index.md) +* [v1beta1](v1beta1/index.md) \ No newline at end of file diff --git a/docs/2.11/elbv2/v1alpha1/index.md b/docs/2.11/elbv2/v1alpha1/index.md new file mode 100644 index 0000000..a587981 --- /dev/null +++ b/docs/2.11/elbv2/v1alpha1/index.md @@ -0,0 +1,9 @@ +--- +permalink: /2.11/elbv2/v1alpha1/ +--- + +# elbv2.v1alpha1 + + + +* [targetGroupBinding](targetGroupBinding.md) \ No newline at end of file diff --git a/docs/2.11/elbv2/v1alpha1/targetGroupBinding.md b/docs/2.11/elbv2/v1alpha1/targetGroupBinding.md new file mode 100644 index 0000000..b95184f --- /dev/null +++ b/docs/2.11/elbv2/v1alpha1/targetGroupBinding.md @@ -0,0 +1,395 @@ +--- +permalink: /2.11/elbv2/v1alpha1/targetGroupBinding/ +--- + +# elbv2.v1alpha1.targetGroupBinding + +"TargetGroupBinding is the Schema for the TargetGroupBinding API" + +## Index + +* [`fn new(name)`](#fn-new) +* [`obj metadata`](#obj-metadata) + * [`fn withAnnotations(annotations)`](#fn-metadatawithannotations) + * [`fn withAnnotationsMixin(annotations)`](#fn-metadatawithannotationsmixin) + * [`fn withClusterName(clusterName)`](#fn-metadatawithclustername) + * [`fn withCreationTimestamp(creationTimestamp)`](#fn-metadatawithcreationtimestamp) + * [`fn withDeletionGracePeriodSeconds(deletionGracePeriodSeconds)`](#fn-metadatawithdeletiongraceperiodseconds) + * [`fn withDeletionTimestamp(deletionTimestamp)`](#fn-metadatawithdeletiontimestamp) + * [`fn withFinalizers(finalizers)`](#fn-metadatawithfinalizers) + * [`fn withFinalizersMixin(finalizers)`](#fn-metadatawithfinalizersmixin) + * [`fn withGenerateName(generateName)`](#fn-metadatawithgeneratename) + * [`fn withGeneration(generation)`](#fn-metadatawithgeneration) + * [`fn withLabels(labels)`](#fn-metadatawithlabels) + * [`fn withLabelsMixin(labels)`](#fn-metadatawithlabelsmixin) + * [`fn withName(name)`](#fn-metadatawithname) + * [`fn withNamespace(namespace)`](#fn-metadatawithnamespace) + * [`fn withOwnerReferences(ownerReferences)`](#fn-metadatawithownerreferences) + * [`fn withOwnerReferencesMixin(ownerReferences)`](#fn-metadatawithownerreferencesmixin) + * [`fn withResourceVersion(resourceVersion)`](#fn-metadatawithresourceversion) + * [`fn withSelfLink(selfLink)`](#fn-metadatawithselflink) + * [`fn withUid(uid)`](#fn-metadatawithuid) +* [`obj spec`](#obj-spec) + * [`fn withMultiClusterTargetGroup(multiClusterTargetGroup)`](#fn-specwithmulticlustertargetgroup) + * [`fn withTargetGroupARN(targetGroupARN)`](#fn-specwithtargetgrouparn) + * [`fn withTargetGroupName(targetGroupName)`](#fn-specwithtargetgroupname) + * [`fn withTargetType(targetType)`](#fn-specwithtargettype) + * [`obj spec.networking`](#obj-specnetworking) + * [`fn withIngress(ingress)`](#fn-specnetworkingwithingress) + * [`fn withIngressMixin(ingress)`](#fn-specnetworkingwithingressmixin) + * [`obj spec.networking.ingress`](#obj-specnetworkingingress) + * [`fn withFrom(from)`](#fn-specnetworkingingresswithfrom) + * [`fn withFromMixin(from)`](#fn-specnetworkingingresswithfrommixin) + * [`fn withPorts(ports)`](#fn-specnetworkingingresswithports) + * [`fn withPortsMixin(ports)`](#fn-specnetworkingingresswithportsmixin) + * [`obj spec.networking.ingress.from`](#obj-specnetworkingingressfrom) + * [`obj spec.networking.ingress.from.ipBlock`](#obj-specnetworkingingressfromipblock) + * [`fn withCidr(cidr)`](#fn-specnetworkingingressfromipblockwithcidr) + * [`obj spec.networking.ingress.from.securityGroup`](#obj-specnetworkingingressfromsecuritygroup) + * [`fn withGroupID(groupID)`](#fn-specnetworkingingressfromsecuritygroupwithgroupid) + * [`obj spec.networking.ingress.ports`](#obj-specnetworkingingressports) + * [`fn withPort(port)`](#fn-specnetworkingingressportswithport) + * [`fn withProtocol(protocol)`](#fn-specnetworkingingressportswithprotocol) + * [`obj spec.serviceRef`](#obj-specserviceref) + * [`fn withName(name)`](#fn-specservicerefwithname) + * [`fn withPort(port)`](#fn-specservicerefwithport) + +## Fields + +### fn new + +```ts +new(name) +``` + +new returns an instance of TargetGroupBinding + +## obj metadata + +"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create." + +### fn metadata.withAnnotations + +```ts +withAnnotations(annotations) +``` + +"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations" + +### fn metadata.withAnnotationsMixin + +```ts +withAnnotationsMixin(annotations) +``` + +"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations" + +**Note:** This function appends passed data to existing values + +### fn metadata.withClusterName + +```ts +withClusterName(clusterName) +``` + +"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request." + +### fn metadata.withCreationTimestamp + +```ts +withCreationTimestamp(creationTimestamp) +``` + +"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers." + +### fn metadata.withDeletionGracePeriodSeconds + +```ts +withDeletionGracePeriodSeconds(deletionGracePeriodSeconds) +``` + +"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only." + +### fn metadata.withDeletionTimestamp + +```ts +withDeletionTimestamp(deletionTimestamp) +``` + +"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers." + +### fn metadata.withFinalizers + +```ts +withFinalizers(finalizers) +``` + +"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list." + +### fn metadata.withFinalizersMixin + +```ts +withFinalizersMixin(finalizers) +``` + +"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list." + +**Note:** This function appends passed data to existing values + +### fn metadata.withGenerateName + +```ts +withGenerateName(generateName) +``` + +"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency" + +### fn metadata.withGeneration + +```ts +withGeneration(generation) +``` + +"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only." + +### fn metadata.withLabels + +```ts +withLabels(labels) +``` + +"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels" + +### fn metadata.withLabelsMixin + +```ts +withLabelsMixin(labels) +``` + +"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels" + +**Note:** This function appends passed data to existing values + +### fn metadata.withName + +```ts +withName(name) +``` + +"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names" + +### fn metadata.withNamespace + +```ts +withNamespace(namespace) +``` + +"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces" + +### fn metadata.withOwnerReferences + +```ts +withOwnerReferences(ownerReferences) +``` + +"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller." + +### fn metadata.withOwnerReferencesMixin + +```ts +withOwnerReferencesMixin(ownerReferences) +``` + +"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller." + +**Note:** This function appends passed data to existing values + +### fn metadata.withResourceVersion + +```ts +withResourceVersion(resourceVersion) +``` + +"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency" + +### fn metadata.withSelfLink + +```ts +withSelfLink(selfLink) +``` + +"SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release." + +### fn metadata.withUid + +```ts +withUid(uid) +``` + +"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids" + +## obj spec + +"TargetGroupBindingSpec defines the desired state of TargetGroupBinding" + +### fn spec.withMultiClusterTargetGroup + +```ts +withMultiClusterTargetGroup(multiClusterTargetGroup) +``` + +"MultiClusterTargetGroup Denotes if the TargetGroup is shared among multiple clusters" + +### fn spec.withTargetGroupARN + +```ts +withTargetGroupARN(targetGroupARN) +``` + +"targetGroupARN is the Amazon Resource Name (ARN) for the TargetGroup." + +### fn spec.withTargetGroupName + +```ts +withTargetGroupName(targetGroupName) +``` + +"targetGroupName is the Name of the TargetGroup." + +### fn spec.withTargetType + +```ts +withTargetType(targetType) +``` + +"targetType is the TargetType of TargetGroup. If unspecified, it will be automatically inferred." + +## obj spec.networking + +"networking provides the networking setup for ELBV2 LoadBalancer to access targets in TargetGroup." + +### fn spec.networking.withIngress + +```ts +withIngress(ingress) +``` + +"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup." + +### fn spec.networking.withIngressMixin + +```ts +withIngressMixin(ingress) +``` + +"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup." + +**Note:** This function appends passed data to existing values + +## obj spec.networking.ingress + +"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup." + +### fn spec.networking.ingress.withFrom + +```ts +withFrom(from) +``` + +"List of peers which should be able to access the targets in TargetGroup.\nAt least one NetworkingPeer should be specified." + +### fn spec.networking.ingress.withFromMixin + +```ts +withFromMixin(from) +``` + +"List of peers which should be able to access the targets in TargetGroup.\nAt least one NetworkingPeer should be specified." + +**Note:** This function appends passed data to existing values + +### fn spec.networking.ingress.withPorts + +```ts +withPorts(ports) +``` + +"List of ports which should be made accessible on the targets in TargetGroup.\nIf ports is empty or unspecified, it defaults to all ports with TCP." + +### fn spec.networking.ingress.withPortsMixin + +```ts +withPortsMixin(ports) +``` + +"List of ports which should be made accessible on the targets in TargetGroup.\nIf ports is empty or unspecified, it defaults to all ports with TCP." + +**Note:** This function appends passed data to existing values + +## obj spec.networking.ingress.from + +"List of peers which should be able to access the targets in TargetGroup.\nAt least one NetworkingPeer should be specified." + +## obj spec.networking.ingress.from.ipBlock + +"IPBlock defines an IPBlock peer.\nIf specified, none of the other fields can be set." + +### fn spec.networking.ingress.from.ipBlock.withCidr + +```ts +withCidr(cidr) +``` + +"CIDR is the network CIDR.\nBoth IPV4 or IPV6 CIDR are accepted." + +## obj spec.networking.ingress.from.securityGroup + +"SecurityGroup defines a SecurityGroup peer.\nIf specified, none of the other fields can be set." + +### fn spec.networking.ingress.from.securityGroup.withGroupID + +```ts +withGroupID(groupID) +``` + +"GroupID is the EC2 SecurityGroupID." + +## obj spec.networking.ingress.ports + +"List of ports which should be made accessible on the targets in TargetGroup.\nIf ports is empty or unspecified, it defaults to all ports with TCP." + +### fn spec.networking.ingress.ports.withPort + +```ts +withPort(port) +``` + +"The port which traffic must match.\nWhen NodePort endpoints(instance TargetType) is used, this must be a numerical port.\nWhen Port endpoints(ip TargetType) is used, this can be either numerical or named port on pods.\nif port is unspecified, it defaults to all ports." + +### fn spec.networking.ingress.ports.withProtocol + +```ts +withProtocol(protocol) +``` + +"The protocol which traffic must match.\nIf protocol is unspecified, it defaults to TCP." + +## obj spec.serviceRef + +"serviceRef is a reference to a Kubernetes Service and ServicePort." + +### fn spec.serviceRef.withName + +```ts +withName(name) +``` + +"Name is the name of the Service." + +### fn spec.serviceRef.withPort + +```ts +withPort(port) +``` + +"Port is the port of the ServicePort." \ No newline at end of file diff --git a/docs/2.11/elbv2/v1beta1/index.md b/docs/2.11/elbv2/v1beta1/index.md new file mode 100644 index 0000000..48b7d85 --- /dev/null +++ b/docs/2.11/elbv2/v1beta1/index.md @@ -0,0 +1,10 @@ +--- +permalink: /2.11/elbv2/v1beta1/ +--- + +# elbv2.v1beta1 + + + +* [ingressClassParams](ingressClassParams.md) +* [targetGroupBinding](targetGroupBinding.md) \ No newline at end of file diff --git a/docs/2.11/elbv2/v1beta1/ingressClassParams.md b/docs/2.11/elbv2/v1beta1/ingressClassParams.md new file mode 100644 index 0000000..394bc0b --- /dev/null +++ b/docs/2.11/elbv2/v1beta1/ingressClassParams.md @@ -0,0 +1,610 @@ +--- +permalink: /2.11/elbv2/v1beta1/ingressClassParams/ +--- + +# elbv2.v1beta1.ingressClassParams + +"IngressClassParams is the Schema for the IngressClassParams API" + +## Index + +* [`fn new(name)`](#fn-new) +* [`obj metadata`](#obj-metadata) + * [`fn withAnnotations(annotations)`](#fn-metadatawithannotations) + * [`fn withAnnotationsMixin(annotations)`](#fn-metadatawithannotationsmixin) + * [`fn withClusterName(clusterName)`](#fn-metadatawithclustername) + * [`fn withCreationTimestamp(creationTimestamp)`](#fn-metadatawithcreationtimestamp) + * [`fn withDeletionGracePeriodSeconds(deletionGracePeriodSeconds)`](#fn-metadatawithdeletiongraceperiodseconds) + * [`fn withDeletionTimestamp(deletionTimestamp)`](#fn-metadatawithdeletiontimestamp) + * [`fn withFinalizers(finalizers)`](#fn-metadatawithfinalizers) + * [`fn withFinalizersMixin(finalizers)`](#fn-metadatawithfinalizersmixin) + * [`fn withGenerateName(generateName)`](#fn-metadatawithgeneratename) + * [`fn withGeneration(generation)`](#fn-metadatawithgeneration) + * [`fn withLabels(labels)`](#fn-metadatawithlabels) + * [`fn withLabelsMixin(labels)`](#fn-metadatawithlabelsmixin) + * [`fn withName(name)`](#fn-metadatawithname) + * [`fn withNamespace(namespace)`](#fn-metadatawithnamespace) + * [`fn withOwnerReferences(ownerReferences)`](#fn-metadatawithownerreferences) + * [`fn withOwnerReferencesMixin(ownerReferences)`](#fn-metadatawithownerreferencesmixin) + * [`fn withResourceVersion(resourceVersion)`](#fn-metadatawithresourceversion) + * [`fn withSelfLink(selfLink)`](#fn-metadatawithselflink) + * [`fn withUid(uid)`](#fn-metadatawithuid) +* [`obj spec`](#obj-spec) + * [`fn withCertificateArn(certificateArn)`](#fn-specwithcertificatearn) + * [`fn withCertificateArnMixin(certificateArn)`](#fn-specwithcertificatearnmixin) + * [`fn withInboundCIDRs(inboundCIDRs)`](#fn-specwithinboundcidrs) + * [`fn withInboundCIDRsMixin(inboundCIDRs)`](#fn-specwithinboundcidrsmixin) + * [`fn withIpAddressType(ipAddressType)`](#fn-specwithipaddresstype) + * [`fn withListeners(listeners)`](#fn-specwithlisteners) + * [`fn withListenersMixin(listeners)`](#fn-specwithlistenersmixin) + * [`fn withLoadBalancerAttributes(loadBalancerAttributes)`](#fn-specwithloadbalancerattributes) + * [`fn withLoadBalancerAttributesMixin(loadBalancerAttributes)`](#fn-specwithloadbalancerattributesmixin) + * [`fn withScheme(scheme)`](#fn-specwithscheme) + * [`fn withSslPolicy(sslPolicy)`](#fn-specwithsslpolicy) + * [`fn withTags(tags)`](#fn-specwithtags) + * [`fn withTagsMixin(tags)`](#fn-specwithtagsmixin) + * [`obj spec.group`](#obj-specgroup) + * [`fn withName(name)`](#fn-specgroupwithname) + * [`obj spec.listeners`](#obj-speclisteners) + * [`fn withListenerAttributes(listenerAttributes)`](#fn-speclistenerswithlistenerattributes) + * [`fn withListenerAttributesMixin(listenerAttributes)`](#fn-speclistenerswithlistenerattributesmixin) + * [`fn withPort(port)`](#fn-speclistenerswithport) + * [`fn withProtocol(protocol)`](#fn-speclistenerswithprotocol) + * [`obj spec.listeners.listenerAttributes`](#obj-speclistenerslistenerattributes) + * [`fn withKey(key)`](#fn-speclistenerslistenerattributeswithkey) + * [`fn withValue(value)`](#fn-speclistenerslistenerattributeswithvalue) + * [`obj spec.loadBalancerAttributes`](#obj-specloadbalancerattributes) + * [`fn withKey(key)`](#fn-specloadbalancerattributeswithkey) + * [`fn withValue(value)`](#fn-specloadbalancerattributeswithvalue) + * [`obj spec.minimumLoadBalancerCapacity`](#obj-specminimumloadbalancercapacity) + * [`fn withCapacityUnits(capacityUnits)`](#fn-specminimumloadbalancercapacitywithcapacityunits) + * [`obj spec.namespaceSelector`](#obj-specnamespaceselector) + * [`fn withMatchExpressions(matchExpressions)`](#fn-specnamespaceselectorwithmatchexpressions) + * [`fn withMatchExpressionsMixin(matchExpressions)`](#fn-specnamespaceselectorwithmatchexpressionsmixin) + * [`fn withMatchLabels(matchLabels)`](#fn-specnamespaceselectorwithmatchlabels) + * [`fn withMatchLabelsMixin(matchLabels)`](#fn-specnamespaceselectorwithmatchlabelsmixin) + * [`obj spec.namespaceSelector.matchExpressions`](#obj-specnamespaceselectormatchexpressions) + * [`fn withKey(key)`](#fn-specnamespaceselectormatchexpressionswithkey) + * [`fn withOperator(operator)`](#fn-specnamespaceselectormatchexpressionswithoperator) + * [`fn withValues(values)`](#fn-specnamespaceselectormatchexpressionswithvalues) + * [`fn withValuesMixin(values)`](#fn-specnamespaceselectormatchexpressionswithvaluesmixin) + * [`obj spec.subnets`](#obj-specsubnets) + * [`fn withIds(ids)`](#fn-specsubnetswithids) + * [`fn withIdsMixin(ids)`](#fn-specsubnetswithidsmixin) + * [`fn withTags(tags)`](#fn-specsubnetswithtags) + * [`fn withTagsMixin(tags)`](#fn-specsubnetswithtagsmixin) + * [`obj spec.tags`](#obj-spectags) + * [`fn withKey(key)`](#fn-spectagswithkey) + * [`fn withValue(value)`](#fn-spectagswithvalue) + +## Fields + +### fn new + +```ts +new(name) +``` + +new returns an instance of IngressClassParams + +## obj metadata + +"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create." + +### fn metadata.withAnnotations + +```ts +withAnnotations(annotations) +``` + +"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations" + +### fn metadata.withAnnotationsMixin + +```ts +withAnnotationsMixin(annotations) +``` + +"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations" + +**Note:** This function appends passed data to existing values + +### fn metadata.withClusterName + +```ts +withClusterName(clusterName) +``` + +"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request." + +### fn metadata.withCreationTimestamp + +```ts +withCreationTimestamp(creationTimestamp) +``` + +"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers." + +### fn metadata.withDeletionGracePeriodSeconds + +```ts +withDeletionGracePeriodSeconds(deletionGracePeriodSeconds) +``` + +"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only." + +### fn metadata.withDeletionTimestamp + +```ts +withDeletionTimestamp(deletionTimestamp) +``` + +"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers." + +### fn metadata.withFinalizers + +```ts +withFinalizers(finalizers) +``` + +"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list." + +### fn metadata.withFinalizersMixin + +```ts +withFinalizersMixin(finalizers) +``` + +"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list." + +**Note:** This function appends passed data to existing values + +### fn metadata.withGenerateName + +```ts +withGenerateName(generateName) +``` + +"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency" + +### fn metadata.withGeneration + +```ts +withGeneration(generation) +``` + +"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only." + +### fn metadata.withLabels + +```ts +withLabels(labels) +``` + +"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels" + +### fn metadata.withLabelsMixin + +```ts +withLabelsMixin(labels) +``` + +"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels" + +**Note:** This function appends passed data to existing values + +### fn metadata.withName + +```ts +withName(name) +``` + +"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names" + +### fn metadata.withNamespace + +```ts +withNamespace(namespace) +``` + +"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces" + +### fn metadata.withOwnerReferences + +```ts +withOwnerReferences(ownerReferences) +``` + +"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller." + +### fn metadata.withOwnerReferencesMixin + +```ts +withOwnerReferencesMixin(ownerReferences) +``` + +"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller." + +**Note:** This function appends passed data to existing values + +### fn metadata.withResourceVersion + +```ts +withResourceVersion(resourceVersion) +``` + +"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency" + +### fn metadata.withSelfLink + +```ts +withSelfLink(selfLink) +``` + +"SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release." + +### fn metadata.withUid + +```ts +withUid(uid) +``` + +"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids" + +## obj spec + +"IngressClassParamsSpec defines the desired state of IngressClassParams" + +### fn spec.withCertificateArn + +```ts +withCertificateArn(certificateArn) +``` + +"CertificateArn specifies the ARN of the certificates for all Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.withCertificateArnMixin + +```ts +withCertificateArnMixin(certificateArn) +``` + +"CertificateArn specifies the ARN of the certificates for all Ingresses that belong to IngressClass with this IngressClassParams." + +**Note:** This function appends passed data to existing values + +### fn spec.withInboundCIDRs + +```ts +withInboundCIDRs(inboundCIDRs) +``` + +"InboundCIDRs specifies the CIDRs that are allowed to access the Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.withInboundCIDRsMixin + +```ts +withInboundCIDRsMixin(inboundCIDRs) +``` + +"InboundCIDRs specifies the CIDRs that are allowed to access the Ingresses that belong to IngressClass with this IngressClassParams." + +**Note:** This function appends passed data to existing values + +### fn spec.withIpAddressType + +```ts +withIpAddressType(ipAddressType) +``` + +"IPAddressType defines the ip address type for all Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.withListeners + +```ts +withListeners(listeners) +``` + +"Listeners define a list of listeners with their protocol, port and attributes." + +### fn spec.withListenersMixin + +```ts +withListenersMixin(listeners) +``` + +"Listeners define a list of listeners with their protocol, port and attributes." + +**Note:** This function appends passed data to existing values + +### fn spec.withLoadBalancerAttributes + +```ts +withLoadBalancerAttributes(loadBalancerAttributes) +``` + +"LoadBalancerAttributes define the custom attributes to LoadBalancers for all Ingress that that belong to IngressClass with this IngressClassParams." + +### fn spec.withLoadBalancerAttributesMixin + +```ts +withLoadBalancerAttributesMixin(loadBalancerAttributes) +``` + +"LoadBalancerAttributes define the custom attributes to LoadBalancers for all Ingress that that belong to IngressClass with this IngressClassParams." + +**Note:** This function appends passed data to existing values + +### fn spec.withScheme + +```ts +withScheme(scheme) +``` + +"Scheme defines the scheme for all Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.withSslPolicy + +```ts +withSslPolicy(sslPolicy) +``` + +"SSLPolicy specifies the SSL Policy for all Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.withTags + +```ts +withTags(tags) +``` + +"Tags defines list of Tags on AWS resources provisioned for Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.withTagsMixin + +```ts +withTagsMixin(tags) +``` + +"Tags defines list of Tags on AWS resources provisioned for Ingresses that belong to IngressClass with this IngressClassParams." + +**Note:** This function appends passed data to existing values + +## obj spec.group + +"Group defines the IngressGroup for all Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.group.withName + +```ts +withName(name) +``` + +"Name is the name of IngressGroup." + +## obj spec.listeners + +"Listeners define a list of listeners with their protocol, port and attributes." + +### fn spec.listeners.withListenerAttributes + +```ts +withListenerAttributes(listenerAttributes) +``` + +"The attributes of the listener" + +### fn spec.listeners.withListenerAttributesMixin + +```ts +withListenerAttributesMixin(listenerAttributes) +``` + +"The attributes of the listener" + +**Note:** This function appends passed data to existing values + +### fn spec.listeners.withPort + +```ts +withPort(port) +``` + +"The port of the listener" + +### fn spec.listeners.withProtocol + +```ts +withProtocol(protocol) +``` + +"The protocol of the listener" + +## obj spec.listeners.listenerAttributes + +"The attributes of the listener" + +### fn spec.listeners.listenerAttributes.withKey + +```ts +withKey(key) +``` + +"The key of the attribute." + +### fn spec.listeners.listenerAttributes.withValue + +```ts +withValue(value) +``` + +"The value of the attribute." + +## obj spec.loadBalancerAttributes + +"LoadBalancerAttributes define the custom attributes to LoadBalancers for all Ingress that that belong to IngressClass with this IngressClassParams." + +### fn spec.loadBalancerAttributes.withKey + +```ts +withKey(key) +``` + +"The key of the attribute." + +### fn spec.loadBalancerAttributes.withValue + +```ts +withValue(value) +``` + +"The value of the attribute." + +## obj spec.minimumLoadBalancerCapacity + +"MinimumLoadBalancerCapacity define the capacity reservation for LoadBalancers for all Ingress that belong to IngressClass with this IngressClassParams." + +### fn spec.minimumLoadBalancerCapacity.withCapacityUnits + +```ts +withCapacityUnits(capacityUnits) +``` + +"The Capacity Units Value." + +## obj spec.namespaceSelector + +"NamespaceSelector restrict the namespaces of Ingresses that are allowed to specify the IngressClass with this IngressClassParams.\n* if absent or present but empty, it selects all namespaces." + +### fn spec.namespaceSelector.withMatchExpressions + +```ts +withMatchExpressions(matchExpressions) +``` + +"matchExpressions is a list of label selector requirements. The requirements are ANDed." + +### fn spec.namespaceSelector.withMatchExpressionsMixin + +```ts +withMatchExpressionsMixin(matchExpressions) +``` + +"matchExpressions is a list of label selector requirements. The requirements are ANDed." + +**Note:** This function appends passed data to existing values + +### fn spec.namespaceSelector.withMatchLabels + +```ts +withMatchLabels(matchLabels) +``` + +"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed." + +### fn spec.namespaceSelector.withMatchLabelsMixin + +```ts +withMatchLabelsMixin(matchLabels) +``` + +"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed." + +**Note:** This function appends passed data to existing values + +## obj spec.namespaceSelector.matchExpressions + +"matchExpressions is a list of label selector requirements. The requirements are ANDed." + +### fn spec.namespaceSelector.matchExpressions.withKey + +```ts +withKey(key) +``` + +"key is the label key that the selector applies to." + +### fn spec.namespaceSelector.matchExpressions.withOperator + +```ts +withOperator(operator) +``` + +"operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist." + +### fn spec.namespaceSelector.matchExpressions.withValues + +```ts +withValues(values) +``` + +"values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch." + +### fn spec.namespaceSelector.matchExpressions.withValuesMixin + +```ts +withValuesMixin(values) +``` + +"values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch." + +**Note:** This function appends passed data to existing values + +## obj spec.subnets + +"Subnets defines the subnets for all Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.subnets.withIds + +```ts +withIds(ids) +``` + +"IDs specify the resource IDs of subnets. Exactly one of this or `tags` must be specified." + +### fn spec.subnets.withIdsMixin + +```ts +withIdsMixin(ids) +``` + +"IDs specify the resource IDs of subnets. Exactly one of this or `tags` must be specified." + +**Note:** This function appends passed data to existing values + +### fn spec.subnets.withTags + +```ts +withTags(tags) +``` + +"Tags specifies subnets in the load balancer's VPC where each\ntag specified in the map key contains one of the values in the corresponding\nvalue list.\nExactly one of this or `ids` must be specified." + +### fn spec.subnets.withTagsMixin + +```ts +withTagsMixin(tags) +``` + +"Tags specifies subnets in the load balancer's VPC where each\ntag specified in the map key contains one of the values in the corresponding\nvalue list.\nExactly one of this or `ids` must be specified." + +**Note:** This function appends passed data to existing values + +## obj spec.tags + +"Tags defines list of Tags on AWS resources provisioned for Ingresses that belong to IngressClass with this IngressClassParams." + +### fn spec.tags.withKey + +```ts +withKey(key) +``` + +"The key of the tag." + +### fn spec.tags.withValue + +```ts +withValue(value) +``` + +"The value of the tag." \ No newline at end of file diff --git a/docs/2.11/elbv2/v1beta1/targetGroupBinding.md b/docs/2.11/elbv2/v1beta1/targetGroupBinding.md new file mode 100644 index 0000000..00d8e19 --- /dev/null +++ b/docs/2.11/elbv2/v1beta1/targetGroupBinding.md @@ -0,0 +1,501 @@ +--- +permalink: /2.11/elbv2/v1beta1/targetGroupBinding/ +--- + +# elbv2.v1beta1.targetGroupBinding + +"TargetGroupBinding is the Schema for the TargetGroupBinding API" + +## Index + +* [`fn new(name)`](#fn-new) +* [`obj metadata`](#obj-metadata) + * [`fn withAnnotations(annotations)`](#fn-metadatawithannotations) + * [`fn withAnnotationsMixin(annotations)`](#fn-metadatawithannotationsmixin) + * [`fn withClusterName(clusterName)`](#fn-metadatawithclustername) + * [`fn withCreationTimestamp(creationTimestamp)`](#fn-metadatawithcreationtimestamp) + * [`fn withDeletionGracePeriodSeconds(deletionGracePeriodSeconds)`](#fn-metadatawithdeletiongraceperiodseconds) + * [`fn withDeletionTimestamp(deletionTimestamp)`](#fn-metadatawithdeletiontimestamp) + * [`fn withFinalizers(finalizers)`](#fn-metadatawithfinalizers) + * [`fn withFinalizersMixin(finalizers)`](#fn-metadatawithfinalizersmixin) + * [`fn withGenerateName(generateName)`](#fn-metadatawithgeneratename) + * [`fn withGeneration(generation)`](#fn-metadatawithgeneration) + * [`fn withLabels(labels)`](#fn-metadatawithlabels) + * [`fn withLabelsMixin(labels)`](#fn-metadatawithlabelsmixin) + * [`fn withName(name)`](#fn-metadatawithname) + * [`fn withNamespace(namespace)`](#fn-metadatawithnamespace) + * [`fn withOwnerReferences(ownerReferences)`](#fn-metadatawithownerreferences) + * [`fn withOwnerReferencesMixin(ownerReferences)`](#fn-metadatawithownerreferencesmixin) + * [`fn withResourceVersion(resourceVersion)`](#fn-metadatawithresourceversion) + * [`fn withSelfLink(selfLink)`](#fn-metadatawithselflink) + * [`fn withUid(uid)`](#fn-metadatawithuid) +* [`obj spec`](#obj-spec) + * [`fn withIpAddressType(ipAddressType)`](#fn-specwithipaddresstype) + * [`fn withMultiClusterTargetGroup(multiClusterTargetGroup)`](#fn-specwithmulticlustertargetgroup) + * [`fn withTargetGroupARN(targetGroupARN)`](#fn-specwithtargetgrouparn) + * [`fn withTargetGroupName(targetGroupName)`](#fn-specwithtargetgroupname) + * [`fn withTargetType(targetType)`](#fn-specwithtargettype) + * [`fn withVpcID(vpcID)`](#fn-specwithvpcid) + * [`obj spec.networking`](#obj-specnetworking) + * [`fn withIngress(ingress)`](#fn-specnetworkingwithingress) + * [`fn withIngressMixin(ingress)`](#fn-specnetworkingwithingressmixin) + * [`obj spec.networking.ingress`](#obj-specnetworkingingress) + * [`fn withFrom(from)`](#fn-specnetworkingingresswithfrom) + * [`fn withFromMixin(from)`](#fn-specnetworkingingresswithfrommixin) + * [`fn withPorts(ports)`](#fn-specnetworkingingresswithports) + * [`fn withPortsMixin(ports)`](#fn-specnetworkingingresswithportsmixin) + * [`obj spec.networking.ingress.from`](#obj-specnetworkingingressfrom) + * [`obj spec.networking.ingress.from.ipBlock`](#obj-specnetworkingingressfromipblock) + * [`fn withCidr(cidr)`](#fn-specnetworkingingressfromipblockwithcidr) + * [`obj spec.networking.ingress.from.securityGroup`](#obj-specnetworkingingressfromsecuritygroup) + * [`fn withGroupID(groupID)`](#fn-specnetworkingingressfromsecuritygroupwithgroupid) + * [`obj spec.networking.ingress.ports`](#obj-specnetworkingingressports) + * [`fn withPort(port)`](#fn-specnetworkingingressportswithport) + * [`fn withProtocol(protocol)`](#fn-specnetworkingingressportswithprotocol) + * [`obj spec.nodeSelector`](#obj-specnodeselector) + * [`fn withMatchExpressions(matchExpressions)`](#fn-specnodeselectorwithmatchexpressions) + * [`fn withMatchExpressionsMixin(matchExpressions)`](#fn-specnodeselectorwithmatchexpressionsmixin) + * [`fn withMatchLabels(matchLabels)`](#fn-specnodeselectorwithmatchlabels) + * [`fn withMatchLabelsMixin(matchLabels)`](#fn-specnodeselectorwithmatchlabelsmixin) + * [`obj spec.nodeSelector.matchExpressions`](#obj-specnodeselectormatchexpressions) + * [`fn withKey(key)`](#fn-specnodeselectormatchexpressionswithkey) + * [`fn withOperator(operator)`](#fn-specnodeselectormatchexpressionswithoperator) + * [`fn withValues(values)`](#fn-specnodeselectormatchexpressionswithvalues) + * [`fn withValuesMixin(values)`](#fn-specnodeselectormatchexpressionswithvaluesmixin) + * [`obj spec.serviceRef`](#obj-specserviceref) + * [`fn withName(name)`](#fn-specservicerefwithname) + * [`fn withPort(port)`](#fn-specservicerefwithport) + +## Fields + +### fn new + +```ts +new(name) +``` + +new returns an instance of TargetGroupBinding + +## obj metadata + +"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create." + +### fn metadata.withAnnotations + +```ts +withAnnotations(annotations) +``` + +"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations" + +### fn metadata.withAnnotationsMixin + +```ts +withAnnotationsMixin(annotations) +``` + +"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations" + +**Note:** This function appends passed data to existing values + +### fn metadata.withClusterName + +```ts +withClusterName(clusterName) +``` + +"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request." + +### fn metadata.withCreationTimestamp + +```ts +withCreationTimestamp(creationTimestamp) +``` + +"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers." + +### fn metadata.withDeletionGracePeriodSeconds + +```ts +withDeletionGracePeriodSeconds(deletionGracePeriodSeconds) +``` + +"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only." + +### fn metadata.withDeletionTimestamp + +```ts +withDeletionTimestamp(deletionTimestamp) +``` + +"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers." + +### fn metadata.withFinalizers + +```ts +withFinalizers(finalizers) +``` + +"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list." + +### fn metadata.withFinalizersMixin + +```ts +withFinalizersMixin(finalizers) +``` + +"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list." + +**Note:** This function appends passed data to existing values + +### fn metadata.withGenerateName + +```ts +withGenerateName(generateName) +``` + +"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency" + +### fn metadata.withGeneration + +```ts +withGeneration(generation) +``` + +"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only." + +### fn metadata.withLabels + +```ts +withLabels(labels) +``` + +"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels" + +### fn metadata.withLabelsMixin + +```ts +withLabelsMixin(labels) +``` + +"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels" + +**Note:** This function appends passed data to existing values + +### fn metadata.withName + +```ts +withName(name) +``` + +"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names" + +### fn metadata.withNamespace + +```ts +withNamespace(namespace) +``` + +"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces" + +### fn metadata.withOwnerReferences + +```ts +withOwnerReferences(ownerReferences) +``` + +"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller." + +### fn metadata.withOwnerReferencesMixin + +```ts +withOwnerReferencesMixin(ownerReferences) +``` + +"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller." + +**Note:** This function appends passed data to existing values + +### fn metadata.withResourceVersion + +```ts +withResourceVersion(resourceVersion) +``` + +"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency" + +### fn metadata.withSelfLink + +```ts +withSelfLink(selfLink) +``` + +"SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release." + +### fn metadata.withUid + +```ts +withUid(uid) +``` + +"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids" + +## obj spec + +"TargetGroupBindingSpec defines the desired state of TargetGroupBinding" + +### fn spec.withIpAddressType + +```ts +withIpAddressType(ipAddressType) +``` + +"ipAddressType specifies whether the target group is of type IPv4 or IPv6. If unspecified, it will be automatically inferred." + +### fn spec.withMultiClusterTargetGroup + +```ts +withMultiClusterTargetGroup(multiClusterTargetGroup) +``` + +"MultiClusterTargetGroup Denotes if the TargetGroup is shared among multiple clusters" + +### fn spec.withTargetGroupARN + +```ts +withTargetGroupARN(targetGroupARN) +``` + +"targetGroupARN is the Amazon Resource Name (ARN) for the TargetGroup." + +### fn spec.withTargetGroupName + +```ts +withTargetGroupName(targetGroupName) +``` + +"targetGroupName is the Name of the TargetGroup." + +### fn spec.withTargetType + +```ts +withTargetType(targetType) +``` + +"targetType is the TargetType of TargetGroup. If unspecified, it will be automatically inferred." + +### fn spec.withVpcID + +```ts +withVpcID(vpcID) +``` + +"VpcID is the VPC of the TargetGroup. If unspecified, it will be automatically inferred." + +## obj spec.networking + +"networking defines the networking rules to allow ELBV2 LoadBalancer to access targets in TargetGroup." + +### fn spec.networking.withIngress + +```ts +withIngress(ingress) +``` + +"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup." + +### fn spec.networking.withIngressMixin + +```ts +withIngressMixin(ingress) +``` + +"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup." + +**Note:** This function appends passed data to existing values + +## obj spec.networking.ingress + +"List of ingress rules to allow ELBV2 LoadBalancer to access targets in TargetGroup." + +### fn spec.networking.ingress.withFrom + +```ts +withFrom(from) +``` + +"List of peers which should be able to access the targets in TargetGroup.\nAt least one NetworkingPeer should be specified." + +### fn spec.networking.ingress.withFromMixin + +```ts +withFromMixin(from) +``` + +"List of peers which should be able to access the targets in TargetGroup.\nAt least one NetworkingPeer should be specified." + +**Note:** This function appends passed data to existing values + +### fn spec.networking.ingress.withPorts + +```ts +withPorts(ports) +``` + +"List of ports which should be made accessible on the targets in TargetGroup.\nIf ports is empty or unspecified, it defaults to all ports with TCP." + +### fn spec.networking.ingress.withPortsMixin + +```ts +withPortsMixin(ports) +``` + +"List of ports which should be made accessible on the targets in TargetGroup.\nIf ports is empty or unspecified, it defaults to all ports with TCP." + +**Note:** This function appends passed data to existing values + +## obj spec.networking.ingress.from + +"List of peers which should be able to access the targets in TargetGroup.\nAt least one NetworkingPeer should be specified." + +## obj spec.networking.ingress.from.ipBlock + +"IPBlock defines an IPBlock peer.\nIf specified, none of the other fields can be set." + +### fn spec.networking.ingress.from.ipBlock.withCidr + +```ts +withCidr(cidr) +``` + +"CIDR is the network CIDR.\nBoth IPV4 or IPV6 CIDR are accepted." + +## obj spec.networking.ingress.from.securityGroup + +"SecurityGroup defines a SecurityGroup peer.\nIf specified, none of the other fields can be set." + +### fn spec.networking.ingress.from.securityGroup.withGroupID + +```ts +withGroupID(groupID) +``` + +"GroupID is the EC2 SecurityGroupID." + +## obj spec.networking.ingress.ports + +"List of ports which should be made accessible on the targets in TargetGroup.\nIf ports is empty or unspecified, it defaults to all ports with TCP." + +### fn spec.networking.ingress.ports.withPort + +```ts +withPort(port) +``` + +"The port which traffic must match.\nWhen NodePort endpoints(instance TargetType) is used, this must be a numerical port.\nWhen Port endpoints(ip TargetType) is used, this can be either numerical or named port on pods.\nif port is unspecified, it defaults to all ports." + +### fn spec.networking.ingress.ports.withProtocol + +```ts +withProtocol(protocol) +``` + +"The protocol which traffic must match.\nIf protocol is unspecified, it defaults to TCP." + +## obj spec.nodeSelector + +"node selector for instance type target groups to only register certain nodes" + +### fn spec.nodeSelector.withMatchExpressions + +```ts +withMatchExpressions(matchExpressions) +``` + +"matchExpressions is a list of label selector requirements. The requirements are ANDed." + +### fn spec.nodeSelector.withMatchExpressionsMixin + +```ts +withMatchExpressionsMixin(matchExpressions) +``` + +"matchExpressions is a list of label selector requirements. The requirements are ANDed." + +**Note:** This function appends passed data to existing values + +### fn spec.nodeSelector.withMatchLabels + +```ts +withMatchLabels(matchLabels) +``` + +"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed." + +### fn spec.nodeSelector.withMatchLabelsMixin + +```ts +withMatchLabelsMixin(matchLabels) +``` + +"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed." + +**Note:** This function appends passed data to existing values + +## obj spec.nodeSelector.matchExpressions + +"matchExpressions is a list of label selector requirements. The requirements are ANDed." + +### fn spec.nodeSelector.matchExpressions.withKey + +```ts +withKey(key) +``` + +"key is the label key that the selector applies to." + +### fn spec.nodeSelector.matchExpressions.withOperator + +```ts +withOperator(operator) +``` + +"operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist." + +### fn spec.nodeSelector.matchExpressions.withValues + +```ts +withValues(values) +``` + +"values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch." + +### fn spec.nodeSelector.matchExpressions.withValuesMixin + +```ts +withValuesMixin(values) +``` + +"values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch." + +**Note:** This function appends passed data to existing values + +## obj spec.serviceRef + +"serviceRef is a reference to a Kubernetes Service and ServicePort." + +### fn spec.serviceRef.withName + +```ts +withName(name) +``` + +"Name is the name of the Service." + +### fn spec.serviceRef.withPort + +```ts +withPort(port) +``` + +"Port is the port of the ServicePort." \ No newline at end of file diff --git a/docs/README.md b/docs/README.md index b6aab1a..ef1a387 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,3 +7,4 @@ This library is generated with [`k8s`](https://github.com/jsonnet-libs/k8s). - [2.4](2.4/README.md) - [2.5](2.5/README.md) - [2.6](2.6/README.md) +- [2.11](2.11/README.md)