--- apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.2.5 creationTimestamp: null name: helmrepositories.source.fluxcd.io spec: additionalPrinterColumns: - JSONPath: .spec.url name: URL type: string - JSONPath: .status.conditions[?(@.type=="Ready")].status name: Ready type: string - JSONPath: .status.conditions[?(@.type=="Ready")].message name: Status type: string - JSONPath: .metadata.creationTimestamp name: Age type: date group: source.fluxcd.io names: kind: HelmRepository listKind: HelmRepositoryList plural: helmrepositories singular: helmrepository scope: Namespaced subresources: status: {} validation: openAPIV3Schema: description: HelmRepository is the Schema for the helmrepositories API properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: type: object spec: description: HelmRepositorySpec defines the desired state of HelmRepository properties: interval: description: The interval at which to check for repository updates type: string url: description: The repository address minLength: 4 type: string required: - interval - url type: object status: description: HelmRepositoryStatus defines the observed state of HelmRepository properties: artifact: description: Path to the artifact (index file) of the last repository sync. type: string conditions: items: description: RepositoryCondition contains condition information for a repository properties: lastTransitionTime: description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. format: date-time type: string message: description: Message is a human readable description of the details of the last transition, complementing reason. type: string reason: description: Reason is a brief machine readable explanation for the condition's last transition. type: string status: description: Status of the condition, one of ('True', 'False', 'Unknown'). type: string type: description: Type of the condition, currently ('Ready'). type: string required: - status - type type: object type: array lastUpdateTime: description: LastUpdateTime is the timestamp corresponding to the last status change of this repository. format: date-time type: string type: object type: object version: v1alpha1 versions: - name: v1alpha1 served: true storage: true status: acceptedNames: kind: "" plural: "" conditions: [] storedVersions: []