forked from redhat-openshift-ecosystem/certified-operators
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator pg4k-pgd (1.1.0) (redhat-openshift-ecosystem#4959)
* Update EDB Postgres Distributed to 1.1.0 * fix: add 418 support Signed-off-by: Tao Li <[email protected]> * fix: add 418 is not release yet Signed-off-by: Tao Li <[email protected]> * fix: use simple dependency Signed-off-by: Tao Li <[email protected]> * fix: use skip Signed-off-by: Tao Li <[email protected]> * Update operators/pg4k-pgd/1.1.0/metadata/annotations.yaml --------- Signed-off-by: Tao Li <[email protected]> Co-authored-by: cnp-autobot <[email protected]> Co-authored-by: Tao Li <[email protected]>
- Loading branch information
1 parent
a4436fb
commit 9d8d97d
Showing
8 changed files
with
14,082 additions
and
0 deletions.
There are no files selected for viewing
1,051 changes: 1,051 additions & 0 deletions
1,051
operators/pg4k-pgd/1.1.0/manifests/pg4k-pgd.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
operators/pg4k-pgd/1.1.0/manifests/pgd-operator-manager-config_v1_configmap.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,19 @@ | ||
apiVersion: v1 | ||
data: | ||
controller_manager_config.yaml: | | ||
apiVersion: controller-runtime.sigs.k8s.io/v1alpha1 | ||
kind: ControllerManagerConfig | ||
health: | ||
healthProbeBindAddress: :9443 | ||
metrics: | ||
bindAddress: 127.0.0.1:8080 | ||
webhook: | ||
port: 9443 | ||
leaderElection: | ||
leaderElect: true | ||
resourceName: e72f3162.k8s.enterprisedb.io | ||
kind: ConfigMap | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: pgd-operator | ||
name: pgd-operator-manager-config |
17 changes: 17 additions & 0 deletions
17
operators/pg4k-pgd/1.1.0/manifests/pgd-operator-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,17 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/name: pgd-operator | ||
name: pgd-operator-webhook-service | ||
spec: | ||
ports: | ||
- port: 443 | ||
protocol: TCP | ||
targetPort: 9443 | ||
selector: | ||
app.kubernetes.io/name: pgd-operator | ||
control-plane: controller-manager | ||
status: | ||
loadBalancer: {} |
80 changes: 80 additions & 0 deletions
80
operators/pg4k-pgd/1.1.0/manifests/pgd.k8s.enterprisedb.io_pgdgroupcleanups.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,80 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.16.5 | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/name: pgd-operator | ||
name: pgdgroupcleanups.pgd.k8s.enterprisedb.io | ||
spec: | ||
group: pgd.k8s.enterprisedb.io | ||
names: | ||
kind: PGDGroupCleanup | ||
listKind: PGDGroupCleanupList | ||
plural: pgdgroupcleanups | ||
singular: pgdgroupcleanup | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: Phase | ||
jsonPath: .status.phase | ||
name: Phase | ||
type: string | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: PGDGroupCleanup is the Schema for the pgdgroupcleanups 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: PGDGroupCleanupSpec defines the desired state of PGDGroupCleanup | ||
properties: | ||
executor: | ||
type: string | ||
force: | ||
default: false | ||
description: Force will force the removal of the PGDGroup even if | ||
the target PGDGroup nodes are not parted | ||
type: boolean | ||
target: | ||
type: string | ||
required: | ||
- executor | ||
- target | ||
type: object | ||
status: | ||
description: PGDGroupCleanupStatus defines the observed state of PGDGroupCleanup | ||
properties: | ||
phase: | ||
description: OperatorPhaseCleanup it represents a phase of the PGDGroupCleanup | ||
controller | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
Oops, something went wrong.