9da206dc7c
PVCs and CloudNativePG Clusters need S3 buckets and backup schedules
provisioned consistently. This operator watches the
backups.unkin.net/{schedule,destination} annotations on those objects and
provisions everything needed to back them up, with no new CRDs.
- Add a PVC controller that provisions cephrgw ObjectStoreUser/Bucket/BucketAccess,
auto-generates a restic repo-password Secret and creates a k8up Schedule scoped
to the PVC via spec.backup.volumes[].persistentVolumeClaim.claimName.
- Add a CNPG Cluster controller that provisions the same bucket stack, idempotently
patches spec.backup.barmanObjectStore (leaving a user-set destinationPath alone
with a Warning event) and creates a ScheduledBackup.
- Resolve destinations through a ConfigMap lookup table; requeue until the
BucketAccess is Ready before creating schedule resources; own-reference created
resources and retain bucket data by default.
- Add schedule-mapping helpers (k8up 5-field/shortcut pass-through, CNPG 6-field
seconds-first) and deterministic, length-bounded name derivation.
- Add unit tests (schedule mapping, name derivation, destination resolution) and
envtest controller tests for both paths, wiring the external CRDs into envtest.
- Add kubebuilder-generated RBAC, a Dockerfile (distroless/nonroot), Woodpecker
lint/test/build pipelines and a tag-triggered image push to the artifactapi
docker-internal registry, plus a version-bump Makefile and deploy manifests.
222 lines
5.0 KiB
Go
222 lines
5.0 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors.
|
|
|
|
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.
|
|
*/
|
|
|
|
package net
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"strings"
|
|
)
|
|
|
|
// IPNetSet maps string to net.IPNet.
|
|
type IPNetSet map[string]*net.IPNet
|
|
|
|
// ParseIPNets parses string slice to IPNetSet.
|
|
func ParseIPNets(specs ...string) (IPNetSet, error) {
|
|
ipnetset := make(IPNetSet)
|
|
for _, spec := range specs {
|
|
spec = strings.TrimSpace(spec)
|
|
_, ipnet, err := ParseCIDRSloppy(spec)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
k := ipnet.String() // In case of normalization
|
|
ipnetset[k] = ipnet
|
|
}
|
|
return ipnetset, nil
|
|
}
|
|
|
|
// Insert adds items to the set.
|
|
func (s IPNetSet) Insert(items ...*net.IPNet) {
|
|
for _, item := range items {
|
|
s[item.String()] = item
|
|
}
|
|
}
|
|
|
|
// Delete removes all items from the set.
|
|
func (s IPNetSet) Delete(items ...*net.IPNet) {
|
|
for _, item := range items {
|
|
delete(s, item.String())
|
|
}
|
|
}
|
|
|
|
// Has returns true if and only if item is contained in the set.
|
|
func (s IPNetSet) Has(item *net.IPNet) bool {
|
|
_, contained := s[item.String()]
|
|
return contained
|
|
}
|
|
|
|
// HasAll returns true if and only if all items are contained in the set.
|
|
func (s IPNetSet) HasAll(items ...*net.IPNet) bool {
|
|
for _, item := range items {
|
|
if !s.Has(item) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Difference returns a set of objects that are not in s2
|
|
// For example:
|
|
// s1 = {a1, a2, a3}
|
|
// s2 = {a1, a2, a4, a5}
|
|
// s1.Difference(s2) = {a3}
|
|
// s2.Difference(s1) = {a4, a5}
|
|
func (s IPNetSet) Difference(s2 IPNetSet) IPNetSet {
|
|
result := make(IPNetSet)
|
|
for k, i := range s {
|
|
_, found := s2[k]
|
|
if found {
|
|
continue
|
|
}
|
|
result[k] = i
|
|
}
|
|
return result
|
|
}
|
|
|
|
// StringSlice returns a []string with the String representation of each element in the set.
|
|
// Order is undefined.
|
|
func (s IPNetSet) StringSlice() []string {
|
|
a := make([]string, 0, len(s))
|
|
for k := range s {
|
|
a = append(a, k)
|
|
}
|
|
return a
|
|
}
|
|
|
|
// IsSuperset returns true if and only if s1 is a superset of s2.
|
|
func (s IPNetSet) IsSuperset(s2 IPNetSet) bool {
|
|
for k := range s2 {
|
|
_, found := s[k]
|
|
if !found {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Equal returns true if and only if s1 is equal (as a set) to s2.
|
|
// Two sets are equal if their membership is identical.
|
|
// (In practice, this means same elements, order doesn't matter)
|
|
func (s IPNetSet) Equal(s2 IPNetSet) bool {
|
|
return len(s) == len(s2) && s.IsSuperset(s2)
|
|
}
|
|
|
|
// Len returns the size of the set.
|
|
func (s IPNetSet) Len() int {
|
|
return len(s)
|
|
}
|
|
|
|
// IPSet maps string to net.IP
|
|
type IPSet map[string]net.IP
|
|
|
|
// ParseIPSet parses string slice to IPSet
|
|
func ParseIPSet(items ...string) (IPSet, error) {
|
|
ipset := make(IPSet)
|
|
for _, item := range items {
|
|
ip := ParseIPSloppy(strings.TrimSpace(item))
|
|
if ip == nil {
|
|
return nil, fmt.Errorf("error parsing IP %q", item)
|
|
}
|
|
|
|
ipset[ip.String()] = ip
|
|
}
|
|
|
|
return ipset, nil
|
|
}
|
|
|
|
// Insert adds items to the set.
|
|
func (s IPSet) Insert(items ...net.IP) {
|
|
for _, item := range items {
|
|
s[item.String()] = item
|
|
}
|
|
}
|
|
|
|
// Delete removes all items from the set.
|
|
func (s IPSet) Delete(items ...net.IP) {
|
|
for _, item := range items {
|
|
delete(s, item.String())
|
|
}
|
|
}
|
|
|
|
// Has returns true if and only if item is contained in the set.
|
|
func (s IPSet) Has(item net.IP) bool {
|
|
_, contained := s[item.String()]
|
|
return contained
|
|
}
|
|
|
|
// HasAll returns true if and only if all items are contained in the set.
|
|
func (s IPSet) HasAll(items ...net.IP) bool {
|
|
for _, item := range items {
|
|
if !s.Has(item) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Difference returns a set of objects that are not in s2
|
|
// For example:
|
|
// s1 = {a1, a2, a3}
|
|
// s2 = {a1, a2, a4, a5}
|
|
// s1.Difference(s2) = {a3}
|
|
// s2.Difference(s1) = {a4, a5}
|
|
func (s IPSet) Difference(s2 IPSet) IPSet {
|
|
result := make(IPSet)
|
|
for k, i := range s {
|
|
_, found := s2[k]
|
|
if found {
|
|
continue
|
|
}
|
|
result[k] = i
|
|
}
|
|
return result
|
|
}
|
|
|
|
// StringSlice returns a []string with the String representation of each element in the set.
|
|
// Order is undefined.
|
|
func (s IPSet) StringSlice() []string {
|
|
a := make([]string, 0, len(s))
|
|
for k := range s {
|
|
a = append(a, k)
|
|
}
|
|
return a
|
|
}
|
|
|
|
// IsSuperset returns true if and only if s1 is a superset of s2.
|
|
func (s IPSet) IsSuperset(s2 IPSet) bool {
|
|
for k := range s2 {
|
|
_, found := s[k]
|
|
if !found {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Equal returns true if and only if s1 is equal (as a set) to s2.
|
|
// Two sets are equal if their membership is identical.
|
|
// (In practice, this means same elements, order doesn't matter)
|
|
func (s IPSet) Equal(s2 IPSet) bool {
|
|
return len(s) == len(s2) && s.IsSuperset(s2)
|
|
}
|
|
|
|
// Len returns the size of the set.
|
|
func (s IPSet) Len() int {
|
|
return len(s)
|
|
}
|