Documentation ¶
Index ¶
- func CreateBackrestPVCSnippet(backRestPVCName string) string
- func CreateBackrestRepoSecrets(clientset *kubernetes.Clientset, ...) error
- func CreateBackupPVCSnippet(backupPVCName string) string
- func CreatePVCSnippet(storageType string, PVCName string) string
- func CreateSecContext(fsGroup string, suppGroup string) string
- func CreateSecret(clientset *kubernetes.Clientset, ...) error
- func CreateUserSecret(clientset *kubernetes.Clientset, ...) error
- func DrainDeployment(clientset *kubernetes.Clientset, name string, namespace string) error
- func ExecPolicy(clientset *kubernetes.Clientset, restclient *rest.RESTClient, namespace string, ...) error
- func GeneratePassword(length int) string
- func GenerateRandString(length int) string
- func GetLabels(name, clustername string, replica bool) string
- func GetMD5HashForAuthFile(text string) string
- func GetPasswordFromSecret(clientset *kubernetes.Clientset, namespace string, secretName string) (string, string, error)
- func GetPod(clientset *kubernetes.Clientset, deploymentName, namespace string) (*v1.Pod, error)
- func GetPolicySQL(restclient *rest.RESTClient, namespace, policyName string) (string, error)
- func GetPreferredNodes(clientset *kubernetes.Clientset, selector, namespace string) ([]string, error)
- func GetSecretPassword(clientset *kubernetes.Clientset, db, suffix, Namespace string) (string, error)
- func IsAutofailEnabled(cluster *crv1.Pgcluster) bool
- func NewClient(cfg *rest.Config) (*rest.RESTClient, *runtime.Scheme, error)
- func Patch(restclient *rest.RESTClient, path string, value string, resource string, ...) error
- func PatchClusterCRD(restclient *rest.RESTClient, labelMap map[string]string, ...) error
- func RandStringBytesRmndr(n int) string
- func RunPsql(password string, hostip string, sqlstring string) error
- func ScaleDeployment(clientset *kubernetes.Clientset, deploymentName, namespace string, ...) error
- func ToggleAutoFailover(clientset *kubernetes.Clientset, enable bool, pghaScope, namespace string) error
- func UpdatePolicyLabels(clientset *kubernetes.Clientset, clusterName string, namespace string, ...) error
- func UpdateUserSecret(clientset *kubernetes.Clientset, ...) error
- func ValidatePolicy(restclient *rest.RESTClient, namespace string, policyName string) error
- func WaitUntilDeploymentIsDeleted(clientset *kubernetes.Clientset, depname string, timeout time.Duration, ...) error
- func WaitUntilPod(clientset *kubernetes.Clientset, lo meta_v1.ListOptions, podPhase v1.PodPhase, ...) error
- func WaitUntilPodIsDeleted(clientset *kubernetes.Clientset, podname string, timeout time.Duration, ...) error
- type CloneClusterSecrets
- type CloneTask
- type InstanceReplicationInfo
- type ReplicationStatusRequest
- type ReplicationStatusResponse
- type ThingSpec
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateBackrestPVCSnippet ¶
CreateBackrestPVCSnippet
func CreateBackrestRepoSecrets ¶
func CreateBackrestRepoSecrets(clientset *kubernetes.Clientset, operatorNamespace, clusterNamespace, clusterName string) error
CreateBackrestRepoSecrets creates the secrets required to manage the pgBackRest repo container
func CreateBackupPVCSnippet ¶
CreateBackupPVCSnippet generates the PVC definition fragment
func CreatePVCSnippet ¶
CreatePVCSnippet generates the PVC json snippet
func CreateSecContext ¶
CreateSecContext will generate the JSON security context fragment for a storage type
func CreateSecret ¶
func CreateSecret(clientset *kubernetes.Clientset, db, secretName, username, password, namespace string) error
CreateSecret create the secret, user, and primary secrets
func CreateUserSecret ¶
func CreateUserSecret(clientset *kubernetes.Clientset, clustername, username, password, namespace string, passwordLength int) error
CreateUserSecret will create a new secret holding a user credential
func DrainDeployment ¶
func DrainDeployment(clientset *kubernetes.Clientset, name string, namespace string) error
DrainDeployment will drain a deployment to 0 pods
func ExecPolicy ¶
func ExecPolicy(clientset *kubernetes.Clientset, restclient *rest.RESTClient, namespace string, policyName string, clusterName string) error
ExecPolicy execute a sql policy against a cluster
func GeneratePassword ¶
GeneratePassword generate a password of a given length
func GenerateRandString ¶
GenerateRandString generate a rand lowercase string of a given length
func GetPasswordFromSecret ¶
func GetPasswordFromSecret(clientset *kubernetes.Clientset, namespace string, secretName string) (string, string, error)
GetPasswordFromSecret will fetch the username, password from a user secret
func GetPolicySQL ¶
func GetPolicySQL(restclient *rest.RESTClient, namespace, policyName string) (string, error)
GetPolicySQL returns the SQL string from a policy
func GetPreferredNodes ¶
func GetPreferredNodes(clientset *kubernetes.Clientset, selector, namespace string) ([]string, error)
func GetSecretPassword ¶
func GetSecretPassword(clientset *kubernetes.Clientset, db, suffix, Namespace string) (string, error)
GetSecretPassword ...
func IsAutofailEnabled ¶
IsAutofailEnabled - returns true if autofail label is set to true, false if not.
func Patch ¶
func Patch(restclient *rest.RESTClient, path string, value string, resource string, name string, namespace string) error
Patch will patch a particular resource
func PatchClusterCRD ¶
func PatchClusterCRD(restclient *rest.RESTClient, labelMap map[string]string, oldCrd *crv1.Pgcluster, namespace string) error
PatchClusterCRD patches the pgcluster CRD
func ScaleDeployment ¶
func ScaleDeployment(clientset *kubernetes.Clientset, deploymentName, namespace string, replicaCount int) error
ScaleDeployment will increase the number of pods in a deployment
func ToggleAutoFailover ¶
func ToggleAutoFailover(clientset *kubernetes.Clientset, enable bool, pghaScope, namespace string) error
ToggleAutoFailover enables or disables autofailover for a cluster. Disabling autofailover means "pausing" Patroni, which will result in Patroni stepping aside from managing the cluster. This will effectively cause Patroni to stop responding to failures or other database activities, e.g. it will not attempt to start the database when stopped to perform maintenance
func UpdatePolicyLabels ¶
func UpdatePolicyLabels(clientset *kubernetes.Clientset, clusterName string, namespace string, newLabels map[string]string) error
UpdatePolicyLabels ...
func UpdateUserSecret ¶
func UpdateUserSecret(clientset *kubernetes.Clientset, clustername, username, password, namespace string, passwordLength int) error
UpdateUserSecret updates a user secret with a new password
func ValidatePolicy ¶
func ValidatePolicy(restclient *rest.RESTClient, namespace string, policyName string) error
ValidatePolicy tests to see if a policy exists
func WaitUntilDeploymentIsDeleted ¶
func WaitUntilDeploymentIsDeleted(clientset *kubernetes.Clientset, depname string, timeout time.Duration, namespace string) error
WaitUntilDeploymentIsDeleted timeout := time.Minute
func WaitUntilPod ¶
func WaitUntilPod(clientset *kubernetes.Clientset, lo meta_v1.ListOptions, podPhase v1.PodPhase, timeout time.Duration, namespace string) error
WaitUntilPod ... podPhase is v1.PodRunning timeout := time.Minute
func WaitUntilPodIsDeleted ¶
func WaitUntilPodIsDeleted(clientset *kubernetes.Clientset, podname string, timeout time.Duration, namespace string) error
WaitUntilPodIsDeleted timeout := time.Minute
Types ¶
type CloneClusterSecrets ¶
type CloneClusterSecrets struct { // any additional selectors that can be added to the query that is made AdditionalSelectors []string // The Kubernetes Clientset used to make API calls to Kubernetes` ClientSet *kubernetes.Clientset // The Namespace that the clusters are in Namespace string // The name of the PostgreSQL cluster that the secrets are originating from SourceClusterName string // The name of the PostgreSQL cluster that we are copying the secrets to TargetClusterName string }
CloneClusterSecrets will copy the secrets from a cluster into the secrets of another cluster
func (CloneClusterSecrets) Clone ¶
func (cs CloneClusterSecrets) Clone() error
Clone performs the actual clone of the secrets between PostgreSQL clusters
type CloneTask ¶
type CloneTask struct { PGOUser string SourceClusterName string TargetClusterName string TaskStepLabel string TaskType string Timestamp time.Time WorkflowID string }
CloneTask allows you to create a Pgtask CRD with the appropriate options
type InstanceReplicationInfo ¶
type InstanceReplicationInfo struct { Name string Node string ReplicationLag int Status string Timeline int }
InstanceReplicationInfo is the user friendly information for the current status of key replication metrics for a PostgreSQL instance
type ReplicationStatusResponse ¶
type ReplicationStatusResponse struct {
Instances []InstanceReplicationInfo
}
func ReplicationStatus ¶
func ReplicationStatus(request ReplicationStatusRequest) (ReplicationStatusResponse, error)
ReplicationStatus is responsible for retrieving and returning the replication information about the status of the replicas in a PostgreSQL cluster. It executes into a single replica pod and leverages the functionality of Patroni for getting the key metrics that are appropriate to help the user understand the current state of their replicas.
Statistics include: the current node the replica is on, if it is up, the replication lag, etc.