mirror of
https://github.com/bitnami/charts.git
synced 2026-03-11 15:37:20 +08:00
* [bitnami/cloudnative-pg] Release 0.1.5 updating components versions Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * Update CRDs automatically Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * fix: 🐛 Set correct URL Signed-off-by: Javier J. Salmerón García <javier.salmeron@broadcom.com> * Update CRDs automatically Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * fix: 🔧 Update tag Signed-off-by: Javier J. Salmerón García <javier.salmeron@broadcom.com> --------- Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Javier J. Salmerón García <javier.salmeron@broadcom.com> Co-authored-by: Javier J. Salmerón García <javier.salmeron@broadcom.com>
83 lines
3.0 KiB
YAML
83 lines
3.0 KiB
YAML
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_imagecatalogs.yaml
|
|
# Version: 1.25.1
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: v0.17.2
|
|
name: imagecatalogs.postgresql.cnpg.io
|
|
spec:
|
|
group: postgresql.cnpg.io
|
|
names:
|
|
kind: ImageCatalog
|
|
listKind: ImageCatalogList
|
|
plural: imagecatalogs
|
|
singular: imagecatalog
|
|
scope: Namespaced
|
|
versions:
|
|
- additionalPrinterColumns:
|
|
- jsonPath: .metadata.creationTimestamp
|
|
name: Age
|
|
type: date
|
|
name: v1
|
|
schema:
|
|
openAPIV3Schema:
|
|
description: ImageCatalog is the Schema for the imagecatalogs 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: |-
|
|
Specification of the desired behavior of the ImageCatalog.
|
|
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
properties:
|
|
images:
|
|
description: List of CatalogImages available in the catalog
|
|
items:
|
|
description: CatalogImage defines the image and major version
|
|
properties:
|
|
image:
|
|
description: The image reference
|
|
type: string
|
|
major:
|
|
description: The PostgreSQL major version of the image. Must
|
|
be unique within the catalog.
|
|
minimum: 10
|
|
type: integer
|
|
required:
|
|
- image
|
|
- major
|
|
type: object
|
|
maxItems: 8
|
|
minItems: 1
|
|
type: array
|
|
x-kubernetes-validations:
|
|
- message: Images must have unique major versions
|
|
rule: self.all(e, self.filter(f, f.major==e.major).size() == 1)
|
|
required:
|
|
- images
|
|
type: object
|
|
required:
|
|
- metadata
|
|
- spec
|
|
type: object
|
|
served: true
|
|
storage: true
|
|
subresources: {}
|