-
Notifications
You must be signed in to change notification settings - Fork 592
/
backrest.go
96 lines (83 loc) · 4.06 KB
/
backrest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package util
/*
Copyright 2019 - 2021 Crunchy Data Solutions, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import (
"errors"
"fmt"
"strings"
crv1 "github.com/crunchydata/postgres-operator/pkg/apis/crunchydata.com/v1"
)
const (
BackrestRepoDeploymentName = "%s-backrest-shared-repo"
BackrestRepoServiceName = "%s-backrest-shared-repo"
BackrestRepoPVCName = "%s-pgbr-repo"
BackrestRepoSecretName = "%s-backrest-repo-config"
)
// defines the default repo1-path for pgBackRest for use when a specic path is not provided
// in the pgcluster CR. The '%s' format verb will be replaced with the cluster name when this
// variable is utilized
const defaultBackrestRepoPath = "/backrestrepo/%s-backrest-shared-repo"
// ValidateBackrestStorageTypeOnBackupRestore checks to see if the pgbackrest storage type provided
// when performing either pgbackrest backup or restore is valid. This includes ensuring the value
// provided is a valid storage type (e.g. "s3" and/or "local"). This also includes ensuring the
// storage type specified (e.g. "s3" or "local") is enabled in the current cluster. And finally,
// validation is ocurring for a restore, the ensure only one storage type is selected.
func ValidateBackrestStorageTypeOnBackupRestore(newBackRestStorageType,
currentBackRestStorageType string, restore bool) error {
if newBackRestStorageType != "" && !IsValidBackrestStorageType(newBackRestStorageType) {
return fmt.Errorf("Invalid value provided for pgBackRest storage type. The following "+
"values are allowed: %s", "\""+strings.Join(crv1.BackrestStorageTypes, "\", \"")+"\"")
} else if newBackRestStorageType != "" &&
strings.Contains(newBackRestStorageType, "s3") &&
!strings.Contains(currentBackRestStorageType, "s3") {
return errors.New("Storage type 's3' not allowed. S3 storage is not enabled for " +
"pgBackRest in this cluster")
} else if (newBackRestStorageType == "" ||
strings.Contains(newBackRestStorageType, "local")) &&
(currentBackRestStorageType != "" &&
!strings.Contains(currentBackRestStorageType, "local")) {
return errors.New("Storage type 'local' not allowed. Local storage is not enabled for " +
"pgBackRest in this cluster. If this cluster uses S3 storage only, specify 's3' " +
"for the pgBackRest storage type.")
}
// storage type validation that is only applicable for restores
if restore && newBackRestStorageType != "" &&
len(strings.Split(newBackRestStorageType, ",")) > 1 {
return fmt.Errorf("Multiple storage types cannot be selected cannot be select when "+
"performing a restore. Please select one of the following: %s",
"\""+strings.Join(crv1.BackrestStorageTypes, "\", \"")+"\"")
}
return nil
}
// IsValidBackrestStorageType determines if the storage source string contains valid pgBackRest
// storage type values
func IsValidBackrestStorageType(storageType string) bool {
isValid := true
for _, storageType := range strings.Split(storageType, ",") {
if !IsStringOneOf(storageType, crv1.BackrestStorageTypes...) {
isValid = false
break
}
}
return isValid
}
// GetPGBackRestRepoPath is responsible for determining the repo path setting (i.e. 'repo1-path'
// flag) for use by pgBackRest. If a specific repo path has been defined in the pgcluster CR,
// then that path will be returned. Otherwise a default path will be returned, which is generated
// using the 'defaultBackrestRepoPath' constant and the cluster name.
func GetPGBackRestRepoPath(cluster crv1.Pgcluster) string {
if cluster.Spec.BackrestRepoPath != "" {
return cluster.Spec.BackrestRepoPath
}
return fmt.Sprintf(defaultBackrestRepoPath, cluster.Name)
}