forked from k8s-operatorhub/community-operators
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
16,361 additions
and
0 deletions.
There are no files selected for viewing
1,334 changes: 1,334 additions & 0 deletions
1,334
operators/cloudnative-pg/1.23.0/manifests/cloudnative-pg.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
389 changes: 389 additions & 0 deletions
389
operators/cloudnative-pg/1.23.0/manifests/cnpg-default-monitoring_v1_configmap.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
operators/cloudnative-pg/1.23.0/manifests/cnpg-webhook-service_v1_service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
name: cnpg-webhook-service | ||
spec: | ||
ports: | ||
- port: 443 | ||
targetPort: 9443 | ||
selector: | ||
app.kubernetes.io/name: cloudnative-pg | ||
status: | ||
loadBalancer: {} |
442 changes: 442 additions & 0 deletions
442
operators/cloudnative-pg/1.23.0/manifests/postgresql.cnpg.io_backups.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
87 changes: 87 additions & 0 deletions
87
operators/cloudnative-pg/1.23.0/manifests/postgresql.cnpg.io_clusterimagecatalogs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.14.0 | ||
creationTimestamp: null | ||
name: clusterimagecatalogs.postgresql.cnpg.io | ||
spec: | ||
group: postgresql.cnpg.io | ||
names: | ||
kind: ClusterImageCatalog | ||
listKind: ClusterImageCatalogList | ||
plural: clusterimagecatalogs | ||
singular: clusterimagecatalog | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: ClusterImageCatalog is the Schema for the clusterimagecatalogs | ||
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 ClusterImageCatalog. | ||
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: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
5,404 changes: 5,404 additions & 0 deletions
5,404
operators/cloudnative-pg/1.23.0/manifests/postgresql.cnpg.io_clusters.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
86 changes: 86 additions & 0 deletions
86
operators/cloudnative-pg/1.23.0/manifests/postgresql.cnpg.io_imagecatalogs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.14.0 | ||
creationTimestamp: null | ||
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: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
Oops, something went wrong.