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.
71 lines
2.5 KiB
Markdown
71 lines
2.5 KiB
Markdown
# reflect2
|
|
|
|
[](https://sourcegraph.com/github.com/modern-go/reflect2?badge)
|
|
[](http://godoc.org/github.com/modern-go/reflect2)
|
|
[](https://travis-ci.org/modern-go/reflect2)
|
|
[](https://codecov.io/gh/modern-go/reflect2)
|
|
[](https://goreportcard.com/report/github.com/modern-go/reflect2)
|
|
[](https://raw.githubusercontent.com/modern-go/reflect2/master/LICENSE)
|
|
|
|
reflect api that avoids runtime reflect.Value cost
|
|
|
|
* reflect get/set interface{}, with type checking
|
|
* reflect get/set unsafe.Pointer, without type checking
|
|
* `reflect2.TypeByName` works like `Class.forName` found in java
|
|
|
|
[json-iterator](https://github.com/json-iterator/go) use this package to save runtime dispatching cost.
|
|
This package is designed for low level libraries to optimize reflection performance.
|
|
General application should still use reflect standard library.
|
|
|
|
# reflect2.TypeByName
|
|
|
|
```go
|
|
// given package is github.com/your/awesome-package
|
|
type MyStruct struct {
|
|
// ...
|
|
}
|
|
|
|
// will return the type
|
|
reflect2.TypeByName("awesome-package.MyStruct")
|
|
// however, if the type has not been used
|
|
// it will be eliminated by compiler, so we can not get it in runtime
|
|
```
|
|
|
|
# reflect2 get/set interface{}
|
|
|
|
```go
|
|
valType := reflect2.TypeOf(1)
|
|
i := 1
|
|
j := 10
|
|
valType.Set(&i, &j)
|
|
// i will be 10
|
|
```
|
|
|
|
to get set `type`, always use its pointer `*type`
|
|
|
|
# reflect2 get/set unsafe.Pointer
|
|
|
|
```go
|
|
valType := reflect2.TypeOf(1)
|
|
i := 1
|
|
j := 10
|
|
valType.UnsafeSet(unsafe.Pointer(&i), unsafe.Pointer(&j))
|
|
// i will be 10
|
|
```
|
|
|
|
to get set `type`, always use its pointer `*type`
|
|
|
|
# benchmark
|
|
|
|
Benchmark is not necessary for this package. It does nothing actually.
|
|
As it is just a thin wrapper to make go runtime public.
|
|
Both `reflect2` and `reflect` call same function
|
|
provided by `runtime` package exposed by go language.
|
|
|
|
# unsafe safety
|
|
|
|
Instead of casting `[]byte` to `sliceHeader` in your application using unsafe.
|
|
We can use reflect2 instead. This way, if `sliceHeader` changes in the future,
|
|
only reflect2 need to be upgraded.
|
|
|
|
reflect2 tries its best to keep the implementation same as reflect (by testing). |