Skip to content

Commit

Permalink
update: source github.com/jsonnet-libs/k8s@8b327fb0
Browse files Browse the repository at this point in the history
  • Loading branch information
fculpo authored and jsonnet-libs-bot committed Dec 21, 2023
1 parent a3fdacf commit 7c43424
Show file tree
Hide file tree
Showing 100 changed files with 18,829 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 2.2.1/_gen/helm/main.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
local d = (import 'doc-util/main.libsonnet'),
'#':: d.pkg(name='helm', url='', help=''),
v2beta1: (import 'v2beta1/main.libsonnet'),
v2beta2: (import 'v2beta2/main.libsonnet'),
}
393 changes: 393 additions & 0 deletions 2.2.1/_gen/helm/v2beta1/helmRelease.libsonnet

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions 2.2.1/_gen/helm/v2beta1/main.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
local d = (import 'doc-util/main.libsonnet'),
'#':: d.pkg(name='v2beta1', url='', help=''),
helmRelease: (import 'helmRelease.libsonnet'),
}
404 changes: 404 additions & 0 deletions 2.2.1/_gen/helm/v2beta2/helmRelease.libsonnet

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions 2.2.1/_gen/helm/v2beta2/main.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
local d = (import 'doc-util/main.libsonnet'),
'#':: d.pkg(name='v2beta2', url='', help=''),
helmRelease: (import 'helmRelease.libsonnet'),
}
6 changes: 6 additions & 0 deletions 2.2.1/_gen/image/main.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
local d = (import 'doc-util/main.libsonnet'),
'#':: d.pkg(name='image', url='', help=''),
v1beta1: (import 'v1beta1/main.libsonnet'),
v1beta2: (import 'v1beta2/main.libsonnet'),
}
87 changes: 87 additions & 0 deletions 2.2.1/_gen/image/v1beta1/imagePolicy.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
{
local d = (import 'doc-util/main.libsonnet'),
'#':: d.pkg(name='imagePolicy', url='', help='"ImagePolicy is the Schema for the imagepolicies 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 ImagePolicy', args=[d.arg(name='name', type=d.T.string)]),
new(name): {
apiVersion: 'image.toolkit.fluxcd.io/v1beta1',
kind: 'ImagePolicy',
} + self.metadata.withName(name=name),
'#spec':: d.obj(help='"ImagePolicySpec defines the parameters for calculating the ImagePolicy"'),
spec: {
'#filterTags':: d.obj(help='"FilterTags enables filtering for only a subset of tags based on a set of rules. If no rules are provided, all the tags from the repository will be ordered and compared."'),
filterTags: {
'#withExtract':: d.fn(help='"Extract allows a capture group to be extracted from the specified regular expression pattern, useful before tag evaluation."', args=[d.arg(name='extract', type=d.T.string)]),
withExtract(extract): { spec+: { filterTags+: { extract: extract } } },
'#withPattern':: d.fn(help='"Pattern specifies a regular expression pattern used to filter for image tags."', args=[d.arg(name='pattern', type=d.T.string)]),
withPattern(pattern): { spec+: { filterTags+: { pattern: pattern } } },
},
'#imageRepositoryRef':: d.obj(help='"ImageRepositoryRef points at the object specifying the image being scanned"'),
imageRepositoryRef: {
'#withName':: d.fn(help='"Name of the referent."', args=[d.arg(name='name', type=d.T.string)]),
withName(name): { spec+: { imageRepositoryRef+: { name: name } } },
'#withNamespace':: d.fn(help='"Namespace of the referent, when not specified it acts as LocalObjectReference."', args=[d.arg(name='namespace', type=d.T.string)]),
withNamespace(namespace): { spec+: { imageRepositoryRef+: { namespace: namespace } } },
},
'#policy':: d.obj(help='"Policy gives the particulars of the policy to be followed in selecting the most recent image"'),
policy: {
'#alphabetical':: d.obj(help='"Alphabetical set of rules to use for alphabetical ordering of the tags."'),
alphabetical: {
'#withOrder':: d.fn(help='"Order specifies the sorting order of the tags. Given the letters of the alphabet as tags, ascending order would select Z, and descending order would select A."', args=[d.arg(name='order', type=d.T.string)]),
withOrder(order): { spec+: { policy+: { alphabetical+: { order: order } } } },
},
'#numerical':: d.obj(help='"Numerical set of rules to use for numerical ordering of the tags."'),
numerical: {
'#withOrder':: d.fn(help='"Order specifies the sorting order of the tags. Given the integer values from 0 to 9 as tags, ascending order would select 9, and descending order would select 0."', args=[d.arg(name='order', type=d.T.string)]),
withOrder(order): { spec+: { policy+: { numerical+: { order: order } } } },
},
'#semver':: d.obj(help='"SemVer gives a semantic version range to check against the tags available."'),
semver: {
'#withRange':: d.fn(help="\"Range gives a semver range for the image tag; the highest version within the range that's a tag yields the latest image.\"", args=[d.arg(name='range', type=d.T.string)]),
withRange(range): { spec+: { policy+: { semver+: { range: range } } } },
},
},
},
'#mixin': 'ignore',
mixin: self,
}
Loading

0 comments on commit 7c43424

Please sign in to comment.