v1

package
v4.2.4+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 20, 2020 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

Crunchy PostgreSQL Operator API

The Crunchy PostgreSQL Operator API defines HTTP(S) interactions with the Crunchy PostgreSQL Operator.

## Direct API Calls

The API can also be accessed by interacting directly with the API server. This can be done by making HTTP requests with curl to get information from the server. In order to make these calls you will need to provide certificates along with your request using the `--cacert`, `--key`, and `--cert` flags. Next you will need to provide the username and password for the RBAC along with a header that includes the content type and the `--insecure` flag. These flags will be the same for all of your interactions with the API server and can be seen in the following examples.

###### Get API Server Version

The most basic example of this interaction is getting the version of the API server. You can send a GET request to `$PGO_APISERVER_URL/version` and this will send back a json response including the API server version. You must specify the client version that matches the API server version as part of the request.

The API server is setup to work with the pgo command line interface so the parameters that are passed to the server can be found by looking at the related flags. For example, the series parameter used in the `create` example below is the same as the `-e, --series` flag that is described in the [pgo cli docs](https://access.crunchydata.com/documentation/postgres-operator/4.2.4/advanced/direct-api-calls). ``` curl --cacert $PGO_CA_CERT --key $PGO_CLIENT_KEY --cert $PGO_CA_CERT -u \ pgoadmin:examplepassword -H "Content-Type:application/json" --insecure -X \ GET $PGO_APISERVER_URL/version ```

#### Body examples In the following examples data is being passed to the apiserver using a json structure. These json structures are defined in the following documentation.

``` curl --cacert $PGO_CA_CERT --key $PGO_CLIENT_KEY --cert $PGO_CA_CERT -u \ pgoadmin:examplepassword -H "Content-Type:application/json" --insecure -X GET \ "$PGO_APISERVER_URL/workflow/<id>?version=<client-version>&namespace=<namespace>" ```

###### Create Cluster You can create a cluster by sending a POST request to `$PGO_APISERVER_URL/clusters`. In this example `--data` is being sent to the API URL that includes the client version that was returned from the version call, the namespace where the cluster should be created, the name of the new cluster and the series number. Series sets the number of clusters that will be created in the namespace.

``` curl --cacert $PGO_CA_CERT --key $PGO_CLIENT_KEY --cert $PGO_CA_CERT -u \ pgoadmin:examplepassword -H "Content-Type:application/json" --insecure -X \

POST --data \
    '{"ClientVersion":"4.2.4",
    "Namespace":"pgouser1",
    "Name":"mycluster",
    "Series":1}' \

$PGO_APISERVER_URL/clusters ```

###### Show and Delete Cluster The last two examples show you how to `show` and `delete` a cluster. Notice how instead of passing `"Name":"mycluster"` you pass `"Clustername":"mycluster" to reference a cluster that has already been created. For the show cluster example you can replace `"Clustername":"mycluster"` with `"AllFlag":true` to show all of the clusters that are in the given namespace.

``` curl --cacert $PGO_CA_CERT --key $PGO_CLIENT_KEY --cert $PGO_CA_CERT -u \ pgoadmin:examplepassword -H "Content-Type:application/json" --insecure -X \

POST --data \
  '{"ClientVersion":"4.2.4",
  "Namespace":"pgouser1",
  "Clustername":"mycluster"}' \

$PGO_APISERVER_URL/showclusters ```

``` curl --cacert $PGO_CA_CERT --key $PGO_CLIENT_KEY --cert $PGO_CA_CERT -u \ pgoadmin:examplepassword -H "Content-Type:application/json" --insecure -X \

POST --data \
  '{"ClientVersion":"4.2.4",
  "Namespace":"pgouser1",
  "Clustername":"mycluster"}' \

$PGO_APISERVER_URL/clustersdelete ```

  Schemes: http, https
  BasePath: /
  Version: 4.2.4
  License: Apache 2.0 http://www.apache.org/licenses/LICENSE-2.0
  Contact: Crunchy Data<info@crunchydata.com> https://www.crunchydata.com/

	Consumes:
	- application/json

	Produces:
	- application/json

swagger:meta

Index

Constants

View Source
const (
	// PgclusterStateCreated ...
	PgclusterStateCreated PgclusterState = "pgcluster Created"
	// PgclusterStateProcessed ...
	PgclusterStateProcessed PgclusterState = "pgcluster Processed"
	// PgclusterStateInitialized ...
	PgclusterStateInitialized PgclusterState = "pgcluster Initialized"
	// PgclusterStateRestore ...
	PgclusterStateRestore PgclusterState = "pgcluster Restoring"

	// PodAntiAffinityRequired results in requiredDuringSchedulingIgnoredDuringExecution for any
	// default pod anti-affinity rules applied to pg custers
	PodAntiAffinityRequired PodAntiAffinityType = "required"

	// PodAntiAffinityPreffered results in preferredDuringSchedulingIgnoredDuringExecution for any
	// default pod anti-affinity rules applied to pg custers
	PodAntiAffinityPreffered PodAntiAffinityType = "preferred"

	// PodAntiAffinityDisabled disables any default pod anti-affinity rules applied to pg custers
	PodAntiAffinityDisabled PodAntiAffinityType = "disabled"
)
View Source
const (
	// this type of backup is taken following a failover event
	BackupTypeFailover string = "failover"
	// this type of backup is taken when a new cluster is being bootstrapped
	BackupTypeBootstrap string = "bootstrap"
)

Defines the types of pgBackRest backups that are taken throughout a clusters lifecycle

View Source
const CollectSecretSuffix = "-collect-secret"

CollectSecretSuffix ...

View Source
const CompletedStatus = "completed"

CompletedStatus -

View Source
const GroupName = "crunchydata.com"

GroupName is the group name used in this package. const GroupName = "cr.client-go.k8s.io"

View Source
const InProgressStatus = "in progress"

InProgressStatus -

View Source
const JobCompletedStatus = "job completed"

JobCompletedStatus ....

View Source
const JobErrorStatus = "job error"

JobErrorStatus ....

View Source
const JobSubmittedStatus = "job submitted"

JobSubmittedStatus ....

View Source
const PgBackupJobCompleted = "Backup Job Completed"
View Source
const PgBackupJobError = "Backup Job Error"
View Source
const PgBackupJobInProgress = "Backup Job In Progress"
View Source
const PgBackupJobReSubmitted = "Backup Job Re-Submitted"

Backup job processing states - used by pgdump

View Source
const PgBackupJobSubmitted = "Backup Job Submitted"
View Source
const PgbackupResourcePlural = "pgbackups"

PgbackupResourcePlural ...

View Source
const PgclusterResourcePlural = "pgclusters"

PgclusterResourcePlural ..

View Source
const PgpolicyResourcePlural = "pgpolicies"

PgpolicyResourcePlural ...

View Source
const PgreplicaResourcePlural = "pgreplicas"

PgreplicaResourcePlural ..

View Source
const PgtaskAddPgbouncer = "add-pgbouncer"
View Source
const PgtaskAddPolicies = "addpolicies"
View Source
const PgtaskAutoFailover = "autofailover"
View Source
const PgtaskBackrest = "backrest"
View Source
const PgtaskBackrestBackup = "backup"
View Source
const PgtaskBackrestInfo = "info"
View Source
const PgtaskBackrestRestore = "restore"
View Source
const PgtaskBackrestStanzaCreate = "stanza-create"
View Source
const PgtaskBenchmark = "benchmark"
View Source
const PgtaskCloneStep1 = "clone-step1" // performs a pgBackRest repo sync
View Source
const PgtaskCloneStep2 = "clone-step2" // performs a pgBackRest restore
View Source
const PgtaskCloneStep3 = "clone-step3" // creates the Pgcluster
View Source
const PgtaskDeleteBackups = "delete-backups"
View Source
const PgtaskDeleteData = "delete-data"
View Source
const PgtaskDeletePgbouncer = "delete-pgbouncer"
View Source
const PgtaskFailover = "failover"
View Source
const PgtaskMinorUpgrade = "minorupgradecluster"
View Source
const PgtaskReconfigurePgbouncer = "reconfigure-pgbouncer"
View Source
const PgtaskResourcePlural = "pgtasks"

PgtaskResourcePlural ...

View Source
const PgtaskUpdatePgbouncerAuths = "update-pgbouncer-auths"
View Source
const PgtaskWorkflow = "workflow"
View Source
const PgtaskWorkflowBackrestRestoreJobCreatedStatus = "restore job created"
View Source
const PgtaskWorkflowBackrestRestorePVCCreatedStatus = "restored PVC created"
View Source
const PgtaskWorkflowBackrestRestorePrimaryCreatedStatus = "restored Primary created"
View Source
const PgtaskWorkflowBackrestRestoreType = "pgbackrestrestore"
View Source
const PgtaskWorkflowBackupType = "backupworkflow"
View Source
const PgtaskWorkflowCloneClusterCreate = "clone 3: cluster creating"
View Source
const PgtaskWorkflowCloneCreatePVC = "clone 1.1: create pvc"
View Source
const PgtaskWorkflowCloneRestoreBackup = "clone 2: restoring backup"
View Source
const PgtaskWorkflowCloneSyncRepo = "clone 1.2: sync pgbackrest repo"
View Source
const PgtaskWorkflowCloneType = "cloneworkflow"
View Source
const PgtaskWorkflowCompletedStatus = "task completed"
View Source
const PgtaskWorkflowCreateBenchmarkType = "createbenchmark"
View Source
const PgtaskWorkflowCreateClusterType = "createcluster"
View Source
const PgtaskWorkflowID = "workflowid"
View Source
const PgtaskWorkflowPgbasebackupRestoreJobCreatedStatus = "restore job created"
View Source
const PgtaskWorkflowPgbasebackupRestorePVCCreatedStatus = "restored PVC created"
View Source
const PgtaskWorkflowPgbasebackupRestorePrimaryCreatedStatus = "restored Primary created"
View Source
const PgtaskWorkflowPgbasebackupRestoreType = "pgbasebackuprestore"
View Source
const PgtaskWorkflowSubmittedStatus = "task submitted"
View Source
const PgtaskpgBasebackupRestore = "pgbasebackuprestore"
View Source
const PgtaskpgDump = "pgdump"
View Source
const PgtaskpgDumpBackup = "pgdumpbackup"
View Source
const PgtaskpgDumpInfo = "pgdumpinfo"
View Source
const PgtaskpgRestore = "pgrestore"
View Source
const PrimarySecretSuffix = "-primaryuser-secret"

PrimarySecretSuffix ...

View Source
const RootSecretSuffix = "-postgres-secret"

RootSecretSuffix ...

View Source
const StorageCreate = "create"

StorageCreate ...

View Source
const StorageDynamic = "dynamic"

StorageDynamic ...

View Source
const StorageEmptydir = "emptydir"

StorageEmptydir ...

View Source
const StorageExisting = "existing"

StorageExisting ...

View Source
const SubmittedStatus = "submitted"

SubmittedStatus -

View Source
const UserSecretSuffix = "-secret"

UserSecretSuffix ...

Variables

View Source
var (
	// SchemeBuilder ...
	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
	// AddToScheme ...
	AddToScheme = SchemeBuilder.AddToScheme
)
View Source
var BackrestStorageTypes = []string{"local", "s3"}

BackrestStorageTypes defines the valid types of storage that can be utilized with pgBackRest

View Source
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}

SchemeGroupVersion is the group version used to register these objects.

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group-qualified GroupResource.

Types

type PgContainerResources

type PgContainerResources struct {
	RequestsMemory string `json:"requestsmemory"`
	RequestsCPU    string `json:"requestscpu"`
	LimitsMemory   string `json:"limitsmemory"`
	LimitsCPU      string `json:"limitscpu"`
}

PgContainerResource ... swagger:ignore

type PgStorageSpec

type PgStorageSpec struct {
	Name               string `json:"name"`
	StorageClass       string `json:"storageclass"`
	AccessMode         string `json:"accessmode"`
	Size               string `json:"size"`
	StorageType        string `json:"storagetype"`
	Fsgroup            string `json:"fsgroup"`
	SupplementalGroups string `json:"supplementalgroups"`
	MatchLabels        string `json:"matchLabels"`
}

PgStorageSpec ... swagger:ignore

type Pgbackup

type Pgbackup struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata"`

	Spec   PgbackupSpec   `json:"spec"`
	Status PgbackupStatus `json:"status,omitempty"`
}

Pgbackup ... swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*Pgbackup) DeepCopyInto

func (in *Pgbackup) DeepCopyInto(out *Pgbackup)

DeepCopyInto copies all properties of this object into another object of the same type that is provided as a pointer.

func (*Pgbackup) DeepCopyObject

func (in *Pgbackup) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgbackupList

type PgbackupList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []Pgbackup `json:"items"`
}

PgbackupList ... swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*PgbackupList) DeepCopyObject

func (in *PgbackupList) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgbackupSpec

type PgbackupSpec struct {
	Namespace        string            `json:"namespace"`
	Name             string            `json:"name"`
	StorageSpec      PgStorageSpec     `json:"storagespec"`
	CCPImageTag      string            `json:"ccpimagetag"`
	BackupHost       string            `json:"backuphost"`
	BackupUserSecret string            `json:"backupusersecret"`
	BackupPort       string            `json:"backupport"`
	BackupStatus     string            `json:"backupstatus"`
	BackupPVC        string            `json:"backuppvc"`
	BackupOpts       string            `json:"backupopts"`
	Toc              map[string]string `json:"toc"`
}

PgbackupSpec ...

type PgbackupState

type PgbackupState string

PgbackupState ... swagger:ignore

const (
	// PgbackupStateCreated ...
	PgbackupStateCreated PgbackupState = "pgbackup Created"
	// PgbackupStateProcessed ...
	PgbackupStateProcessed PgbackupState = "pgbackup Processed"
)

type PgbackupStatus

type PgbackupStatus struct {
	State   PgbackupState `json:"state,omitempty"`
	Message string        `json:"message,omitempty"`
}

PgbackupStatus ... swagger:ignore

type Pgcluster

type Pgcluster struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata"`
	Spec              PgclusterSpec   `json:"spec"`
	Status            PgclusterStatus `json:"status,omitempty"`
}

Pgcluster is the CRD that defines a Crunchy PG Cluster

swagger:ignore Pgcluster +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*Pgcluster) DeepCopyInto

func (in *Pgcluster) DeepCopyInto(out *Pgcluster)

DeepCopyInto copies all properties of this object into another object of the same type that is provided as a pointer.

func (*Pgcluster) DeepCopyObject

func (in *Pgcluster) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgclusterList

type PgclusterList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []Pgcluster `json:"items"`
}

PgclusterList is the CRD that defines a Crunchy PG Cluster List swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*PgclusterList) DeepCopyObject

func (in *PgclusterList) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgclusterSpec

type PgclusterSpec struct {
	Namespace          string               `json:"namespace"`
	Name               string               `json:"name"`
	ClusterName        string               `json:"clustername"`
	Policies           string               `json:"policies"`
	CCPImage           string               `json:"ccpimage"`
	CCPImageTag        string               `json:"ccpimagetag"`
	Port               string               `json:"port"`
	PGBadgerPort       string               `json:"pgbadgerport"`
	ExporterPort       string               `json:"exporterport"`
	NodeName           string               `json:"nodename"`
	PrimaryStorage     PgStorageSpec        `json:primarystorage`
	ArchiveStorage     PgStorageSpec        `json:archivestorage`
	ReplicaStorage     PgStorageSpec        `json:replicastorage`
	BackrestStorage    PgStorageSpec        `json:backreststorage`
	ContainerResources PgContainerResources `json:containerresources`
	PrimaryHost        string               `json:"primaryhost"`
	User               string               `json:"user"`
	Database           string               `json:"database"`
	Replicas           string               `json:"replicas"`
	Strategy           string               `json:"strategy"`
	SecretFrom         string               `json:"secretfrom"`
	UserSecretName     string               `json:"usersecretname"`
	RootSecretName     string               `json:"rootsecretname"`
	PrimarySecretName  string               `json:"primarysecretname"`
	CollectSecretName  string               `json:"collectSecretName"`
	Status             string               `json:"status"`
	PswLastUpdate      string               `json:"pswlastupdate"`
	CustomConfig       string               `json:"customconfig"`
	UserLabels         map[string]string    `json:"userlabels"`
	PodAntiAffinity    string               `json:"podPodAntiAffinity"`
	SyncReplication    *bool                `json:"syncReplication"`
	BackrestS3Bucket   string               `json:"backrestS3Bucket"`
	BackrestS3Region   string               `json:"backrestS3Region"`
	BackrestS3Endpoint string               `json:"backrestS3Endpoint"`
}

PgclusterSpec is the CRD that defines a Crunchy PG Cluster Spec swagger:ignore

type PgclusterState

type PgclusterState string

PgclusterState is the crd that defines PG Cluster Stage swagger:ignore

type PgclusterStatus

type PgclusterStatus struct {
	State   PgclusterState `json:"state,omitempty"`
	Message string         `json:"message,omitempty"`
}

PgclusterStatus is the CRD that defines PG Cluster Status swagger:ignore

type Pgpolicy

type Pgpolicy struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata"`

	Spec   PgpolicySpec   `json:"spec"`
	Status PgpolicyStatus `json:"status,omitempty"`
}

Pgpolicy ... swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*Pgpolicy) DeepCopyInto

func (in *Pgpolicy) DeepCopyInto(out *Pgpolicy)

DeepCopyInto copies all properties of this object into another object of the same type that is provided as a pointer.

func (*Pgpolicy) DeepCopyObject

func (in *Pgpolicy) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgpolicyList

type PgpolicyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []Pgpolicy `json:"items"`
}

PgpolicyList ... swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*PgpolicyList) DeepCopyObject

func (in *PgpolicyList) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgpolicySpec

type PgpolicySpec struct {
	Namespace string `json:"namespace"`
	Name      string `json:"name"`
	URL       string `json:"url"`
	SQL       string `json:"sql"`
	Status    string `json:"status"`
}

PgpolicySpec ... swagger:ignore

type PgpolicyState

type PgpolicyState string

PgpolicyState ... swagger:ignore

const (
	// PgpolicyStateCreated ...
	PgpolicyStateCreated PgpolicyState = "pgpolicy Created"
	// PgpolicyStateProcessed ...
	PgpolicyStateProcessed PgpolicyState = "pgpolicy Processed"
)

type PgpolicyStatus

type PgpolicyStatus struct {
	State   PgpolicyState `json:"state,omitempty"`
	Message string        `json:"message,omitempty"`
}

PgpolicyStatus ... swagger:ignore

type Pgreplica

type Pgreplica struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata"`
	Spec              PgreplicaSpec   `json:"spec"`
	Status            PgreplicaStatus `json:"status,omitempty"`
}

Pgreplica .. swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*Pgreplica) DeepCopyInto

func (in *Pgreplica) DeepCopyInto(out *Pgreplica)

DeepCopyInto copies all properties of this object into another object of the same type that is provided as a pointer.

func (*Pgreplica) DeepCopyObject

func (in *Pgreplica) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgreplicaList

type PgreplicaList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []Pgreplica `json:"items"`
}

PgreplicaList ... swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*PgreplicaList) DeepCopyObject

func (in *PgreplicaList) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgreplicaSpec

type PgreplicaSpec struct {
	Namespace          string               `json:"namespace"`
	Name               string               `json:"name"`
	ClusterName        string               `json:"clustername"`
	ReplicaStorage     PgStorageSpec        `json:"replicastorage"`
	ContainerResources PgContainerResources `json:"containerresources"`
	Status             string               `json:"status"`
	UserLabels         map[string]string    `json:"userlabels"`
}

PgreplicaSpec ... swagger:ignore

type PgreplicaState

type PgreplicaState string

PgreplicaState ... swagger:ignore

const (
	// PgreplicaStateCreated ...
	PgreplicaStateCreated PgreplicaState = "pgreplica Created"
	// PgreplicaStatePending ...
	PgreplicaStatePendingInit PgreplicaState = "pgreplica Pending init"
	// PgreplicaStatePendingRestore ...
	PgreplicaStatePendingRestore PgreplicaState = "pgreplica Pending restore"
	// PgreplicaStateProcessed ...
	PgreplicaStateProcessed PgreplicaState = "pgreplica Processed"
)

type PgreplicaStatus

type PgreplicaStatus struct {
	State   PgreplicaState `json:"state,omitempty"`
	Message string         `json:"message,omitempty"`
}

PgreplicaStatus ... swagger:ignore

type Pgtask

type Pgtask struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata"`

	Spec   PgtaskSpec   `json:"spec"`
	Status PgtaskStatus `json:"status,omitempty"`
}

Pgtask ... swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*Pgtask) DeepCopyInto

func (in *Pgtask) DeepCopyInto(out *Pgtask)

DeepCopyInto copies all properties of this object into another object of the same type that is provided as a pointer.

func (*Pgtask) DeepCopyObject

func (in *Pgtask) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgtaskList

type PgtaskList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []Pgtask `json:"items"`
}

PgtaskList ... swagger:ignore +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*PgtaskList) DeepCopyObject

func (in *PgtaskList) DeepCopyObject() runtime.Object

DeepCopyObject returns a generically typed copy of an object

type PgtaskSpec

type PgtaskSpec struct {
	Namespace   string            `json:"namespace"`
	Name        string            `json:"name"`
	StorageSpec PgStorageSpec     `json:"storagespec"`
	TaskType    string            `json:"tasktype"`
	Status      string            `json:"status"`
	Parameters  map[string]string `json:"parameters"`
}

PgtaskSpec ... swagger:ignore

type PgtaskState

type PgtaskState string

PgtaskState ... swagger:ignore

const (
	// PgtaskStateCreated ...
	PgtaskStateCreated PgtaskState = "pgtask Created"
	// PgtaskStateProcessed ...
	PgtaskStateProcessed PgtaskState = "pgtask Processed"
)

type PgtaskStatus

type PgtaskStatus struct {
	State   PgtaskState `json:"state,omitempty"`
	Message string      `json:"message,omitempty"`
}

PgtaskStatus ... swagger:ignore

type PodAntiAffinityType

type PodAntiAffinityType string

PodAntiAffinityType defines the different types of type of anti-affinity rules applied to pg clusters when utilizing the default pod anti-affinity rules provided by the PostgreSQL Operator, which are enabled for a new pg cluster by default. Valid Values include "required" for requiredDuringSchedulingIgnoredDuringExecution anti-affinity, "preferred" for preferredDuringSchedulingIgnoredDuringExecution anti-affinity, and "disabled" to disable the default pod anti-affinity rules for the pg cluster all together.

func (PodAntiAffinityType) Validate

func (p PodAntiAffinityType) Validate() error

ValidatePodAntiAffinityType is responsible for validating whether or not the type of pod anti-affinity specified is valid

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL