Skip to content

Commit

Permalink
operator pg4k-pgd (1.1.0) (redhat-openshift-ecosystem#4959)
Browse files Browse the repository at this point in the history
* 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
3 people authored Jan 2, 2025
1 parent a4436fb commit 9d8d97d
Show file tree
Hide file tree
Showing 8 changed files with 14,082 additions and 0 deletions.
1,051 changes: 1,051 additions & 0 deletions operators/pg4k-pgd/1.1.0/manifests/pg4k-pgd.clusterserviceversion.yaml

Large diffs are not rendered by default.

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
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: {}
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
Loading

0 comments on commit 9d8d97d

Please sign in to comment.