{ "description": "Bucket is the Schema for the buckets API.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "metadata": { "type": "object" }, "spec": { "description": "BucketSpec specifies the required configuration to produce an Artifact for\nan object storage bucket.", "properties": { "bucketName": { "description": "BucketName is the name of the object storage bucket.", "type": "string" }, "certSecretRef": { "description": "CertSecretRef can be given the name of a Secret containing\neither or both of\n\n- a PEM-encoded client certificate (`tls.crt`) and private\nkey (`tls.key`);\n- a PEM-encoded CA certificate (`ca.crt`)\n\nand whichever are supplied, will be used for connecting to the\nbucket. The client cert and key are useful if you are\nauthenticating with a certificate; the CA cert is useful if\nyou are using a self-signed server certificate. The Secret must\nbe of type `Opaque` or `kubernetes.io/tls`.\n\nThis field is only supported for the `generic` provider.", "properties": { "name": { "description": "Name of the referent.", "type": "string" } }, "required": [ "name" ], "type": "object", "additionalProperties": false }, "endpoint": { "description": "Endpoint is the object storage address the BucketName is located at.", "type": "string" }, "ignore": { "description": "Ignore overrides the set of excluded patterns in the .sourceignore format\n(which is the same as .gitignore). If not provided, a default will be used,\nconsult the documentation for your version to find out what those are.", "type": "string" }, "insecure": { "description": "Insecure allows connecting to a non-TLS HTTP Endpoint.", "type": "boolean" }, "interval": { "description": "Interval at which the Bucket Endpoint is checked for updates.\nThis interval is approximate and may be subject to jitter to ensure\nefficient use of resources.", "pattern": "^([0-9]+(\\.[0-9]+)?(ms|s|m|h))+$", "type": "string" }, "prefix": { "description": "Prefix to use for server-side filtering of files in the Bucket.", "type": "string" }, "provider": { "default": "generic", "description": "Provider of the object storage bucket.\nDefaults to 'generic', which expects an S3 (API) compatible object\nstorage.", "enum": [ "generic", "aws", "gcp", "azure" ], "type": "string" }, "proxySecretRef": { "description": "ProxySecretRef specifies the Secret containing the proxy configuration\nto use while communicating with the Bucket server.", "properties": { "name": { "description": "Name of the referent.", "type": "string" } }, "required": [ "name" ], "type": "object", "additionalProperties": false }, "region": { "description": "Region of the Endpoint where the BucketName is located in.", "type": "string" }, "secretRef": { "description": "SecretRef specifies the Secret containing authentication credentials\nfor the Bucket.", "properties": { "name": { "description": "Name of the referent.", "type": "string" } }, "required": [ "name" ], "type": "object", "additionalProperties": false }, "sts": { "description": "STS specifies the required configuration to use a Security Token\nService for fetching temporary credentials to authenticate in a\nBucket provider.\n\nThis field is only supported for the `aws` and `generic` providers.", "properties": { "certSecretRef": { "description": "CertSecretRef can be given the name of a Secret containing\neither or both of\n\n- a PEM-encoded client certificate (`tls.crt`) and private\nkey (`tls.key`);\n- a PEM-encoded CA certificate (`ca.crt`)\n\nand whichever are supplied, will be used for connecting to the\nSTS endpoint. The client cert and key are useful if you are\nauthenticating with a certificate; the CA cert is useful if\nyou are using a self-signed server certificate. The Secret must\nbe of type `Opaque` or `kubernetes.io/tls`.\n\nThis field is only supported for the `ldap` provider.", "properties": { "name": { "description": "Name of the referent.", "type": "string" } }, "required": [ "name" ], "type": "object", "additionalProperties": false }, "endpoint": { "description": "Endpoint is the HTTP/S endpoint of the Security Token Service from\nwhere temporary credentials will be fetched.", "pattern": "^(http|https)://.*$", "type": "string" }, "provider": { "description": "Provider of the Security Token Service.", "enum": [ "aws", "ldap" ], "type": "string" }, "secretRef": { "description": "SecretRef specifies the Secret containing authentication credentials\nfor the STS endpoint. This Secret must contain the fields `username`\nand `password` and is supported only for the `ldap` provider.", "properties": { "name": { "description": "Name of the referent.", "type": "string" } }, "required": [ "name" ], "type": "object", "additionalProperties": false } }, "required": [ "endpoint", "provider" ], "type": "object", "additionalProperties": false }, "suspend": { "description": "Suspend tells the controller to suspend the reconciliation of this\nBucket.", "type": "boolean" }, "timeout": { "default": "60s", "description": "Timeout for fetch operations, defaults to 60s.", "pattern": "^([0-9]+(\\.[0-9]+)?(ms|s|m))+$", "type": "string" } }, "required": [ "bucketName", "endpoint", "interval" ], "type": "object", "x-kubernetes-validations": [ { "message": "STS configuration is only supported for the 'aws' and 'generic' Bucket providers", "rule": "self.provider == 'aws' || self.provider == 'generic' || !has(self.sts)" }, { "message": "'aws' is the only supported STS provider for the 'aws' Bucket provider", "rule": "self.provider != 'aws' || !has(self.sts) || self.sts.provider == 'aws'" }, { "message": "'ldap' is the only supported STS provider for the 'generic' Bucket provider", "rule": "self.provider != 'generic' || !has(self.sts) || self.sts.provider == 'ldap'" }, { "message": "spec.sts.secretRef is not required for the 'aws' STS provider", "rule": "!has(self.sts) || self.sts.provider != 'aws' || !has(self.sts.secretRef)" }, { "message": "spec.sts.certSecretRef is not required for the 'aws' STS provider", "rule": "!has(self.sts) || self.sts.provider != 'aws' || !has(self.sts.certSecretRef)" } ], "additionalProperties": false }, "status": { "default": { "observedGeneration": -1 }, "description": "BucketStatus records the observed state of a Bucket.", "properties": { "artifact": { "description": "Artifact represents the last successful Bucket reconciliation.", "properties": { "digest": { "description": "Digest is the digest of the file in the form of ':'.", "pattern": "^[a-z0-9]+(?:[.+_-][a-z0-9]+)*:[a-zA-Z0-9=_-]+$", "type": "string" }, "lastUpdateTime": { "description": "LastUpdateTime is the timestamp corresponding to the last update of the\nArtifact.", "format": "date-time", "type": "string" }, "metadata": { "additionalProperties": { "type": "string" }, "description": "Metadata holds upstream information such as OCI annotations.", "type": "object" }, "path": { "description": "Path is the relative file path of the Artifact. It can be used to locate\nthe file in the root of the Artifact storage on the local file system of\nthe controller managing the Source.", "type": "string" }, "revision": { "description": "Revision is a human-readable identifier traceable in the origin source\nsystem. It can be a Git commit SHA, Git tag, a Helm chart version, etc.", "type": "string" }, "size": { "description": "Size is the number of bytes in the file.", "format": "int64", "type": "integer" }, "url": { "description": "URL is the HTTP address of the Artifact as exposed by the controller\nmanaging the Source. It can be used to retrieve the Artifact for\nconsumption, e.g. by another controller applying the Artifact contents.", "type": "string" } }, "required": [ "lastUpdateTime", "path", "revision", "url" ], "type": "object", "additionalProperties": false }, "conditions": { "description": "Conditions holds the conditions for the Bucket.", "items": { "description": "Condition contains details for one aspect of the current state of this API Resource.", "properties": { "lastTransitionTime": { "description": "lastTransitionTime is the last time the condition transitioned from one status to another.\nThis should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.", "format": "date-time", "type": "string" }, "message": { "description": "message is a human readable message indicating details about the transition.\nThis may be an empty string.", "maxLength": 32768, "type": "string" }, "observedGeneration": { "description": "observedGeneration represents the .metadata.generation that the condition was set based upon.\nFor instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date\nwith respect to the current state of the instance.", "format": "int64", "minimum": 0, "type": "integer" }, "reason": { "description": "reason contains a programmatic identifier indicating the reason for the condition's last transition.\nProducers of specific condition types may define expected values and meanings for this field,\nand whether the values are considered a guaranteed API.\nThe value should be a CamelCase string.\nThis field may not be empty.", "maxLength": 1024, "minLength": 1, "pattern": "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$", "type": "string" }, "status": { "description": "status of the condition, one of True, False, Unknown.", "enum": [ "True", "False", "Unknown" ], "type": "string" }, "type": { "description": "type of condition in CamelCase or in foo.example.com/CamelCase.", "maxLength": 316, "pattern": "^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$", "type": "string" } }, "required": [ "lastTransitionTime", "message", "reason", "status", "type" ], "type": "object", "additionalProperties": false }, "type": "array" }, "lastHandledReconcileAt": { "description": "LastHandledReconcileAt holds the value of the most recent\nreconcile request value, so a change of the annotation value\ncan be detected.", "type": "string" }, "observedGeneration": { "description": "ObservedGeneration is the last observed generation of the Bucket object.", "format": "int64", "type": "integer" }, "observedIgnore": { "description": "ObservedIgnore is the observed exclusion patterns used for constructing\nthe source artifact.", "type": "string" }, "url": { "description": "URL is the dynamic fetch link for the latest Artifact.\nIt is provided on a \"best effort\" basis, and using the precise\nBucketStatus.Artifact data is recommended.", "type": "string" } }, "type": "object", "additionalProperties": false } }, "type": "object" }