├── vendor ├── cel.dev │ └── expr │ │ ├── WORKSPACE.bzlmod │ │ ├── .gitignore │ │ ├── .bazelversion │ │ ├── .gitattributes │ │ ├── cloudbuild.yaml │ │ ├── regen_go_proto_canonical_protos.sh │ │ └── regen_go_proto.sh ├── github.com │ ├── felixge │ │ └── httpsnoop │ │ │ ├── .gitignore │ │ │ └── Makefile │ ├── modern-go │ │ ├── reflect2 │ │ │ ├── reflect2_amd64.s │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── .gitignore │ │ │ ├── Gopkg.lock │ │ │ └── .travis.yml │ │ └── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── go_above_19.go │ │ │ ├── test.sh │ │ │ └── log.go │ ├── NYTimes │ │ └── gziphandler │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── emicklei │ │ └── go-restful │ │ │ └── v3 │ │ │ ├── .goconvey │ │ │ ├── Srcfile │ │ │ ├── coverage.sh │ │ │ ├── Makefile │ │ │ ├── bench_test.sh │ │ │ └── SECURITY.md │ ├── openshift │ │ ├── api │ │ │ ├── cloudnetwork │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── network │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── project │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── apps │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── helm │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1beta1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── quota │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── apiserver │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── config │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ │ └── v1alpha2 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── console │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ └── types.go │ │ │ ├── image │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── docker10 │ │ │ │ │ └── doc.go │ │ │ │ ├── dockerpre012 │ │ │ │ │ └── doc.go │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── oauth │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── samples │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── imageregistry │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ └── Makefile │ │ │ ├── machine │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ │ └── v1alpha1 │ │ │ │ │ └── doc.go │ │ │ ├── sharedresource │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── kubecontrolplane │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── networkoperator │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── servicecertsigner │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1alpha1 │ │ │ │ │ └── doc.go │ │ │ ├── openshiftcontrolplane │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── operatorcontrolplane │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── route │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── operator │ │ │ │ ├── v1 │ │ │ │ │ ├── zz_generated.crd-manifests │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ │ ├── .codegen.yaml │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── template │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── OWNERS │ │ │ ├── security │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── monitoring │ │ │ │ ├── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ │ └── .codegen.yaml │ │ │ ├── .ci-operator.yaml │ │ │ ├── authorization │ │ │ │ └── v1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── doc.go │ │ │ ├── build │ │ │ │ ├── OWNERS │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── osin │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ ├── .gitattributes │ │ │ ├── legacyconfig │ │ │ │ └── v1 │ │ │ │ │ └── doc.go │ │ │ └── user │ │ │ │ └── v1 │ │ │ │ └── doc.go │ │ ├── build-machinery-go │ │ │ ├── .gitignore │ │ │ ├── make │ │ │ │ ├── lib │ │ │ │ │ ├── tmp.mk │ │ │ │ │ └── doc.go │ │ │ │ ├── doc.go │ │ │ │ ├── targets │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── golang │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── openshift │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── operator │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── release.mk │ │ │ │ │ └── help.mk │ │ │ │ ├── operator.mk │ │ │ │ └── golang.example.mk.help.log │ │ │ ├── scripts │ │ │ │ └── doc.go │ │ │ ├── .ci-operator.yaml │ │ │ └── OWNERS │ │ ├── library-go │ │ │ └── pkg │ │ │ │ ├── crypto │ │ │ │ └── OWNERS │ │ │ │ ├── operator │ │ │ │ ├── certrotation │ │ │ │ │ └── OWNERS │ │ │ │ ├── configobserver │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── proxy │ │ │ │ │ │ └── OWNERS │ │ │ │ │ └── apiserver │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── listers.go │ │ │ │ ├── events │ │ │ │ │ └── OWNERS │ │ │ │ └── v1helpers │ │ │ │ │ └── fake_informers.go │ │ │ │ ├── controller │ │ │ │ └── fileobserver │ │ │ │ │ └── OWNERS │ │ │ │ └── network │ │ │ │ └── dialer.go │ │ └── client-go │ │ │ ├── config │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── fake │ │ │ │ │ └── doc.go │ │ │ │ │ ├── typed │ │ │ │ │ └── config │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ │ └── v1alpha2 │ │ │ │ │ │ ├── fake │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ └── scheme │ │ │ │ │ └── doc.go │ │ │ └── listers │ │ │ │ └── config │ │ │ │ └── v1alpha2 │ │ │ │ └── expansion_generated.go │ │ │ └── operator │ │ │ └── clientset │ │ │ └── versioned │ │ │ ├── fake │ │ │ └── doc.go │ │ │ ├── typed │ │ │ └── operator │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ └── fake │ │ │ │ │ └── doc.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── fake │ │ │ │ └── doc.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ └── scheme │ │ │ └── doc.go │ ├── robfig │ │ └── cron │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ └── .gitignore │ ├── spf13 │ │ ├── pflag │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── .editorconfig │ │ │ └── .travis.yml │ │ └── cobra │ │ │ ├── .mailmap │ │ │ └── MAINTAINERS │ ├── go-openapi │ │ ├── jsonpointer │ │ │ └── .gitignore │ │ ├── jsonreference │ │ │ └── .gitignore │ │ └── swag │ │ │ ├── .gitignore │ │ │ ├── .gitattributes │ │ │ ├── TODO.md │ │ │ ├── jsonutils │ │ │ └── adapters │ │ │ │ └── ifaces │ │ │ │ └── doc.go │ │ │ ├── .codecov.yml │ │ │ ├── go.work.sum │ │ │ └── go.work │ ├── go-task │ │ └── slim-sprig │ │ │ └── v3 │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── Taskfile.yml │ │ │ ├── network.go │ │ │ └── .editorconfig │ ├── pkg │ │ ├── profile │ │ │ ├── AUTHORS │ │ │ └── .travis.yml │ │ └── errors │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── appveyor.yml │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_notappengine.go │ │ │ └── .travis.yml │ ├── prometheus │ │ ├── procfs │ │ │ ├── .gitignore │ │ │ ├── MAINTAINERS.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── SECURITY.md │ │ │ └── NOTICE │ │ ├── client_golang │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ └── README.md │ │ ├── client_model │ │ │ └── NOTICE │ │ └── common │ │ │ └── NOTICE │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── test.sh │ ├── onsi │ │ ├── ginkgo │ │ │ └── v2 │ │ │ │ ├── types │ │ │ │ ├── version.go │ │ │ │ └── types_patch.go │ │ │ │ ├── OWNERS │ │ │ │ ├── .gitignore │ │ │ │ ├── internal │ │ │ │ ├── progress_report_win.go │ │ │ │ ├── output_interceptor_wasm.go │ │ │ │ ├── interrupt_handler │ │ │ │ │ ├── sigquit_swallower_windows.go │ │ │ │ │ └── sigquit_swallower_unix.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ ├── progress_report_wasm.go │ │ │ │ ├── counter.go │ │ │ │ ├── progress_report_unix.go │ │ │ │ └── progress_report_bsd.go │ │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ │ └── Makefile │ │ └── gomega │ │ │ ├── .gitignore │ │ │ └── matchers │ │ │ └── support │ │ │ └── goraph │ │ │ ├── node │ │ │ └── node.go │ │ │ └── util │ │ │ └── util.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── internal │ │ │ ├── internal.go │ │ │ └── unix2.go │ │ │ ├── staticcheck.conf │ │ │ ├── .mailmap │ │ │ ├── .gitignore │ │ │ ├── system_bsd.go │ │ │ └── system_darwin.go │ ├── grpc-ecosystem │ │ ├── grpc-gateway │ │ │ └── v2 │ │ │ │ ├── utilities │ │ │ │ └── doc.go │ │ │ │ ├── runtime │ │ │ │ └── doc.go │ │ │ │ ├── protoc-gen-openapiv2 │ │ │ │ └── options │ │ │ │ │ └── buf.gen.yaml │ │ │ │ └── internal │ │ │ │ └── httprule │ │ │ │ └── fuzz.go │ │ └── go-grpc-prometheus │ │ │ └── makefile │ ├── google │ │ ├── gnostic-models │ │ │ ├── jsonschema │ │ │ │ └── README.md │ │ │ └── compiler │ │ │ │ └── README.md │ │ ├── uuid │ │ │ └── CONTRIBUTORS │ │ ├── pprof │ │ │ └── AUTHORS │ │ ├── go-cmp │ │ │ └── cmp │ │ │ │ └── internal │ │ │ │ └── flags │ │ │ │ └── flags.go │ │ ├── cel-go │ │ │ └── common │ │ │ │ ├── overloads │ │ │ │ └── BUILD.bazel │ │ │ │ └── operators │ │ │ │ └── BUILD.bazel │ │ └── btree │ │ │ └── README.md │ ├── coreos │ │ ├── go-semver │ │ │ └── NOTICE │ │ └── go-systemd │ │ │ └── v22 │ │ │ └── NOTICE │ ├── go-logr │ │ ├── logr │ │ │ └── CHANGELOG.md │ │ └── stdr │ │ │ └── README.md │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ └── CONTRIBUTORS │ ├── imdario │ │ └── mergo │ │ │ ├── .deepsource.toml │ │ │ ├── .travis.yml │ │ │ └── SECURITY.md │ ├── stretchr │ │ └── testify │ │ │ └── assert │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go.tmpl │ │ │ └── errors.go │ ├── munnerz │ │ └── goautoneg │ │ │ └── Makefile │ ├── fxamacker │ │ └── cbor │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── omitzero_go124.go │ │ │ ├── omitzero_pre_go124.go │ │ │ └── SECURITY.md │ ├── stoewer │ │ └── go-strcase │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ └── doc.go │ ├── x448 │ │ └── float16 │ │ │ └── .travis.yml │ ├── antlr4-go │ │ └── antlr │ │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── atn_type.go │ │ │ └── char_stream.go │ ├── openshift-eng │ │ └── openshift-tests-extension │ │ │ └── pkg │ │ │ └── util │ │ │ └── sets │ │ │ └── README.md │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── testall.sh │ │ │ └── xxhash_asm.go │ └── cenkalti │ │ └── backoff │ │ └── v5 │ │ └── .gitignore ├── google.golang.org │ ├── grpc │ │ ├── AUTHORS │ │ ├── GOVERNANCE.md │ │ ├── CODE-OF-CONDUCT.md │ │ └── SECURITY.md │ └── protobuf │ │ ├── internal │ │ ├── editiondefaults │ │ │ ├── editions_defaults.binpb │ │ │ └── defaults.go │ │ ├── flags │ │ │ ├── proto_legacy_enable.go │ │ │ └── proto_legacy_disable.go │ │ └── genid │ │ │ └── name.go │ │ ├── encoding │ │ └── prototext │ │ │ └── doc.go │ │ └── runtime │ │ └── protoiface │ │ └── legacy.go ├── golang.org │ └── x │ │ ├── net │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── config_go125.go │ │ │ └── config_go126.go │ │ └── idna │ │ │ └── pre_go118.go │ │ ├── sys │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── ptrace_ios.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── endian_big.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── constants.go │ │ │ ├── endian_little.go │ │ │ ├── mmap_nomremap.go │ │ │ └── vgetrandom_linux.go │ │ ├── plan9 │ │ │ └── asm.s │ │ ├── cpu │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_other_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_loong64.s │ │ │ ├── cpu_openbsd_arm64.s │ │ │ └── cpu_ppc64x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── registry │ │ │ └── mksyscall.go │ │ │ └── mksyscall.go │ │ ├── term │ │ ├── codereview.cfg │ │ ├── term_unix_other.go │ │ └── term_unix_bsd.go │ │ ├── oauth2 │ │ ├── internal │ │ │ └── doc.go │ │ └── .travis.yml │ │ ├── crypto │ │ └── internal │ │ │ └── poly1305 │ │ │ └── mac_noasm.go │ │ └── text │ │ ├── secure │ │ └── bidirule │ │ │ └── bidirule10.0.0.go │ │ ├── encoding │ │ ├── japanese │ │ │ └── all.go │ │ └── simplifiedchinese │ │ │ └── all.go │ │ └── internal │ │ └── language │ │ └── common.go ├── go.opentelemetry.io │ ├── otel │ │ ├── requirements.txt │ │ ├── .gitattributes │ │ ├── .clomonitor.yml │ │ ├── .codespellignore │ │ ├── sdk │ │ │ ├── README.md │ │ │ ├── trace │ │ │ │ └── README.md │ │ │ ├── resource │ │ │ │ ├── README.md │ │ │ │ ├── host_id_darwin.go │ │ │ │ └── host_id_linux.go │ │ │ ├── instrumentation │ │ │ │ ├── README.md │ │ │ │ └── library.go │ │ │ └── version.go │ │ ├── codes │ │ │ ├── README.md │ │ │ └── doc.go │ │ ├── baggage │ │ │ ├── README.md │ │ │ └── doc.go │ │ ├── metric │ │ │ ├── README.md │ │ │ ├── noop │ │ │ │ └── README.md │ │ │ └── embedded │ │ │ │ └── README.md │ │ ├── trace │ │ │ ├── README.md │ │ │ ├── noop │ │ │ │ └── README.md │ │ │ ├── embedded │ │ │ │ └── README.md │ │ │ └── internal │ │ │ │ └── telemetry │ │ │ │ └── doc.go │ │ ├── attribute │ │ │ ├── README.md │ │ │ └── doc.go │ │ ├── propagation │ │ │ └── README.md │ │ ├── .gitignore │ │ ├── semconv │ │ │ ├── v1.12.0 │ │ │ │ ├── README.md │ │ │ │ └── exception.go │ │ │ ├── v1.17.0 │ │ │ │ ├── README.md │ │ │ │ ├── exception.go │ │ │ │ └── http.go │ │ │ └── v1.37.0 │ │ │ │ ├── README.md │ │ │ │ └── exception.go │ │ ├── exporters │ │ │ └── otlp │ │ │ │ └── otlptrace │ │ │ │ ├── README.md │ │ │ │ ├── otlptracegrpc │ │ │ │ └── README.md │ │ │ │ └── version.go │ │ ├── version.go │ │ ├── .codespellrc │ │ ├── dependencies.Dockerfile │ │ └── internal_logging.go │ ├── auto │ │ └── sdk │ │ │ └── internal │ │ │ └── telemetry │ │ │ └── doc.go │ └── contrib │ │ └── instrumentation │ │ └── net │ │ └── http │ │ └── otelhttp │ │ └── doc.go ├── k8s.io │ ├── apiserver │ │ └── pkg │ │ │ ├── endpoints │ │ │ ├── OWNERS │ │ │ ├── request │ │ │ │ └── OWNERS │ │ │ ├── handlers │ │ │ │ ├── metrics │ │ │ │ │ └── OWNERS │ │ │ │ └── fieldmanager │ │ │ │ │ └── OWNERS │ │ │ ├── discovery │ │ │ │ └── OWNERS │ │ │ ├── filters │ │ │ │ └── OWNERS │ │ │ └── metrics │ │ │ │ └── OWNERS │ │ │ ├── server │ │ │ ├── mux │ │ │ │ └── OWNERS │ │ │ ├── routes │ │ │ │ └── OWNERS │ │ │ ├── filters │ │ │ │ └── OWNERS │ │ │ └── options │ │ │ │ ├── encryptionconfig │ │ │ │ └── OWNERS │ │ │ │ └── OWNERS │ │ │ ├── features │ │ │ └── OWNERS │ │ │ ├── storage │ │ │ ├── etcd3 │ │ │ │ ├── metrics │ │ │ │ │ └── OWNERS │ │ │ │ └── OWNERS │ │ │ ├── storagebackend │ │ │ │ └── OWNERS │ │ │ ├── value │ │ │ │ ├── OWNERS │ │ │ │ └── encrypt │ │ │ │ │ └── envelope │ │ │ │ │ └── kmsv2 │ │ │ │ │ └── v2 │ │ │ │ │ └── OWNERS │ │ │ └── cacher │ │ │ │ └── metrics │ │ │ │ └── OWNERS │ │ │ ├── storageversion │ │ │ └── OWNERS │ │ │ ├── audit │ │ │ └── OWNERS │ │ │ ├── admission │ │ │ └── plugin │ │ │ │ └── cel │ │ │ │ └── OWNERS │ │ │ ├── authentication │ │ │ └── request │ │ │ │ └── x509 │ │ │ │ └── OWNERS │ │ │ ├── apis │ │ │ └── audit │ │ │ │ └── OWNERS │ │ │ ├── cel │ │ │ └── OWNERS │ │ │ ├── quota │ │ │ └── v1 │ │ │ │ └── OWNERS │ │ │ ├── util │ │ │ └── flowcontrol │ │ │ │ └── OWNERS │ │ │ └── registry │ │ │ ├── rest │ │ │ └── OWNERS │ │ │ └── generic │ │ │ └── OWNERS │ ├── kube-openapi │ │ └── pkg │ │ │ ├── util │ │ │ └── proto │ │ │ │ └── OWNERS │ │ │ ├── validation │ │ │ ├── errors │ │ │ │ └── .gitignore │ │ │ ├── spec │ │ │ │ └── .gitignore │ │ │ └── strfmt │ │ │ │ └── .gitignore │ │ │ └── internal │ │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ ├── AUTHORS │ │ │ └── CONTRIBUTORS │ ├── utils │ │ ├── ptr │ │ │ ├── README.md │ │ │ └── OWNERS │ │ └── clock │ │ │ └── README.md │ ├── client-go │ │ ├── openapi │ │ │ └── OWNERS │ │ ├── util │ │ │ ├── retry │ │ │ │ └── OWNERS │ │ │ ├── keyutil │ │ │ │ └── OWNERS │ │ │ └── cert │ │ │ │ └── OWNERS │ │ ├── tools │ │ │ ├── metrics │ │ │ │ └── OWNERS │ │ │ ├── record │ │ │ │ └── OWNERS │ │ │ ├── auth │ │ │ │ └── OWNERS │ │ │ ├── events │ │ │ │ └── OWNERS │ │ │ └── leaderelection │ │ │ │ └── OWNERS │ │ ├── applyconfigurations │ │ │ └── OWNERS │ │ ├── transport │ │ │ └── OWNERS │ │ ├── pkg │ │ │ └── apis │ │ │ │ └── clientauthentication │ │ │ │ └── OWNERS │ │ └── rest │ │ │ ├── OWNERS │ │ │ └── .mockery.yaml │ ├── klog │ │ └── v2 │ │ │ ├── .golangci.yaml │ │ │ ├── code-of-conduct.md │ │ │ ├── internal │ │ │ └── clock │ │ │ │ └── README.md │ │ │ ├── .gitignore │ │ │ ├── OWNERS │ │ │ └── klog_file_others.go │ ├── apimachinery │ │ ├── pkg │ │ │ ├── util │ │ │ │ ├── mergepatch │ │ │ │ │ └── OWNERS │ │ │ │ ├── strategicpatch │ │ │ │ │ └── OWNERS │ │ │ │ └── validation │ │ │ │ │ └── OWNERS │ │ │ ├── api │ │ │ │ ├── resource │ │ │ │ │ └── OWNERS │ │ │ │ ├── validation │ │ │ │ │ └── OWNERS │ │ │ │ ├── meta │ │ │ │ │ └── OWNERS │ │ │ │ └── errors │ │ │ │ │ └── OWNERS │ │ │ └── apis │ │ │ │ └── meta │ │ │ │ └── v1 │ │ │ │ └── OWNERS │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── json │ │ │ └── OWNERS │ ├── apiextensions-apiserver │ │ └── pkg │ │ │ └── apis │ │ │ └── apiextensions │ │ │ ├── v1 │ │ │ └── .import-restrictions │ │ │ └── v1beta1 │ │ │ └── .import-restrictions │ └── component-base │ │ ├── tracing │ │ └── OWNERS │ │ ├── metrics │ │ └── OWNERS │ │ ├── logs │ │ └── OWNERS │ │ ├── cli │ │ └── OWNERS │ │ └── compatibility │ │ └── OWNERS ├── go.uber.org │ ├── multierr │ │ └── .gitignore │ └── zap │ │ └── checklicense.sh ├── go.etcd.io │ └── etcd │ │ └── client │ │ └── v3 │ │ └── OWNERS ├── gopkg.in │ ├── evanphx │ │ └── json-patch.v4 │ │ │ └── .gitignore │ ├── natefinch │ │ └── lumberjack.v2 │ │ │ ├── .travis.yml │ │ │ ├── chown.go │ │ │ └── .gitignore │ └── yaml.v2 │ │ └── .travis.yml ├── sigs.k8s.io │ ├── json │ │ ├── OWNERS │ │ └── code-of-conduct.md │ ├── yaml │ │ ├── code-of-conduct.md │ │ ├── .gitignore │ │ └── OWNERS │ └── randfill │ │ ├── code-of-conduct.md │ │ ├── OWNERS │ │ └── OWNERS_ALIASES └── go.yaml.in │ └── yaml │ └── v2 │ └── .travis.yml ├── OWNERS ├── .ci-operator.yaml ├── version └── version.go ├── assets ├── csidriveroperators │ ├── aws-ebs │ │ ├── hypershift │ │ │ ├── guest │ │ │ │ ├── claim_role.patch.yaml │ │ │ │ ├── generated │ │ │ │ │ ├── v1_serviceaccount_aws-ebs-csi-driver-operator.yaml │ │ │ │ │ └── operator.openshift.io_v1_clustercsidriver_ebs.csi.aws.com.yaml │ │ │ │ └── monitoring_role.patch.yaml │ │ │ └── mgmt │ │ │ │ ├── sa.patch.yaml │ │ │ │ ├── generated │ │ │ │ └── v1_serviceaccount_aws-ebs-csi-driver-operator.yaml │ │ │ │ └── hypershift_role.patch.yaml │ │ ├── base │ │ │ ├── 02_sa.yaml │ │ │ ├── kustomization.yaml │ │ │ └── 10_cr.yaml │ │ └── standalone │ │ │ ├── generated │ │ │ ├── v1_serviceaccount_aws-ebs-csi-driver-operator.yaml │ │ │ └── operator.openshift.io_v1_clustercsidriver_ebs.csi.aws.com.yaml │ │ │ └── monitoring_role.patch.yaml │ ├── azure-disk │ │ ├── hypershift │ │ │ ├── guest │ │ │ │ ├── claim_role.patch.yaml │ │ │ │ ├── generated │ │ │ │ │ ├── v1_serviceaccount_azure-disk-csi-driver-operator.yaml │ │ │ │ │ └── operator.openshift.io_v1_clustercsidriver_disk.csi.azure.com.yaml │ │ │ │ └── monitoring_role.patch.yaml │ │ │ └── mgmt │ │ │ │ ├── sa.patch.yaml │ │ │ │ ├── generated │ │ │ │ └── v1_serviceaccount_azure-disk-csi-driver-operator.yaml │ │ │ │ └── hypershift_role.patch.yaml │ │ ├── base │ │ │ ├── 03_sa.yaml │ │ │ ├── kustomization.yaml │ │ │ └── 09_cr.yaml │ │ └── standalone │ │ │ ├── generated │ │ │ ├── v1_serviceaccount_azure-disk-csi-driver-operator.yaml │ │ │ └── operator.openshift.io_v1_clustercsidriver_disk.csi.azure.com.yaml │ │ │ └── monitoring_role.patch.yaml │ ├── azure-file │ │ ├── hypershift │ │ │ ├── guest │ │ │ │ ├── claim_role.patch.yaml │ │ │ │ ├── generated │ │ │ │ │ ├── v1_serviceaccount_azure-file-csi-driver-operator.yaml │ │ │ │ │ └── operator.openshift.io_v1_clustercsidriver_file.csi.azure.com.yaml │ │ │ │ └── monitoring_role.patch.yaml │ │ │ └── mgmt │ │ │ │ ├── sa.patch.yaml │ │ │ │ ├── generated │ │ │ │ └── v1_serviceaccount_azure-file-csi-driver-operator.yaml │ │ │ │ └── hypershift_role.patch.yaml │ │ ├── base │ │ │ ├── 03_sa.yaml │ │ │ ├── kustomization.yaml │ │ │ └── 09_cr.yaml │ │ └── standalone │ │ │ ├── generated │ │ │ ├── v1_serviceaccount_azure-file-csi-driver-operator.yaml │ │ │ └── operator.openshift.io_v1_clustercsidriver_file.csi.azure.com.yaml │ │ │ └── monitoring_role.patch.yaml │ ├── openstack-cinder │ │ ├── hypershift │ │ │ ├── guest │ │ │ │ ├── claim_role.patch.yaml │ │ │ │ ├── generated │ │ │ │ │ └── v1_serviceaccount_openstack-cinder-csi-driver-operator.yaml │ │ │ │ └── monitoring_role.patch.yaml │ │ │ └── mgmt │ │ │ │ ├── sa.patch.yaml │ │ │ │ ├── hypershift_role.patch.yaml │ │ │ │ └── generated │ │ │ │ └── v1_serviceaccount_openstack-cinder-csi-driver-operator.yaml │ │ ├── base │ │ │ ├── 02_sa.yaml │ │ │ ├── kustomization.yaml │ │ │ └── 08_cr.yaml │ │ └── standalone │ │ │ ├── generated │ │ │ └── v1_serviceaccount_openstack-cinder-csi-driver-operator.yaml │ │ │ ├── monitoring_role.patch.yaml │ │ │ └── kustomization.yaml │ ├── gcp-pd │ │ ├── 02_sa.yaml │ │ ├── 08_cr.yaml │ │ ├── 06_clusterrolebinding.yaml │ │ └── 04_rolebinding.yaml │ ├── vsphere │ │ ├── 03_sa.yaml │ │ ├── 09_cr.yaml │ │ ├── 02_configmap.yaml │ │ └── 13_prometheus_role.yaml │ ├── ibm-vpc-block │ │ ├── 03_sa.yaml │ │ └── 09_cr.yaml │ ├── powervs-block │ │ ├── hypershift │ │ │ ├── mgmt │ │ │ │ └── 01_sa.yaml │ │ │ └── guest │ │ │ │ ├── 01_sa.yaml │ │ │ │ └── 07_cr.yaml │ │ └── standalone │ │ │ ├── 01_sa.yaml │ │ │ └── 07_cr.yaml │ └── openstack-manila │ │ ├── hypershift │ │ ├── mgmt │ │ │ ├── sa.patch.yaml │ │ │ └── generated │ │ │ │ └── v1_serviceaccount_manila-csi-driver-operator.yaml │ │ └── guest │ │ │ ├── monitoring_role.patch.yaml │ │ │ ├── generated │ │ │ └── operator.openshift.io_v1_clustercsidriver_manila.csi.openstack.org.yaml │ │ │ └── kustomization.yaml │ │ ├── base │ │ ├── 02_sa.yaml │ │ ├── kustomization.yaml │ │ └── 08_cr.yaml │ │ └── standalone │ │ ├── monitoring_role.patch.yaml │ │ └── generated │ │ ├── openshift-cluster-csi-drivers_v1_serviceaccount_manila-csi-driver-operator.yaml │ │ └── default_operator.openshift.io_v1_clustercsidriver_manila.csi.openstack.org.yaml ├── vsphere_problem_detector │ ├── 01_sa.yaml │ └── 06_configmap.yaml ├── volumedatasourcevalidator │ ├── 01_serviceaccount.yaml │ └── 03_clusterrolebinding.yaml └── assets.go ├── manifests ├── 07_service_account-hypershift.yaml ├── 06_operator_cr-hypershift.yaml └── 11_cluster_operator-hypershift.yaml ├── profile-patches └── hypershift │ ├── 06_operator_cr.yaml-patch │ ├── 08_operator_rbac.yaml-patch │ ├── 11_cluster_operator.yaml-patch │ └── 07_service_account.yaml-patch ├── .snyk ├── hack └── verify-manifest.sh ├── OWNERS_ALIASES └── pkg └── dependencymagnet └── dependencymagnet.go /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/cloudnetwork/.codegen.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | MODULE.bazel.lock 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.log.raw 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/AUTHORS: -------------------------------------------------------------------------------- 1 | Dave Cheney 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/project/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mfojtik 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /testdata/fixtures/ 2 | /fixtures 3 | -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | cover.html 3 | cover.out 4 | /bin 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/apps/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mfojtik 3 | - soltysh 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/helm/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/quota/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mfojtik 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.3.2 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pb.go linguist-generated=true 2 | *.pb.go -diff -merge 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/apiserver/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/console/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/console/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - jhadvig 3 | - spadgett 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/oauth/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/samples/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.21.0" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/imageregistry/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/sharedresource/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | approvers: 3 | - bertinatto 4 | - stbenjam 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/kubecontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/networkoperator/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/servicecertsigner/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - danwinship 3 | - dcbw 4 | - knobunc 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/openshiftcontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operatorcontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/route/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | swaggerdocs: 3 | commentPolicy: Warn 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/v1/zz_generated.crd-manifests/doc.go: -------------------------------------------------------------------------------- 1 | package operator_v1_crdmanifests 2 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/template/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - bparees 3 | - gabemontero 4 | - jim-minter 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/crypto/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - stlaz 3 | approvers: 4 | - stlaz 5 | -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - openshift-storage-maintainers 3 | - openstack-approvers 4 | component: "Storage / Operators" 5 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - bparees 3 | - dmage 4 | - legionus 5 | - miminar 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - JoelSpeed 3 | - alexander-demichev 4 | - mandre 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- 1 | # Pointer 2 | 3 | This package provides some functions for pointer-based operations. 4 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/internal/internal.go: -------------------------------------------------------------------------------- 1 | // Package internal contains some helpers. 2 | package internal 3 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TODO 3 | tmp/**/* 4 | *.coverprofile 5 | .vscode 6 | .idea/ 7 | *.log -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.golangci.yaml: -------------------------------------------------------------------------------- 1 | linters: 2 | disable-all: true 3 | enable: 4 | - nolintlint 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitattributes: -------------------------------------------------------------------------------- 1 | # gofmt always uses LF, whereas Git uses CRLF on Windows. 2 | *.go text eol=lf 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/networkoperator/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - danwinship 3 | - dcbw 4 | - knobunc 5 | - squeed 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | swaggerdocs: 3 | commentPolicy: Warn 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/route/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - ironcladlou 3 | - knobunc 4 | - pravisankar 5 | - Miciah 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/operator/certrotation/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - stlaz 3 | approvers: 4 | - stlaz 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/operator/configobserver/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - benluddy 3 | approvers: 4 | - benluddy 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/operator/configobserver/proxy/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - stlaz 3 | approvers: 4 | - stlaz 5 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/clientv3 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ['all', 2 | '-U1000', # Don't complain about unused functions. 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/TODO.md: -------------------------------------------------------------------------------- 1 | fix data race https://github.com/go-openapi/swag/actions/runs/17989156861/job/51174860188 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/routes/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /.ci-operator.yaml: -------------------------------------------------------------------------------- 1 | build_root_image: 2 | name: release 3 | namespace: openshift 4 | tag: rhel-9-release-golang-1.24-openshift-4.21 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/cloudnetwork/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - danwinship 3 | - dcbw 4 | - knobunc 5 | - squeed 6 | - abhat 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/sharedresource/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - bparees 3 | - gabemontero 4 | - adambkaplan 5 | - coreydaley 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/lib/tmp.mk: -------------------------------------------------------------------------------- 1 | PERMANENT_TMP :=_output 2 | PERMANENT_TMP_GOPATH :=$(PERMANENT_TMP)/tools 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/request/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/features/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - feature-approvers 5 | -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- 1 | package version 2 | 3 | var ( 4 | // Version is the version of cluster-storage-operator 5 | Version = "0.0.1" 6 | ) 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/doc.go: -------------------------------------------------------------------------------- 1 | // required for gomod to pull in packages. 2 | 3 | package alpha_build_machinery 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/lib/doc.go: -------------------------------------------------------------------------------- 1 | // required for gomod to pull in packages. 2 | 3 | package alpha_build_machinery 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/scripts/doc.go: -------------------------------------------------------------------------------- 1 | // required for gomod to pull in packages. 2 | 3 | package alpha_build_machinery 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.{cmd,[cC][mM][dD]} text eol=crlf 3 | *.{bat,[bB][aA][tT]} text eol=crlf 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/jsonutils/adapters/ifaces/doc.go: -------------------------------------------------------------------------------- 1 | // Package ifaces exposes all interfaces to work with adapters. 2 | package ifaces 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/targets/doc.go: -------------------------------------------------------------------------------- 1 | // required for gomod to pull in packages. 2 | 3 | package alpha_build_machinery 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/evanphx/json-patch.v4/.gitignore: -------------------------------------------------------------------------------- 1 | # editor and IDE paraphernalia 2 | .idea 3 | .vscode 4 | 5 | # macOS paraphernalia 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/filters/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | - dims 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/etcd3/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - logicalhan 5 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - deads2k 5 | - jpbetz 6 | - liggitt 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="config.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/imageregistry/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package 2 | // +groupName=imageregistry.operator.openshift.io 3 | package v1 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/quota/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="quota.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/route/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="route.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.clomonitor.yml: -------------------------------------------------------------------------------- 1 | exemptions: 2 | - check: artifacthub_badge 3 | reason: "Artifact Hub doesn't support Go packages" 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/handlers/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - logicalhan 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - wojtek-t 5 | - jayunit100 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/hypershift/guest/claim_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/0/resources/-" 3 | value: "persistentvolumeclaims" 4 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/v2/utilities/doc.go: -------------------------------------------------------------------------------- 1 | // Package utilities provides members for internal use in grpc-gateway. 2 | package utilities 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - JoelSpeed 3 | - everettraven 4 | approvers: 5 | - deads2k 6 | - JoelSpeed 7 | - everettraven 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/console/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="console.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="machine.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="network.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="operator.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/security/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="security.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/targets/golang/doc.go: -------------------------------------------------------------------------------- 1 | // required for gomod to pull in packages. 2 | 3 | package alpha_build_machinery 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/targets/openshift/doc.go: -------------------------------------------------------------------------------- 1 | // required for gomod to pull in packages. 2 | 3 | package alpha_build_machinery 4 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_js.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package logrus 4 | 5 | func isTerminal(fd int) bool { 6 | return false 7 | } 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storageversion/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - caesarxuchao 5 | - roycaihw 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- 1 | linters: 2 | disable-all: true 3 | enable: # sorted alphabetical 4 | - gofmt 5 | - misspell 6 | - revive 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- 1 | # Clock 2 | 3 | This package provides an interface for time-based operations. It allows 4 | mocking time for testing. 5 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/hypershift/guest/claim_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/0/resources/-" 3 | value: "persistentvolumeclaims" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/apiserver/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="apiserver.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/helm/v1beta1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="helm.openshift.io/v1beta1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/monitoring/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="monitoring.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/controller/fileobserver/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - sttts 4 | - mfojtik 5 | approvers: 6 | - mfojtik 7 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.codespellignore: -------------------------------------------------------------------------------- 1 | ot 2 | fo 3 | te 4 | collison 5 | consequentially 6 | ans 7 | nam 8 | valu 9 | thirdparty 10 | addOpt 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/discovery/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - alexzielenski 5 | - jefftree 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/hypershift/guest/claim_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/0/resources/-" 3 | value: "persistentvolumeclaims" 4 | 5 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/hypershift/guest/claim_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/0/resources/-" 3 | value: "persistentvolumeclaims" 4 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/internal/unix2.go: -------------------------------------------------------------------------------- 1 | //go:build !windows 2 | 3 | package internal 4 | 5 | func HasPrivilegesForSymlink() bool { 6 | return true 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/google/gnostic-models/jsonschema/README.md: -------------------------------------------------------------------------------- 1 | # jsonschema 2 | 3 | This directory contains code for reading, writing, and manipulating JSON 4 | schemas. 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/.ci-operator.yaml: -------------------------------------------------------------------------------- 1 | build_root_image: 2 | name: release 3 | namespace: openshift 4 | tag: rhel-9-release-golang-1.24-openshift-4.21 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/authorization/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="authorization.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/cloudnetwork/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="cloud.network.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/v1alpha1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="config.openshift.io/v1alpha1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/v1alpha2/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="config.openshift.io/v1alpha2" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/v1beta1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="machine.openshift.io/v1beta1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/v1alpha1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="network.openshift.io/v1alpha1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/samples/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="samples.operator.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/targets/openshift/operator/doc.go: -------------------------------------------------------------------------------- 1 | // required for gomod to pull in packages. 2 | 3 | package alpha_build_machinery 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/filters/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - deads2k 5 | - sttts 6 | - soltysh 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/storagebackend/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - smarterclayton 5 | - wojtek-t 6 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.mailmap: -------------------------------------------------------------------------------- 1 | Chris Howey 2 | Nathan Youngman <4566+nathany@users.noreply.github.com> 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/networkoperator/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="network.operator.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/v1alpha1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="operator.openshift.io/v1alpha1" 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/mergepatch/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - pwittrock 5 | reviewers: 6 | - apelisse 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - wojtek-t 5 | approvers: 6 | - logicalhan 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/applyconfigurations/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | - jpbetz 6 | - api-approvers 7 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go: -------------------------------------------------------------------------------- 1 | package node 2 | 3 | type Node struct { 4 | ID int 5 | Value any 6 | } 7 | 8 | type NodeOrderedSet []Node 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/build/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - adambkaplan 3 | - bparees 4 | - sayan-biswas 5 | emeritus_reviewers: 6 | - jim-minter 7 | - gabemontero 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/docker10/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | 3 | // Package docker10 is the docker10 version of the API. 4 | package docker10 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/imageregistry/v1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="imageregistry.operator.openshift.io/v1" 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/README.md: -------------------------------------------------------------------------------- 1 | # SDK 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/sdk)](https://pkg.go.dev/go.opentelemetry.io/otel/sdk) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | reviewers: 4 | - kwiesmueller 5 | emeritus_approvers: 6 | - jennybuckley 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/keyutil/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - sig-auth-certificates-approvers 3 | reviewers: 4 | - sig-auth-certificates-reviewers 5 | labels: 6 | - sig/auth 7 | -------------------------------------------------------------------------------- /assets/csidriveroperators/gcp-pd/02_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: gcp-pd-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/NOTICE: -------------------------------------------------------------------------------- 1 | CoreOS Project 2 | Copyright 2018 CoreOS, Inc 3 | 4 | This product includes software developed at CoreOS, Inc. 5 | (http://www.coreos.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - jsonutils/fixtures_test 3 | - jsonutils/adapters/ifaces/mocks 4 | - jsonutils/adapters/testintegration/benchmarks 5 | -------------------------------------------------------------------------------- /vendor/github.com/google/gnostic-models/compiler/README.md: -------------------------------------------------------------------------------- 1 | # Compiler support code 2 | 3 | This directory contains compiler support code used by Gnostic and Gnostic 4 | extensions. 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/sharedresource/v1alpha1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="sharedresource.openshift.io/v1alpha1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/.ci-operator.yaml: -------------------------------------------------------------------------------- 1 | build_root_image: 2 | name: release 3 | namespace: openshift 4 | tag: rhel-9-release-golang-1.23-openshift-4.19 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/operator/events/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mfojtik 3 | - deads2k 4 | - sttts 5 | approvers: 6 | - mfojtik 7 | - deads2k 8 | - sttts 9 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/GOVERNANCE.md: -------------------------------------------------------------------------------- 1 | This repository is governed by the gRPC organization's [governance rules](https://github.com/grpc/grpc-community/blob/master/governance.md). 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/third_party/forked/golang/json/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - pwittrock 5 | reviewers: 6 | - apelisse 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/etcd3/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - wojtek-t 5 | - serathius 6 | labels: 7 | - sig/etcd 8 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/v22/NOTICE: -------------------------------------------------------------------------------- 1 | CoreOS Project 2 | Copyright 2018 CoreOS, Inc 3 | 4 | This product includes software developed at CoreOS, Inc. 5 | (http://www.coreos.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Paul Borman 2 | bmatsuo 3 | shawnps 4 | theory 5 | jboverfelt 6 | dsymonds 7 | cd1 8 | wallclockbuilder 9 | dansouza 10 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import "math" 4 | 5 | func Odd(n int) bool { 6 | return math.Mod(float64(n), 2.0) == 1.0 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/operator.mk: -------------------------------------------------------------------------------- 1 | include $(addprefix $(dir $(lastword $(MAKEFILE_LIST))), \ 2 | default.mk \ 3 | targets/openshift/operator/*.mk \ 4 | ) 5 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/README.md: -------------------------------------------------------------------------------- 1 | # Codes 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/codes)](https://pkg.go.dev/go.opentelemetry.io/otel/codes) 4 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/base/02_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: aws-ebs-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/vsphere/03_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: vmware-vsphere-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/vsphere_problem_detector/01_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: vsphere-problem-detector-operator 5 | namespace: openshift-cluster-storage-operator 6 | -------------------------------------------------------------------------------- /manifests/07_service_account-hypershift.yaml: -------------------------------------------------------------------------------- 1 | # *** AUTOMATICALLY GENERATED FILE - DO NOT EDIT *** 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: cluster-storage-operator 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/dockerpre012/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | 3 | // Package dockerpre012 is the dockerpre012 version of the API. 4 | package dockerpre012 5 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/baggage/README.md: -------------------------------------------------------------------------------- 1 | # Baggage 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/baggage)](https://pkg.go.dev/go.opentelemetry.io/otel/baggage) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/README.md: -------------------------------------------------------------------------------- 1 | # Metric API 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/metric)](https://pkg.go.dev/go.opentelemetry.io/otel/metric) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/README.md: -------------------------------------------------------------------------------- 1 | # Trace API 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/trace)](https://pkg.go.dev/go.opentelemetry.io/otel/trace) 4 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Community Code of Conduct 2 | 3 | gRPC follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). 4 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/base/03_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-disk-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/base/03_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-file-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/ibm-vpc-block/03_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: ibm-vpc-block-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/progress_report_win.go: -------------------------------------------------------------------------------- 1 | //go:build windows 2 | // +build windows 3 | 4 | package internal 5 | 6 | import "os" 7 | 8 | var PROGRESS_SIGNALS = []os.Signal{} 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operatorcontrolplane/v1alpha1/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="controlplane.operator.openshift.io/v1alpha1" 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /assets/volumedatasourcevalidator/01_serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: volume-data-source-validator 5 | namespace: openshift-cluster-storage-operator 6 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Makefile: -------------------------------------------------------------------------------- 1 | all: test 2 | 3 | test: 4 | go vet . 5 | go test -cover -v . 6 | 7 | ex: 8 | find ./examples -type f -name "*.go" | xargs -I {} go build -o /tmp/ignore {} -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | 3 | ## v1.0.0-rc1 4 | 5 | This is the first logged release. Major changes (including breaking changes) 6 | have occurred since earlier tags. 7 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Johannes 'fish' Ziemke @discordianfish 2 | * Paul Gier @pgier 3 | * Ben Kochie @SuperQ 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/attribute/README.md: -------------------------------------------------------------------------------- 1 | # Attribute 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/attribute)](https://pkg.go.dev/go.opentelemetry.io/otel/attribute) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/trace/README.md: -------------------------------------------------------------------------------- 1 | # SDK Trace 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/sdk/trace)](https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace) 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | - 1.15.x 6 | - 1.14.x 7 | - 1.13.x 8 | - 1.12.x 9 | 10 | env: 11 | - GO111MODULE=on 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/record/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sig-instrumentation-reviewers 5 | approvers: 6 | - sig-instrumentation-approvers 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - liggitt 8 | - caesarxuchao 9 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/hypershift/mgmt/sa.patch.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: aws-ebs-csi-driver-operator 5 | imagePullSecrets: 6 | - name: pull-secret 7 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/base/02_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: openstack-cinder-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/powervs-block/hypershift/mgmt/01_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: powervs-block-csi-driver-operator 5 | namespace: ${CONTROLPLANE_NAMESPACE} 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/powervs-block/standalone/01_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: powervs-block-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/v2/runtime/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package runtime contains runtime helper functions used by 3 | servers which protoc-gen-grpc-gateway generates. 4 | */ 5 | package runtime 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - 2uasimojo 3 | - benluddy 4 | - jsafrane 5 | - sanchezl 6 | approvers: 7 | - benluddy 8 | - jsafrane 9 | - sanchezl 10 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/operator/configobserver/apiserver/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - tkashem 3 | - p0lyn0mial 4 | - sttts 5 | approvers: 6 | - tkashem 7 | - p0lyn0mial 8 | - sttts 9 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.11.x 5 | - 1.12.x 6 | - 1.13.x 7 | - tip 8 | 9 | script: 10 | - make check 11 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/noop/README.md: -------------------------------------------------------------------------------- 1 | # Trace Noop 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/trace/noop)](https://pkg.go.dev/go.opentelemetry.io/otel/trace/noop) 4 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/hypershift/mgmt/sa.patch.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-disk-csi-driver-operator 5 | imagePullSecrets: 6 | - name: pull-secret 7 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/hypershift/mgmt/sa.patch.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-file-csi-driver-operator 5 | imagePullSecrets: 6 | - name: pull-secret 7 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/hypershift/mgmt/sa.patch.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: manila-csi-driver-operator 5 | imagePullSecrets: 6 | - name: pull-secret 7 | -------------------------------------------------------------------------------- /assets/csidriveroperators/powervs-block/hypershift/guest/01_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: powervs-block-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.x 4 | - tip 5 | env: 6 | - GO111MODULE=on 7 | install: 8 | - go mod download 9 | script: 10 | - go test -race -v 11 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_wasm.go: -------------------------------------------------------------------------------- 1 | //go:build wasm 2 | 3 | package internal 4 | 5 | func NewOutputInterceptor() OutputInterceptor { 6 | return &NoopOutputInterceptor{} 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package has the automatically generated fake clientset. 4 | package fake 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/operator/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package has the automatically generated fake clientset. 4 | package fake 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Prometheus Community Code of Conduct 2 | 3 | Prometheus follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md). 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/noop/README.md: -------------------------------------------------------------------------------- 1 | # Metric Noop 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/metric/noop)](https://pkg.go.dev/go.opentelemetry.io/otel/metric/noop) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/propagation/README.md: -------------------------------------------------------------------------------- 1 | # Propagation 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/propagation)](https://pkg.go.dev/go.opentelemetry.io/otel/propagation) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/resource/README.md: -------------------------------------------------------------------------------- 1 | # SDK Resource 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/sdk/resource)](https://pkg.go.dev/go.opentelemetry.io/otel/sdk/resource) 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/chown.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package lumberjack 4 | 5 | import ( 6 | "os" 7 | ) 8 | 9 | func chown(_ string, _ os.FileInfo) error { 10 | return nil 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: ci generate clean 2 | 3 | ci: clean generate 4 | go test -race -v ./... 5 | 6 | generate: 7 | go generate . 8 | 9 | clean: 10 | rm -rf *_generated*.go 11 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- 1 | # go test -c output 2 | *.test 3 | *.test.exe 4 | 5 | # Output of go build ./cmd/fsnotify 6 | /fsnotify 7 | /fsnotify.exe 8 | 9 | /test/kqueue 10 | /test/a.out 11 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/ginkgo_cli_dependencies.go: -------------------------------------------------------------------------------- 1 | //go:build ginkgoclidependencies 2 | // +build ginkgoclidependencies 3 | 4 | package ginkgo 5 | 6 | import ( 7 | _ "github.com/onsi/ginkgo/v2/ginkgo" 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/sigquit_swallower_windows.go: -------------------------------------------------------------------------------- 1 | //go:build windows 2 | // +build windows 3 | 4 | package interrupt_handler 5 | 6 | func SwallowSigQuit() { 7 | //noop 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/types_patch.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | type TestSpec interface { 4 | CodeLocations() []CodeLocation 5 | Text() string 6 | AppendText(text string) 7 | Labels() []string 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/monitoring/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=monitoring.openshift.io 6 | package v1 7 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/profile 3 | go: 4 | - 1.13.x 5 | - 1.14.x 6 | - tip 7 | 8 | script: 9 | - go test -race github.com/pkg/profile 10 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- 1 | Steve Francia 2 | Bjørn Erik Pedersen 3 | Fabiano Franz 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | - stewart-yu 6 | - thockin 7 | reviewers: 8 | - apelisse 9 | - stewart-yu 10 | - thockin 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/hypershift/mgmt/sa.patch.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: openstack-cinder-csi-driver-operator 5 | imagePullSecrets: 6 | - name: pull-secret 7 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/monitoring/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | requiredFeatureSets: 3 | - "" 4 | - "Default" 5 | - "TechPreviewNoUpgrade" 6 | swaggerdocs: 7 | disabled: false 8 | commentPolicy: Enforce 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=network.openshift.io 6 | package v1alpha1 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=operator.openshift.io 6 | package v1alpha1 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package has the automatically generated typed clients. 4 | package v1 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1/fake/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // Package fake has the automatically generated clients. 4 | package fake 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/operator/clientset/versioned/typed/operator/v1/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package has the automatically generated typed clients. 4 | package v1 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_appengine.go: -------------------------------------------------------------------------------- 1 | // +build appengine 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | ) 8 | 9 | func checkIfTerminal(w io.Writer) bool { 10 | return true 11 | } 12 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | 4 | .cache/ 5 | .tools/ 6 | venv/ 7 | .idea/ 8 | .vscode/ 9 | *.iml 10 | *.so 11 | coverage.* 12 | go.work 13 | go.work.sum 14 | 15 | gen/ 16 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/embedded/README.md: -------------------------------------------------------------------------------- 1 | # Trace Embedded 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/trace/embedded)](https://pkg.go.dev/go.opentelemetry.io/otel/trace/embedded) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/audit/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-audit-approvers 5 | reviewers: 6 | - sig-auth-audit-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_win.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package internal 4 | 5 | func NewOutputInterceptor() OutputInterceptor { 6 | return NewOSGlobalReassigningOutputInterceptor() 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/progress_report_wasm.go: -------------------------------------------------------------------------------- 1 | //go:build wasm 2 | 3 | package internal 4 | 5 | import ( 6 | "os" 7 | "syscall" 8 | ) 9 | 10 | var PROGRESS_SIGNALS = []os.Signal{syscall.SIGUSR1} 11 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1alpha1/fake/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // Package fake has the automatically generated clients. 4 | package fake 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1alpha2/fake/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // Package fake has the automatically generated clients. 4 | package fake 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/operator/clientset/versioned/typed/operator/v1/fake/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // Package fake has the automatically generated clients. 4 | package fake 5 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/embedded/README.md: -------------------------------------------------------------------------------- 1 | # Metric Embedded 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/metric/embedded)](https://pkg.go.dev/go.opentelemetry.io/otel/metric/embedded) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/semconv/v1.12.0/README.md: -------------------------------------------------------------------------------- 1 | # Semconv v1.12.0 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/semconv/v1.12.0)](https://pkg.go.dev/go.opentelemetry.io/otel/semconv/v1.12.0) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/semconv/v1.17.0/README.md: -------------------------------------------------------------------------------- 1 | # Semconv v1.17.0 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/semconv/v1.17.0)](https://pkg.go.dev/go.opentelemetry.io/otel/semconv/v1.17.0) 4 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/semconv/v1.37.0/README.md: -------------------------------------------------------------------------------- 1 | # Semconv v1.37.0 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/semconv/v1.37.0)](https://pkg.go.dev/go.opentelemetry.io/otel/semconv/v1.37.0) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/.import-restrictions: -------------------------------------------------------------------------------- 1 | inverseRules: 2 | # Allow use of this package in all k8s.io packages. 3 | - selectorRegexp: k8s[.]io 4 | allowedPrefixes: 5 | - '' 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/Taskfile.yml: -------------------------------------------------------------------------------- 1 | # https://taskfile.dev 2 | 3 | version: '3' 4 | 5 | tasks: 6 | default: 7 | cmds: 8 | - task: test 9 | 10 | test: 11 | cmds: 12 | - go test -v . 13 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package contains the scheme of the automatically generated clientset. 4 | package scheme 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package has the automatically generated typed clients. 4 | package v1alpha1 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1alpha2/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package has the automatically generated typed clients. 4 | package v1alpha2 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/operator/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package contains the scheme of the automatically generated clientset. 4 | package scheme 5 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/operator/clientset/versioned/typed/operator/v1alpha1/fake/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // Package fake has the automatically generated clients. 4 | package fake 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/README.md: -------------------------------------------------------------------------------- 1 | See [![Go Reference](https://pkg.go.dev/badge/github.com/prometheus/client_golang/prometheus.svg)](https://pkg.go.dev/github.com/prometheus/client_golang/prometheus). 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- 1 | Data model artifacts for Prometheus. 2 | Copyright 2012-2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go: -------------------------------------------------------------------------------- 1 | // +build js nacl plan9 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | ) 8 | 9 | func checkIfTerminal(w io.Writer) bool { 10 | return false 11 | } 12 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cluster-storage-operator/HEAD/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/.import-restrictions: -------------------------------------------------------------------------------- 1 | inverseRules: 2 | # Allow use of this package in all k8s.io packages. 3 | - selectorRegexp: k8s[.]io 4 | allowedPrefixes: 5 | - '' 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-certificates-approvers 5 | reviewers: 6 | - sig-auth-certificates-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1alpha2/generated_expansion.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | package v1alpha2 4 | 5 | type InsightsDataGatherExpansion interface{} 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/operator/clientset/versioned/typed/operator/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | // This package has the automatically generated typed clients. 4 | package v1alpha1 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- 1 | Common libraries shared by Prometheus Go components. 2 | Copyright 2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Reporting a security issue 2 | 3 | The Prometheus security policy, including how to report vulnerabilities, can be 4 | found here: 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/auth/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-authenticators-approvers 5 | reviewers: 6 | - sig-auth-authenticators-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /profile-patches/hypershift/06_operator_cr.yaml-patch: -------------------------------------------------------------------------------- 1 | # Remove any included.* annotation, we don't want the manifest instantiated by any CVO! 2 | # The manifest should be copied to HyperShift 3 | - op: remove 4 | path: /metadata/annotations 5 | -------------------------------------------------------------------------------- /profile-patches/hypershift/08_operator_rbac.yaml-patch: -------------------------------------------------------------------------------- 1 | # Remove any included.* annotation, we don't want the manifest instantiated by any CVO! 2 | # The manifest should be copied to HyperShift 3 | - op: remove 4 | path: /metadata/annotations 5 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/system_bsd.go: -------------------------------------------------------------------------------- 1 | //go:build freebsd || openbsd || netbsd || dragonfly 2 | 3 | package fsnotify 4 | 5 | import "golang.org/x/sys/unix" 6 | 7 | const openMode = unix.O_NONBLOCK | unix.O_RDONLY | unix.O_CLOEXEC 8 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/system_darwin.go: -------------------------------------------------------------------------------- 1 | //go:build darwin 2 | 3 | package fsnotify 4 | 5 | import "golang.org/x/sys/unix" 6 | 7 | // note: this constant is not defined on BSD 8 | const openMode = unix.O_EVTONLY | unix.O_CLOEXEC 9 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- 1 | maintainers: 2 | - spf13 3 | - johnSchnake 4 | - jpmcb 5 | - marckhouzam 6 | inactive: 7 | - anthonyfok 8 | - bep 9 | - bogem 10 | - broady 11 | - eparis 12 | - jharshman 13 | - wfernandes 14 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/instrumentation/README.md: -------------------------------------------------------------------------------- 1 | # SDK Instrumentation 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/sdk/instrumentation)](https://pkg.go.dev/go.opentelemetry.io/otel/sdk/instrumentation) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/strategicpatch/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | - pwittrock 6 | reviewers: 7 | - apelisse 8 | emeritus_approvers: 9 | - mengqiy 10 | -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/tracing/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-instrumentation-approvers 5 | reviewers: 6 | - sig-instrumentation-reviewers 7 | labels: 8 | - sig/instrumentation 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - 03_role.yaml 3 | - 02_sa.yaml 4 | - 04_rolebinding.yaml 5 | - 05_clusterrole.yaml 6 | - 06_clusterrolebinding.yaml 7 | - 09_deployment.yaml 8 | - 10_cr.yaml 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/standalone/generated/v1_serviceaccount_aws-ebs-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: aws-ebs-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - 03_sa.yaml 3 | - 04_role.yaml 4 | - 05_rolebinding.yaml 5 | - 06_clusterrole.yaml 6 | - 07_clusterrolebinding.yaml 7 | - 08_deployment.yaml 8 | - 09_cr.yaml 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - 03_sa.yaml 3 | - 04_role.yaml 4 | - 05_rolebinding.yaml 5 | - 06_clusterrole.yaml 6 | - 07_clusterrolebinding.yaml 7 | - 08_deployment.yaml 8 | - 09_cr.yaml 9 | -------------------------------------------------------------------------------- /profile-patches/hypershift/11_cluster_operator.yaml-patch: -------------------------------------------------------------------------------- 1 | # Remove any included.* annotation, we don't want the manifest instantiated by any CVO! 2 | # The manifest should be copied to HyperShift 3 | - op: remove 4 | path: /metadata/annotations 5 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/counter.go: -------------------------------------------------------------------------------- 1 | package internal 2 | 3 | func MakeIncrementingIndexCounter() func() (int, error) { 4 | idx := -1 5 | return func() (int, error) { 6 | idx += 1 7 | return idx, nil 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/servicecertsigner/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=servicecertsigner.config.openshift.io 6 | package v1alpha1 7 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | For information on gRPC Security Policy and reporting potential security issues, please see [gRPC CVE Process](https://github.com/grpc/proposal/blob/master/P4-grpc-cve-process.md). 4 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/hypershift/guest/generated/v1_serviceaccount_aws-ebs-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: aws-ebs-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/gcp-pd/08_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: "ClusterCSIDriver" 3 | metadata: 4 | name: "pd.csi.storage.gke.io" 5 | spec: 6 | logLevel: Normal 7 | managementState: Managed 8 | operatorLogLevel: Normal 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - 02_sa.yaml 3 | - 03_role.yaml 4 | - 04_rolebinding.yaml 5 | - 05_clusterrole.yaml 6 | - 06_clusterrolebinding.yaml 7 | - 07_deployment.yaml 8 | - 08_cr.yaml 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/vsphere/09_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: csi.vsphere.vmware.com 5 | spec: 6 | logLevel: Normal 7 | managementState: Managed 8 | operatorLogLevel: Normal 9 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.deepsource.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | test_patterns = [ 4 | "*_test.go" 5 | ] 6 | 7 | [[analyzers]] 8 | name = "go" 9 | enabled = true 10 | 11 | [analyzers.meta] 12 | import_path = "github.com/imdario/mergo" -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=machine.openshift.io 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=operator.openshift.io 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/value/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-encryption-at-rest-approvers 5 | reviewers: 6 | - sig-auth-encryption-at-rest-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/standalone/generated/v1_serviceaccount_azure-disk-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-disk-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/standalone/generated/v1_serviceaccount_azure-file-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-file-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/ibm-vpc-block/09_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: vpc.block.csi.ibm.io 5 | spec: 6 | logLevel: Normal 7 | managementState: Managed 8 | operatorLogLevel: Normal 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/console/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=console.openshift.io 6 | // Package v1 is the v1 version of the API. 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/osin/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=osin.config.openshift.io 6 | // Package v1 is the v1 version of the API. 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/exporters/otlp/otlptrace/README.md: -------------------------------------------------------------------------------- 1 | # OTLP Trace Exporter 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/exporters/otlp/otlptrace)](https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlptrace) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/admission/plugin/cel/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - jpbetz 5 | - cici37 6 | - alexzielenski 7 | reviewers: 8 | - jpbetz 9 | - cici37 10 | - alexzielenski 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/authentication/request/x509/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-certificates-approvers 5 | reviewers: 6 | - sig-auth-certificates-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/cacher/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-instrumentation-approvers 5 | reviewers: 6 | - sig-instrumentation-reviewers 7 | labels: 8 | - sig/instrumentation 9 | -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- 1 | # References: 2 | # https://docs.snyk.io/scan-applications/snyk-code/using-snyk-code-from-the-cli/excluding-directories-and-files-from-the-snyk-code-cli-test 3 | # https://docs.snyk.io/snyk-cli/commands/ignore 4 | exclude: 5 | global: 6 | - vendor/** 7 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/hypershift/guest/generated/v1_serviceaccount_azure-disk-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-disk-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/hypershift/guest/generated/v1_serviceaccount_azure-file-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: azure-file-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/cloudbuild.yaml: -------------------------------------------------------------------------------- 1 | steps: 2 | - name: 'gcr.io/cloud-builders/bazel:7.3.2' 3 | entrypoint: bazel 4 | args: ['build', '...'] 5 | id: bazel-build 6 | waitFor: ['-'] 7 | timeout: 15m 8 | options: 9 | machineType: 'N1_HIGHCPU_32' 10 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=machine.openshift.io 7 | package v1alpha1 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/v1beta1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=machine.openshift.io 7 | package v1beta1 8 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/attribute/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | // Package attribute provides key and value attributes. 5 | package attribute // import "go.opentelemetry.io/otel/attribute" 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/resource/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - derekwaynecarr 8 | - mikedanese 9 | - saad-ali 10 | - janetkuo 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/base/02_sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: manila-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | annotations: 7 | storage.openshift.io/remove-from: guest 8 | -------------------------------------------------------------------------------- /assets/csidriveroperators/powervs-block/standalone/07_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: powervs.csi.ibm.com 5 | spec: 6 | logLevel: Normal 7 | managementState: Managed 8 | operatorLogLevel: Normal 9 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/progress_report_unix.go: -------------------------------------------------------------------------------- 1 | //go:build linux || solaris 2 | // +build linux solaris 3 | 4 | package internal 5 | 6 | import ( 7 | "os" 8 | "syscall" 9 | ) 10 | 11 | var PROGRESS_SIGNALS = []os.Signal{syscall.SIGUSR1} 12 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/samples/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=samples.operator.openshift.io 6 | // Package v1 ist he v1 version of the API. 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentFormat}} 2 | func {{.DocInfo.Name}}f(t TestingT, {{.ParamsFormat}}) bool { 3 | if h, ok := t.(tHelper); ok { h.Helper() } 4 | return {{.DocInfo.Name}}(t, {{.ForwardedParamsFormat}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentWithoutT "a"}} 2 | func (a *Assertions) {{.DocInfo.Name}}({{.Params}}) bool { 3 | if h, ok := a.t.(tHelper); ok { h.Helper() } 4 | return {{.DocInfo.Name}}(a.t, {{.ForwardedParams}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/apis/audit/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # approval on api packages bubbles to api-approvers 4 | reviewers: 5 | - sig-auth-audit-approvers 6 | - sig-auth-audit-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at https://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at https://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/standalone/generated/v1_serviceaccount_openstack-cinder-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: openstack-cinder-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /assets/csidriveroperators/powervs-block/hypershift/guest/07_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: powervs.csi.ibm.com 5 | spec: 6 | logLevel: Normal 7 | managementState: Managed 8 | operatorLogLevel: Normal 9 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options/buf.gen.yaml: -------------------------------------------------------------------------------- 1 | version: v2 2 | plugins: 3 | - remote: buf.build/protocolbuffers/go:v1.36.0 4 | out: . 5 | opt: 6 | - paths=source_relative 7 | - default_api_level=API_HYBRID 8 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.go] 12 | indent_style = tab 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/options/encryptionconfig/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-encryption-at-rest-approvers 5 | reviewers: 6 | - sig-auth-encryption-at-rest-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /assets/assets.go: -------------------------------------------------------------------------------- 1 | package assets 2 | 3 | import ( 4 | "embed" 5 | ) 6 | 7 | //go:embed * 8 | var f embed.FS 9 | 10 | // ReadFile reads and returns the content of the named file. 11 | func ReadFile(name string) ([]byte, error) { 12 | return f.ReadFile(name) 13 | } 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/hypershift/guest/generated/v1_serviceaccount_openstack-cinder-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: openstack-cinder-csi-driver-operator 5 | namespace: openshift-cluster-csi-drivers 6 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/cloudnetwork/v1/doc.go: -------------------------------------------------------------------------------- 1 | // Package v1 contains API Schema definitions for the cloud network v1 API group 2 | // +k8s:deepcopy-gen=package,register 3 | // +groupName=cloud.network.openshift.io 4 | // +kubebuilder:validation:Optional 5 | package v1 6 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/networkoperator/v1/doc.go: -------------------------------------------------------------------------------- 1 | // Package v1 contains API Schema definitions for the network v1 API group 2 | // +k8s:deepcopy-gen=package,register 3 | // +groupName=network.operator.openshift.io 4 | // +kubebuilder:validation:Optional 5 | package v1 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·use(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/v2/internal/httprule/fuzz.go: -------------------------------------------------------------------------------- 1 | //go:build gofuzz 2 | // +build gofuzz 3 | 4 | package httprule 5 | 6 | func Fuzz(data []byte) int { 7 | if _, err := Parse(string(data)); err != nil { 8 | return 0 9 | } 10 | return 0 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/v1alpha2/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=config.openshift.io 6 | // Package v1alpha2 is the v1alpha2 version of the API. 7 | package v1alpha2 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/kubecontrolplane/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=kubecontrolplane.config.openshift.io 6 | // Package v1 is the v1 version of the API. 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Kubernetes CEL library authors and maintainers 4 | approvers: 5 | - jpbetz 6 | - cici37 7 | - jiahuif 8 | reviewers: 9 | - jpbetz 10 | - cici37 11 | - jiahuif 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/events/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-instrumentation-approvers 5 | - wojtek-t 6 | reviewers: 7 | - sig-instrumentation-reviewers 8 | - wojtek-t 9 | emeritus_approvers: 10 | - yastij 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/hypershift/mgmt/generated/v1_serviceaccount_aws-ebs-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | imagePullSecrets: 3 | - name: pull-secret 4 | kind: ServiceAccount 5 | metadata: 6 | name: aws-ebs-csi-driver-operator 7 | namespace: ${CONTROLPLANE_NAMESPACE} 8 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - 01_namespace.yaml 3 | - 02_sa.yaml 4 | - 03_role.yaml 5 | - 04_rolebinding.yaml 6 | - 05_clusterrole.yaml 7 | - 06_clusterrolebinding.yaml 8 | - 07_deployment.yaml 9 | - 08_cr.yaml 10 | -------------------------------------------------------------------------------- /manifests/06_operator_cr-hypershift.yaml: -------------------------------------------------------------------------------- 1 | # *** AUTOMATICALLY GENERATED FILE - DO NOT EDIT *** 2 | apiVersion: operator.openshift.io/v1 3 | kind: Storage 4 | metadata: 5 | name: cluster 6 | spec: 7 | logLevel: Normal 8 | managementState: Managed 9 | operatorLogLevel: Normal 10 | -------------------------------------------------------------------------------- /vendor/github.com/munnerz/goautoneg/Makefile: -------------------------------------------------------------------------------- 1 | include $(GOROOT)/src/Make.inc 2 | 3 | TARG=bitbucket.org/ww/goautoneg 4 | GOFILES=autoneg.go 5 | 6 | include $(GOROOT)/src/Make.pkg 7 | 8 | format: 9 | gofmt -w *.go 10 | 11 | docs: 12 | gomake clean 13 | godoc ${TARG} > README.txt 14 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/openshiftcontrolplane/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=openshiftcontrolplane.config.openshift.io 6 | // Package v1 is the v1 version of the API. 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operatorcontrolplane/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=controlplane.operator.openshift.io 7 | 8 | package v1alpha1 9 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/omitzero_go124.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) Faye Amacker. All rights reserved. 2 | // Licensed under the MIT License. See LICENSE in the project root for license information. 3 | 4 | //go:build go1.24 5 | 6 | package cbor 7 | 8 | var jsonStdlibSupportsOmitzero = true 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/sharedresource/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=sharedresource.openshift.io 6 | // Package v1alplha1 is the v1alpha1 version of the API. 7 | package v1alpha1 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/apis/clientauthentication/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # approval on api packages bubbles to api-approvers 4 | reviewers: 5 | - sig-auth-authenticators-approvers 6 | - sig-auth-authenticators-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/hypershift/mgmt/generated/v1_serviceaccount_azure-disk-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | imagePullSecrets: 3 | - name: pull-secret 4 | kind: ServiceAccount 5 | metadata: 6 | name: azure-disk-csi-driver-operator 7 | namespace: ${CONTROLPLANE_NAMESPACE} 8 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/hypershift/mgmt/generated/v1_serviceaccount_azure-file-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | imagePullSecrets: 3 | - name: pull-secret 4 | kind: ServiceAccount 5 | metadata: 6 | name: azure-file-csi-driver-operator 7 | namespace: ${CONTROLPLANE_NAMESPACE} 8 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/omitzero_pre_go124.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) Faye Amacker. All rights reserved. 2 | // Licensed under the MIT License. See LICENSE in the project root for license information. 3 | 4 | //go:build !go1.24 5 | 6 | package cbor 7 | 8 | var jsonStdlibSupportsOmitzero = false 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/.gitattributes: -------------------------------------------------------------------------------- 1 | # Set unix LF EOL for shell scripts 2 | *.sh text eol=lf 3 | 4 | **/zz_generated.*.go linguist-generated=true 5 | **/types.generated.go linguist-generated=true 6 | **/generated.pb.go linguist-generated=true 7 | **/generated.proto linguist-generated=true 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/apiserver/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=apiserver.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/helm/v1beta1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=helm.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1beta1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/legacyconfig/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +groupName=legacy.config.openshift.io 6 | // Package v1 is deprecated and exists to ease a transition to current APIs 7 | package v1 8 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- 1 | procfs provides functions to retrieve system, kernel and process 2 | metrics from the pseudo-filesystem proc. 3 | 4 | Copyright 2014-2015 The Prometheus Authors 5 | 6 | This product includes software developed at 7 | SoundCloud Ltd. (http://soundcloud.com/). 8 | -------------------------------------------------------------------------------- /vendor/github.com/stoewer/go-strcase/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | vendor 8 | doc 9 | 10 | # Temporary files 11 | *~ 12 | *.swp 13 | 14 | # Editor and IDE config 15 | .idea 16 | *.iml 17 | .vscode 18 | -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.11.x 5 | 6 | env: 7 | - GO111MODULE=on 8 | 9 | script: 10 | - go test -short -coverprofile=coverage.txt -covermode=count ./... 11 | 12 | after_success: 13 | - bash <(curl -s https://codecov.io/bash) 14 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/README.md: -------------------------------------------------------------------------------- 1 | # OTLP Trace gRPC Exporter 2 | 3 | [![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc)](https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc) 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux && arm 6 | 7 | package cpu 8 | 9 | func archInit() {} 10 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - caesarxuchao 7 | - wojtek-t 8 | - deads2k 9 | - liggitt 10 | - sttts 11 | - luxas 12 | - dims 13 | - cjcullen 14 | - lojies 15 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/hypershift/mgmt/hypershift_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - hypershift.openshift.io 6 | resources: 7 | - hostedcontrolplanes 8 | verbs: 9 | - watch 10 | - list 11 | - get 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | func archInit() { 8 | doinit() 9 | Initialized = true 10 | } 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/hypershift/mgmt/hypershift_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - hypershift.openshift.io 6 | resources: 7 | - hostedcontrolplanes 8 | verbs: 9 | - watch 10 | - list 11 | - get 12 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/hypershift/mgmt/hypershift_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - hypershift.openshift.io 6 | resources: 7 | - hostedcontrolplanes 8 | verbs: 9 | - watch 10 | - list 11 | - get 12 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.lock: -------------------------------------------------------------------------------- 1 | # This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. 2 | 3 | 4 | [solve-meta] 5 | analyzer-name = "dep" 6 | analyzer-version = 1 7 | input-imports = [] 8 | solver-name = "gps-cdcl" 9 | solver-version = 1 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package internal contains support packages for [golang.org/x/oauth2]. 6 | package internal 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-instrumentation-approvers 5 | - logicalhan 6 | - RainbowMango 7 | reviewers: 8 | - sig-instrumentation-reviewers 9 | - YoyinZyc 10 | labels: 11 | - sig/instrumentation 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/README.md: -------------------------------------------------------------------------------- 1 | # Clock 2 | 3 | This package provides an interface for time-based operations. It allows 4 | mocking time for testing. 5 | 6 | This is a copy of k8s.io/utils/clock. We have to copy it to avoid a circular 7 | dependency (k8s.io/klog -> k8s.io/utils -> k8s.io/klog). 8 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | # See the OWNERS_ALIASES file at https://github.com/kubernetes-sigs/randfill/blob/main/OWNERS_ALIASES for a list of members for each alias. 3 | 4 | approvers: 5 | - sig-testing-leads 6 | - thockin 7 | 8 | reviewers: [] 9 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/hypershift/mgmt/hypershift_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - hypershift.openshift.io 6 | resources: 7 | - hostedcontrolplanes 8 | verbs: 9 | - watch 10 | - list 11 | - get 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/quota/v1/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - deads2k 5 | - derekwaynecarr 6 | reviewers: 7 | - deads2k 8 | - derekwaynecarr 9 | - smarterclayton 10 | labels: 11 | - sig/api-machinery 12 | emeritus_approvers: 13 | - vishh 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/leaderelection/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - mikedanese 5 | - jefftree 6 | reviewers: 7 | - wojtek-t 8 | - deads2k 9 | - mikedanese 10 | - ingvagabund 11 | - jefftree 12 | emeritus_approvers: 13 | - timothysc 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/hypershift/mgmt/generated/v1_serviceaccount_openstack-cinder-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | imagePullSecrets: 3 | - name: pull-secret 4 | kind: ServiceAccount 5 | metadata: 6 | name: openstack-cinder-csi-driver-operator 7 | namespace: ${CONTROLPLANE_NAMESPACE} 8 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/network.go: -------------------------------------------------------------------------------- 1 | package sprig 2 | 3 | import ( 4 | "math/rand" 5 | "net" 6 | ) 7 | 8 | func getHostByName(name string) string { 9 | addrs, _ := net.LookupHost(name) 10 | //TODO: add error handing when release v3 comes out 11 | return addrs[rand.Intn(len(addrs))] 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/v1alpha1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | 5 | // +kubebuilder:validation:Optional 6 | // +groupName=config.openshift.io 7 | // Package v1alpha1 is the v1alpha1 version of the API. 8 | package v1alpha1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/operator/configobserver/apiserver/listers.go: -------------------------------------------------------------------------------- 1 | package apiserver 2 | 3 | import ( 4 | configlistersv1 "github.com/openshift/client-go/config/listers/config/v1" 5 | ) 6 | 7 | type APIServerLister interface { 8 | APIServerLister() configlistersv1.APIServerLister 9 | } 10 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package otel // import "go.opentelemetry.io/otel" 5 | 6 | // Version is the current release version of OpenTelemetry in use. 7 | func Version() string { 8 | return "1.38.0" 9 | } 10 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Disable inheritance as this is an api owners file 4 | options: 5 | no_parent_owners: true 6 | approvers: 7 | - api-approvers 8 | reviewers: 9 | - sig-auth-api-reviewers 10 | -------------------------------------------------------------------------------- /hack/verify-manifest.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./hack/generate-manifests.sh 4 | 5 | if [[ -n $(git status -s assets/) ]]; then 6 | echo 'ERROR: generated kustomize manifests needs to be updated. You can use make update to update them.' 7 | git --no-pager diff 8 | exit -1 9 | fi 10 | exit 0 11 | 12 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | insert_final_newline = true 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | indent_style = tab 10 | indent_size = 8 11 | 12 | [*.{md,yml,yaml,json}] 13 | indent_style = space 14 | indent_size = 2 15 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/user/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/user/apis/user 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=user.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/operator/v1helpers/fake_informers.go: -------------------------------------------------------------------------------- 1 | package v1helpers 2 | 3 | import "k8s.io/client-go/informers" 4 | 5 | func NewFakeKubeInformersForNamespaces(informers map[string]informers.SharedInformerFactory) KubeInformersForNamespaces { 6 | return kubeInformersForNamespaces(informers) 7 | } 8 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/resource/host_id_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package resource // import "go.opentelemetry.io/otel/sdk/resource" 5 | 6 | var platformHostIDReader hostIDReader = &hostIDReaderDarwin{ 7 | execCommand: execCommand, 8 | } 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux && !netbsd && !openbsd && arm64 6 | 7 | package cpu 8 | 9 | func doinit() {} 10 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/validation/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Disable inheritance as this is an api owners file 4 | options: 5 | no_parent_owners: true 6 | approvers: 7 | - api-approvers 8 | reviewers: 9 | - api-reviewers 10 | labels: 11 | - kind/api-change 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/validation/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Disable inheritance as this is an api owners file 4 | options: 5 | no_parent_owners: true 6 | approvers: 7 | - api-approvers 8 | reviewers: 9 | - api-reviewers 10 | labels: 11 | - kind/api-change 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/options/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - enj 5 | reviewers: 6 | - smarterclayton 7 | - wojtek-t 8 | - deads2k 9 | - liggitt 10 | - sttts 11 | - soltysh 12 | - dims 13 | - cjcullen 14 | - ping035627 15 | - enj 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # OSX trash 5 | .DS_Store 6 | 7 | # Eclipse files 8 | .classpath 9 | .project 10 | .settings/** 11 | 12 | # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA 13 | .idea/ 14 | *.iml 15 | 16 | # Vscode files 17 | .vscode 18 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/base/10_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: "ClusterCSIDriver" 3 | metadata: 4 | name: "ebs.csi.aws.com" 5 | annotations: 6 | storage.openshift.io/remove-from: mgmt 7 | spec: 8 | logLevel: Normal 9 | managementState: Managed 10 | operatorLogLevel: Normal 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/base/09_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: disk.csi.azure.com 5 | annotations: 6 | storage.openshift.io/remove-from: mgmt 7 | spec: 8 | logLevel: Normal 9 | managementState: Managed 10 | operatorLogLevel: Normal 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/base/09_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: file.csi.azure.com 5 | annotations: 6 | storage.openshift.io/remove-from: mgmt 7 | spec: 8 | logLevel: Normal 9 | managementState: Managed 10 | operatorLogLevel: Normal 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/standalone/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /manifests/11_cluster_operator-hypershift.yaml: -------------------------------------------------------------------------------- 1 | # *** AUTOMATICALLY GENERATED FILE - DO NOT EDIT *** 2 | apiVersion: config.openshift.io/v1 3 | kind: ClusterOperator 4 | metadata: 5 | name: storage 6 | spec: 7 | managementState: Managed 8 | status: 9 | versions: 10 | - name: operator 11 | version: 0.0.1-snapshot 12 | -------------------------------------------------------------------------------- /vendor/github.com/antlr4-go/antlr/v4/.gitignore: -------------------------------------------------------------------------------- 1 | ### Go template 2 | 3 | # Binaries for programs and plugins 4 | *.exe 5 | *.exe~ 6 | *.dll 7 | *.so 8 | *.dylib 9 | 10 | # Test binary, built with `go test -c` 11 | *.test 12 | 13 | 14 | # Go workspace file 15 | go.work 16 | 17 | # No Goland stuff in this repo 18 | .idea 19 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/go_above_19.go: -------------------------------------------------------------------------------- 1 | //+build go1.9 2 | 3 | package concurrent 4 | 5 | import "sync" 6 | 7 | // Map is a wrapper for sync.Map introduced in go1.9 8 | type Map struct { 9 | sync.Map 10 | } 11 | 12 | // NewMap creates a thread safe Map 13 | func NewMap() *Map { 14 | return &Map{} 15 | } 16 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/build/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/build/apis/build 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=build.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/image/apis/image 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=image.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/oauth/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/oauth/apis/oauth 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=oauth.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/quota/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/quota/apis/quota 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=quota.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/route/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/route/apis/route 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=route.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/listers/config/v1alpha2/expansion_generated.go: -------------------------------------------------------------------------------- 1 | // Code generated by lister-gen. DO NOT EDIT. 2 | 3 | package v1alpha2 4 | 5 | // InsightsDataGatherListerExpansion allows custom methods to be added to 6 | // InsightsDataGatherLister. 7 | type InsightsDataGatherListerExpansion interface{} 8 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/internal/telemetry/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | /* 5 | Package telemetry provides a lightweight representations of OpenTelemetry 6 | telemetry that is compatible with the OTLP JSON protobuf encoding. 7 | */ 8 | package telemetry 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/logs/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-instrumentation-approvers 5 | - serathius 6 | - pohly 7 | reviewers: 8 | - sig-instrumentation-reviewers 9 | - serathius 10 | labels: 11 | - sig/instrumentation 12 | - wg/structured-logging 13 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/standalone/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.9.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | - go get -t -v github.com/modern-go/reflect2-tests/... 10 | 11 | script: 12 | - ./test.sh 13 | 14 | after_success: 15 | - bash <(curl -s https://codecov.io/bash) 16 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/network/apis/network 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=network.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/project/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/project/apis/project 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=project.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_solaris.go: -------------------------------------------------------------------------------- 1 | package logrus 2 | 3 | import ( 4 | "golang.org/x/sys/unix" 5 | ) 6 | 7 | // IsTerminal returns true if the given file descriptor is a terminal. 8 | func isTerminal(fd int) bool { 9 | _, err := unix.IoctlGetTermio(fd, unix.TCGETA) 10 | return err == nil 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/.mockery.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | dir: . 3 | filename: "mock_{{.InterfaceName | snakecase}}_test.go" 4 | boilerplate-file: ../../../../../hack/boilerplate/boilerplate.generatego.txt 5 | outpkg: rest 6 | with-expecter: true 7 | packages: 8 | k8s.io/client-go/rest: 9 | interfaces: 10 | BackoffManager: 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/standalone/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/standalone/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/security/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/security/apis/security 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=security.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/template/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/template/apis/template 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +groupName=template.openshift.io 7 | // Package v1 is the v1 version of the API. 8 | package v1 9 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/README.md: -------------------------------------------------------------------------------- 1 | [![GoDoc](http://godoc.org/github.com/robfig/cron?status.png)](http://godoc.org/github.com/robfig/cron) 2 | [![Build Status](https://travis-ci.org/robfig/cron.svg?branch=master)](https://travis-ci.org/robfig/cron) 3 | 4 | # cron 5 | 6 | Documentation here: https://godoc.org/github.com/robfig/cron 7 | -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - "1.4.x" 5 | - "1.5.x" 6 | - "1.6.x" 7 | - "1.7.x" 8 | - "1.8.x" 9 | - "1.9.x" 10 | - "1.10.x" 11 | - "1.11.x" 12 | - "1.12.x" 13 | - "1.13.x" 14 | - "1.14.x" 15 | - "tip" 16 | 17 | go_import_path: gopkg.in/yaml.v2 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build mips || mipsle 6 | 7 | package cpu 8 | 9 | const cacheLineSize = 32 10 | 11 | func initOptions() {} 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2022 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux && riscv64 6 | 7 | package cpu 8 | 9 | func archInit() { 10 | Initialized = true 11 | } 12 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - "1.4.x" 5 | - "1.5.x" 6 | - "1.6.x" 7 | - "1.7.x" 8 | - "1.8.x" 9 | - "1.9.x" 10 | - "1.10.x" 11 | - "1.11.x" 12 | - "1.12.x" 13 | - "1.13.x" 14 | - "1.14.x" 15 | - "tip" 16 | 17 | go_import_path: gopkg.in/yaml.v2 18 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/hypershift/guest/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/hypershift/guest/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/hypershift/guest/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/base/08_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: manila.csi.openstack.org 5 | annotations: 6 | storage.openshift.io/remove-from: mgmt 7 | spec: 8 | managementState: Managed 9 | logLevel: Normal 10 | operatorLogLevel: Normal 11 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/standalone/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/progress_report_bsd.go: -------------------------------------------------------------------------------- 1 | //go:build freebsd || openbsd || netbsd || darwin || dragonfly 2 | // +build freebsd openbsd netbsd darwin dragonfly 3 | 4 | package internal 5 | 6 | import ( 7 | "os" 8 | "syscall" 9 | ) 10 | 11 | var PROGRESS_SIGNALS = []os.Signal{syscall.SIGINFO, syscall.SIGUSR1} 12 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/golang.example.mk.help.log: -------------------------------------------------------------------------------- 1 | The following make targets are available: 2 | all 3 | build 4 | clean 5 | clean-binaries 6 | help 7 | test 8 | test-unit 9 | update 10 | update-gofmt 11 | verify 12 | verify-gofmt 13 | verify-golang-versions 14 | verify-golint 15 | verify-govet 16 | vulncheck 17 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_unix.go: -------------------------------------------------------------------------------- 1 | // +build linux aix zos 2 | // +build !js 3 | 4 | package logrus 5 | 6 | import "golang.org/x/sys/unix" 7 | 8 | const ioctlReadTermios = unix.TCGETS 9 | 10 | func isTerminal(fd int) bool { 11 | _, err := unix.IoctlGetTermios(fd, ioctlReadTermios) 12 | return err == nil 13 | } 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | reviewers: 3 | - harshanarayana 4 | - mengjiao-liu 5 | - pohly 6 | approvers: 7 | - dims 8 | - pohly 9 | - thockin 10 | emeritus_approvers: 11 | - brancz 12 | - justinsb 13 | - lavalamp 14 | - piosz 15 | - serathius 16 | - tallclair 17 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/hypershift/guest/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/hypershift/guest/monitoring_role.patch.yaml: -------------------------------------------------------------------------------- 1 | - op: "add" 2 | path: "/rules/-" 3 | value: 4 | apiGroups: 5 | - monitoring.coreos.com 6 | resources: 7 | - servicemonitors 8 | verbs: 9 | - get 10 | - create 11 | - update 12 | - patch 13 | - delete 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/standalone/generated/openshift-cluster-csi-drivers_v1_serviceaccount_manila-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | annotations: 5 | storage.openshift.io/remove-from: guest 6 | name: manila-csi-driver-operator 7 | namespace: openshift-cluster-csi-drivers 8 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:defaulter-gen=TypeMeta 3 | // +k8s:openapi-gen=true 4 | // +openshift:featuregated-schema-gen=true 5 | 6 | // +kubebuilder:validation:Optional 7 | // +groupName=config.openshift.io 8 | // Package v1 is the v1 version of the API. 9 | package v1 10 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - janetkuo 13 | - dims 14 | emeritus_reviewers: 15 | - ncdc 16 | -------------------------------------------------------------------------------- /profile-patches/hypershift/07_service_account.yaml-patch: -------------------------------------------------------------------------------- 1 | # Remove any included.* annotation, we don't want the manifest instantiated by any CVO! 2 | # The manifest should be copied to HyperShift 3 | - op: remove 4 | path: /metadata/annotations 5 | 6 | # control-plane-operator will set the right namespace 7 | - op: remove 8 | path: /metadata/namespace 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux && (mips64 || mips64le) 6 | 7 | package cpu 8 | 9 | func archInit() { 10 | Initialized = true 11 | } 12 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package prototext marshals and unmarshals protocol buffer messages as the 6 | // textproto format. 7 | package prototext 8 | -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of pprof authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS files. 3 | # See the latter for an explanation. 4 | # Names should be added to this file as: 5 | # Name or Organization 6 | # The email address is not required for organizations. 7 | Google Inc. -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/go-grpc-prometheus/makefile: -------------------------------------------------------------------------------- 1 | SHELL="/bin/bash" 2 | 3 | GOFILES_NOVENDOR = $(shell go list ./... | grep -v /vendor/) 4 | 5 | all: vet fmt test 6 | 7 | fmt: 8 | go fmt $(GOFILES_NOVENDOR) 9 | 10 | vet: 11 | go vet $(GOFILES_NOVENDOR) 12 | 13 | test: vet 14 | ./scripts/test_all.sh 15 | 16 | .PHONY: all vet test 17 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/Makefile: -------------------------------------------------------------------------------- 1 | # default task since it's first 2 | .PHONY: all 3 | all: vet test 4 | 5 | .PHONY: test 6 | test: 7 | go run github.com/onsi/ginkgo/v2/ginkgo -r -p -randomize-all -keep-going 8 | 9 | .PHONY: vet 10 | vet: 11 | go vet ./... 12 | 13 | .PHONY: update-deps 14 | update-deps: 15 | go get -u ./... 16 | go mod tidy -------------------------------------------------------------------------------- /vendor/github.com/stoewer/go-strcase/.golangci.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | 3 | linters: 4 | enable: 5 | - dupl 6 | - goconst 7 | - gocyclo 8 | - godox 9 | - gosec 10 | - lll 11 | - misspell 12 | - prealloc 13 | - staticcheck 14 | - unconvert 15 | - unparam 16 | 17 | formatters: 18 | enable: 19 | - gofmt 20 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.codespellrc: -------------------------------------------------------------------------------- 1 | # https://github.com/codespell-project/codespell 2 | [codespell] 3 | builtin = clear,rare,informal 4 | check-filenames = 5 | check-hidden = 6 | ignore-words = .codespellignore 7 | interactive = 1 8 | skip = .git,go.mod,go.sum,go.work,go.work.sum,semconv,venv,.tools 9 | uri-ignore-words-list = * 10 | write = 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | 6 | install: 7 | - export GOPATH="$HOME/gopath" 8 | - mkdir -p "$GOPATH/src/golang.org/x" 9 | - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2" 10 | - go get -v -t -d golang.org/x/oauth2/... 11 | 12 | script: 13 | - go test -v golang.org/x/oauth2/... 14 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build protolegacy 6 | // +build protolegacy 7 | 8 | package flags 9 | 10 | const protoLegacy = true 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/cli/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Currently assigned cli to sig-cli since: 4 | # (a) its literally named "cli" 5 | # (b) flags are the bread-and-butter of cli tools. 6 | 7 | approvers: 8 | - sig-cli-maintainers 9 | reviewers: 10 | - sig-cli-reviewers 11 | labels: 12 | - sig/cli 13 | -------------------------------------------------------------------------------- /vendor/github.com/openshift-eng/openshift-tests-extension/pkg/util/sets/README.md: -------------------------------------------------------------------------------- 1 | This package is copy/pasted from [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery/tree/master/pkg/util/sets) 2 | to avoid a circular dependency with `openshift/kubernetes` as it requires OTE and, without having done this, 3 | OTE would require `kubernetes/kubernetes`. 4 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !protolegacy 6 | // +build !protolegacy 7 | 8 | package flags 9 | 10 | const protoLegacy = false 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/errors/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - saad-ali 13 | - janetkuo 14 | - tallclair 15 | - dims 16 | - cjcullen 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/util/flowcontrol/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - deads2k 5 | - yue9944882 6 | - MikeSpreitzer 7 | reviewers: 8 | - deads2k 9 | - yue9944882 10 | - MikeSpreitzer 11 | labels: 12 | - sig/api-machinery 13 | - area/apiserver 14 | emeritus_approvers: 15 | - lavalamp 16 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/standalone/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../base 3 | namespace: openshift-cluster-csi-drivers 4 | patches: 5 | - path: monitoring_role.patch.yaml 6 | target: 7 | kind: Role 8 | version: v1 9 | - path: deployment.patch.yaml 10 | target: 11 | kind: Deployment 12 | version: v1 13 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | arch: 3 | - amd64 4 | - ppc64le 5 | install: 6 | - go get -t 7 | - go get golang.org/x/tools/cmd/cover 8 | - go get github.com/mattn/goveralls 9 | script: 10 | - go test -race -v ./... 11 | after_script: 12 | - $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN 13 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- 1 | version: "{build}" 2 | platform: x64 3 | clone_folder: c:\gopath\src\github.com\sirupsen\logrus 4 | environment: 5 | GOPATH: c:\gopath 6 | branches: 7 | only: 8 | - master 9 | install: 10 | - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% 11 | - go version 12 | build_script: 13 | - go get -t 14 | - go test 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- 1 | //go:build !windows 2 | // +build !windows 3 | 4 | package klog 5 | 6 | import ( 7 | "os/user" 8 | ) 9 | 10 | func getUserName() string { 11 | userNameOnce.Do(func() { 12 | current, err := user.Current() 13 | if err == nil { 14 | userName = current.Username 15 | } 16 | }) 17 | 18 | return userName 19 | } 20 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/standalone/generated/operator.openshift.io_v1_clustercsidriver_ebs.csi.aws.com.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: ebs.csi.aws.com 5 | namespace: openshift-cluster-csi-drivers 6 | spec: 7 | logLevel: Normal 8 | managementState: Managed 9 | operatorLogLevel: Normal 10 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/hypershift/mgmt/generated/v1_serviceaccount_manila-csi-driver-operator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | imagePullSecrets: 3 | - name: pull-secret 4 | kind: ServiceAccount 5 | metadata: 6 | annotations: 7 | storage.openshift.io/remove-from: guest 8 | name: manila-csi-driver-operator 9 | namespace: ${CONTROLPLANE_NAMESPACE} 10 | -------------------------------------------------------------------------------- /assets/vsphere_problem_detector/06_configmap.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | labels: 5 | # This label ensures that the OpenShift Certificate Authority bundle 6 | # is added to the ConfigMap. 7 | config.openshift.io/inject-trusted-cabundle: "true" 8 | name: trusted-ca-bundle 9 | namespace: openshift-cluster-storage-operator 10 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/testall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -eu -o pipefail 3 | 4 | # Small convenience script for running the tests with various combinations of 5 | # arch/tags. This assumes we're running on amd64 and have qemu available. 6 | 7 | go test ./... 8 | go test -tags purego ./... 9 | GOARCH=arm64 go test 10 | GOARCH=arm64 go test -tags purego 11 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- 1 | # Minimal Go logging using logr and Go's standard library 2 | 3 | [![Go Reference](https://pkg.go.dev/badge/github.com/go-logr/stdr.svg)](https://pkg.go.dev/github.com/go-logr/stdr) 4 | 5 | This package implements the [logr interface](https://github.com/go-logr/logr) 6 | in terms of Go's standard log package(https://pkg.go.dev/log). 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/apps/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/apps/apis/apps 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | // +k8s:prerelease-lifecycle-gen=true 6 | 7 | // +groupName=apps.openshift.io 8 | // Package v1 is the v1 version of the API. 9 | package v1 10 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_bsd.go: -------------------------------------------------------------------------------- 1 | // +build darwin dragonfly freebsd netbsd openbsd 2 | // +build !js 3 | 4 | package logrus 5 | 6 | import "golang.org/x/sys/unix" 7 | 8 | const ioctlReadTermios = unix.TIOCGETA 9 | 10 | func isTerminal(fd int) bool { 11 | _, err := unix.IoctlGetTermios(fd, ioctlReadTermios) 12 | return err == nil 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go: -------------------------------------------------------------------------------- 1 | // +build !appengine,!js,!windows,!nacl,!plan9 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | "os" 8 | ) 9 | 10 | func checkIfTerminal(w io.Writer) bool { 11 | switch v := w.(type) { 12 | case *os.File: 13 | return isTerminal(int(v.Fd())) 14 | default: 15 | return false 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/instrumentation/library.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package instrumentation // import "go.opentelemetry.io/otel/sdk/instrumentation" 5 | 6 | // Library represents the instrumentation library. 7 | // 8 | // Deprecated: use [Scope] instead. 9 | type Library = Scope 10 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/resource/host_id_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | //go:build linux 5 | // +build linux 6 | 7 | package resource // import "go.opentelemetry.io/otel/sdk/resource" 8 | 9 | var platformHostIDReader hostIDReader = &hostIDReaderLinux{ 10 | readFile: readFile, 11 | } 12 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/semconv/v1.12.0/exception.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package semconv // import "go.opentelemetry.io/otel/semconv/v1.12.0" 5 | 6 | const ( 7 | // ExceptionEventName is the name of the Span event representing an exception. 8 | ExceptionEventName = "exception" 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/semconv/v1.17.0/exception.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package semconv // import "go.opentelemetry.io/otel/semconv/v1.17.0" 5 | 6 | const ( 7 | // ExceptionEventName is the name of the Span event representing an exception. 8 | ExceptionEventName = "exception" 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/semconv/v1.37.0/exception.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package semconv // import "go.opentelemetry.io/otel/semconv/v1.37.0" 5 | 6 | const ( 7 | // ExceptionEventName is the name of the Span event representing an exception. 8 | ExceptionEventName = "exception" 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build ios 6 | 7 | package unix 8 | 9 | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { 10 | return ENOTSUP 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/apis/meta/v1/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - caesarxuchao 9 | - liggitt 10 | - sttts 11 | - luxas 12 | - janetkuo 13 | - justinsb 14 | - soltysh 15 | - dims 16 | emeritus_reviewers: 17 | - ncdc 18 | -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- 1 | # See the OWNERS_ALIASES docs: https://git.k8s.io/community/contributors/guide/owners.md#owners_aliases 2 | 3 | aliases: 4 | openstack-approvers: 5 | - mandre 6 | - stephenfin 7 | openshift-storage-maintainers: 8 | - jsafrane 9 | - tsmetana 10 | - gnufied 11 | - dobsonj 12 | - RomanBednar 13 | - mpatlasov 14 | - rhrmo 15 | - dfajmon 16 | -------------------------------------------------------------------------------- /assets/csidriveroperators/aws-ebs/hypershift/guest/generated/operator.openshift.io_v1_clustercsidriver_ebs.csi.aws.com.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: ebs.csi.aws.com 5 | namespace: openshift-cluster-csi-drivers 6 | spec: 7 | logLevel: Normal 8 | managementState: Managed 9 | operatorLogLevel: Normal 10 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/standalone/generated/operator.openshift.io_v1_clustercsidriver_disk.csi.azure.com.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: disk.csi.azure.com 5 | namespace: openshift-cluster-csi-drivers 6 | spec: 7 | logLevel: Normal 8 | managementState: Managed 9 | operatorLogLevel: Normal 10 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/standalone/generated/operator.openshift.io_v1_clustercsidriver_file.csi.azure.com.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: file.csi.azure.com 5 | namespace: openshift-cluster-csi-drivers 6 | spec: 7 | logLevel: Normal 8 | managementState: Managed 9 | operatorLogLevel: Normal 10 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -coverprofile=profile.out -coverpkg=github.com/json-iterator/go $d 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/semconv/v1.17.0/http.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package semconv // import "go.opentelemetry.io/otel/semconv/v1.17.0" 5 | 6 | // HTTP scheme attributes. 7 | var ( 8 | HTTPSchemeHTTP = HTTPSchemeKey.String("http") 9 | HTTPSchemeHTTPS = HTTPSchemeKey.String("https") 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build windows 6 | 7 | package windows 8 | 9 | import "syscall" 10 | 11 | type Errno = syscall.Errno 12 | type SysProcAttr = syscall.SysProcAttr 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build (!amd64 && !loong64 && !ppc64le && !ppc64 && !s390x) || !gc || purego 6 | 7 | package poly1305 8 | 9 | type mac struct{ macGeneric } 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go: -------------------------------------------------------------------------------- 1 | // Copyright 2022 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !aix && !linux && (ppc64 || ppc64le) 6 | 7 | package cpu 8 | 9 | func archInit() { 10 | PPC64.IsPOWER8 = true 11 | Initialized = true 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/registry/rest/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - justinsb 13 | - dims 14 | - ingvagabund 15 | - enj 16 | emeritus_reviewers: 17 | - ncdc 18 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-disk/hypershift/guest/generated/operator.openshift.io_v1_clustercsidriver_disk.csi.azure.com.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: disk.csi.azure.com 5 | namespace: openshift-cluster-csi-drivers 6 | spec: 7 | logLevel: Normal 8 | managementState: Managed 9 | operatorLogLevel: Normal 10 | -------------------------------------------------------------------------------- /assets/csidriveroperators/azure-file/hypershift/guest/generated/operator.openshift.io_v1_clustercsidriver_file.csi.azure.com.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: file.csi.azure.com 5 | namespace: openshift-cluster-csi-drivers 6 | spec: 7 | logLevel: Normal 8 | managementState: Managed 9 | operatorLogLevel: Normal 10 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/go.work.sum: -------------------------------------------------------------------------------- 1 | github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= 2 | github.com/stretchr/testify v1.11.0/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= 3 | go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= 4 | go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg= 5 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -coverprofile=profile.out -coverpkg=github.com/modern-go/concurrent $d 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/sirupsen/logrus 3 | git: 4 | depth: 1 5 | env: 6 | - GO111MODULE=on 7 | go: 1.15.x 8 | os: linux 9 | install: 10 | - ./travis/install.sh 11 | script: 12 | - cd ci 13 | - go run mage.go -v -w ../ crossBuild 14 | - go run mage.go -v -w ../ lint 15 | - go run mage.go -v -w ../ test 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build generate 6 | 7 | package registry 8 | 9 | //go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zsyscall_windows.go syscall.go 10 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto_canonical_protos.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | bazel build //proto/cel/expr:all 3 | 4 | rm -vf ./*.pb.go 5 | 6 | files=( $(bazel cquery //proto/cel/expr:expr_go_proto --output=starlark --starlark:expr="'\n'.join([f.path for f in target.output_groups.go_generated_srcs.to_list()])") ) 7 | for src in "${files[@]}"; 8 | do 9 | cp -v "${src}" ./ 10 | done 11 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/internal/telemetry/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | /* 5 | Package telemetry provides a lightweight representations of OpenTelemetry 6 | telemetry that is compatible with the OTLP JSON protobuf encoding. 7 | */ 8 | package telemetry // import "go.opentelemetry.io/otel/trace/internal/telemetry" 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- 1 | // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. 2 | 3 | // Copyright 2021 The Go Authors. All rights reserved. 4 | // Use of this source code is governed by a BSD-style 5 | // license that can be found in the LICENSE file. 6 | 7 | //go:build !go1.18 8 | 9 | package idna 10 | 11 | const transitionalLookup = true 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build linux && !arm && !arm64 && !loong64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !s390x && !riscv64 6 | 7 | package cpu 8 | 9 | func doinit() {} 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux || !go1.24 6 | 7 | package unix 8 | 9 | func vgetrandom(p []byte, flags uint32) (ret int, supported bool) { 10 | return -1, false 11 | } 12 | -------------------------------------------------------------------------------- /assets/csidriveroperators/vsphere/02_configmap.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | labels: 5 | # This label ensures that the OpenShift Certificate Authority bundle 6 | # is added to the ConfigMap. 7 | config.openshift.io/inject-trusted-cabundle: "true" 8 | name: vsphere-csi-driver-operator-trusted-ca-bundle 9 | namespace: openshift-cluster-csi-drivers 10 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/log.go: -------------------------------------------------------------------------------- 1 | package concurrent 2 | 3 | import ( 4 | "os" 5 | "log" 6 | "io/ioutil" 7 | ) 8 | 9 | // ErrorLogger is used to print out error, can be set to writer other than stderr 10 | var ErrorLogger = log.New(os.Stderr, "", 0) 11 | 12 | // InfoLogger is used to print informational message, default to off 13 | var InfoLogger = log.New(ioutil.Discard, "", 0) -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/console/v1/types.go: -------------------------------------------------------------------------------- 1 | package v1 2 | 3 | // Represents a standard link that could be generated in HTML 4 | type Link struct { 5 | // text is the display text for the link 6 | Text string `json:"text"` 7 | // href is the absolute secure URL for the link (must use https) 8 | // +kubebuilder:validation:Pattern=`^https://` 9 | Href string `json:"href"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/operator/clientset/versioned/typed/operator/v1alpha1/generated_expansion.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | package v1alpha1 4 | 5 | type ClusterVersionOperatorExpansion interface{} 6 | 7 | type EtcdBackupExpansion interface{} 8 | 9 | type ImageContentSourcePolicyExpansion interface{} 10 | 11 | type OLMExpansion interface{} 12 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/exporters/otlp/otlptrace/version.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package otlptrace // import "go.opentelemetry.io/otel/exporters/otlp/otlptrace" 5 | 6 | // Version is the current release version of the OpenTelemetry OTLP trace exporter in use. 7 | func Version() string { 8 | return "1.38.0" 9 | } 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build amd64 && linux && gc 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | //go:noescape 12 | func gettimeofday(tv *Timeval) (err syscall.Errno) 13 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/targets/openshift/operator/release.mk: -------------------------------------------------------------------------------- 1 | # If we need unified behaviour specific to operators, this folder is the place. 2 | 3 | # It seems that our previous origin-release jq based replacement is suppose to be done 4 | # with `oc adm release new` so it might drop this target. 5 | #origin-release: 6 | # $(error Not implemented.) 7 | #.PHONY: origin-release 8 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.9.x 7 | - 1.10.x 8 | - 1.11.x 9 | - tip 10 | 11 | matrix: 12 | allow_failures: 13 | - go: tip 14 | 15 | install: 16 | - go get golang.org/x/lint/golint 17 | - export PATH=$GOPATH/bin:$PATH 18 | - go install ./... 19 | 20 | script: 21 | - verify/all.sh -v 22 | - go test ./... 23 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/version.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | // Package sdk provides the OpenTelemetry default SDK for Go. 5 | package sdk // import "go.opentelemetry.io/otel/sdk" 6 | 7 | // Version is the current release version of the OpenTelemetry SDK in use. 8 | func Version() string { 9 | return "1.38.0" 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build gc 6 | 7 | package cpu 8 | 9 | func getisar0() uint64 10 | func getisar1() uint64 11 | func getmmfr1() uint64 12 | func getpfr0() uint64 13 | func getzfr0() uint64 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-cinder/base/08_cr.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | name: cinder.csi.openstack.org 5 | annotations: 6 | storage.openshift.io/remove-from: mgmt 7 | spec: 8 | managementState: Managed 9 | logLevel: Trace 10 | operatorLogLevel: Trace 11 | driverConfig: 12 | driverName: cinder.csi.openstack.org 13 | -------------------------------------------------------------------------------- /vendor/github.com/antlr4-go/antlr/v4/atn_type.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2022 The ANTLR Project. All rights reserved. 2 | // Use of this file is governed by the BSD 3-clause license that 3 | // can be found in the LICENSE.txt file in the project root. 4 | 5 | package antlr 6 | 7 | // Represent the type of recognizer an ATN applies to. 8 | const ( 9 | ATNTypeLexer = 0 10 | ATNTypeParser = 1 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/internal/flags/flags.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019, The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package flags 6 | 7 | // Deterministic controls whether the output of Diff should be deterministic. 8 | // This is only used for testing. 9 | var Deterministic bool 10 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- 1 | // +k8s:deepcopy-gen=package,register 2 | // +k8s:conversion-gen=github.com/openshift/origin/pkg/authorization/apis/authorization 3 | // +k8s:defaulter-gen=TypeMeta 4 | // +k8s:openapi-gen=true 5 | 6 | // +kubebuilder:validation:Optional 7 | // +groupName=authorization.openshift.io 8 | // Package v1 is the v1 version of the API. 9 | package v1 10 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/make/targets/help.mk: -------------------------------------------------------------------------------- 1 | help: 2 | $(info The following make targets are available:) 3 | @$(MAKE) -f $(firstword $(MAKEFILE_LIST)) --print-data-base --question no-such-target 2>&1 | grep -v 'no-such-target' | \ 4 | grep -v -e '^no-such-target' -e '^makefile' | \ 5 | awk '/^[^.%][-A-Za-z0-9_]*:/ { print substr($$1, 1, length($$1)-1) }' | sort -u 6 | .PHONY: help 7 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/baggage/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | /* 5 | Package baggage provides functionality for storing and retrieving 6 | baggage items in Go context. For propagating the baggage, see the 7 | go.opentelemetry.io/otel/propagation package. 8 | */ 9 | package baggage // import "go.opentelemetry.io/otel/baggage" 10 | -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | ERROR_COUNT=0 4 | while read -r file 5 | do 6 | case "$(head -1 "${file}")" in 7 | *"Copyright (c) "*" Uber Technologies, Inc.") 8 | # everything's cool 9 | ;; 10 | *) 11 | echo "$file is missing license header." 12 | (( ERROR_COUNT++ )) 13 | ;; 14 | esac 15 | done < <(git ls-files "*\.go") 16 | 17 | exit $ERROR_COUNT 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | //go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64 6 | 7 | package unix 8 | 9 | const isBigEndian = true 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build darwin && !ios 6 | 7 | package unix 8 | 9 | func ptrace(request int, pid int, addr uintptr, data uintptr) error { 10 | return ptrace1(request, pid, addr, data) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # Eclipse files 5 | .classpath 6 | .project 7 | .settings/** 8 | 9 | # Idea files 10 | .idea/** 11 | .idea/ 12 | 13 | # Emacs save files 14 | *~ 15 | 16 | # Vim-related files 17 | [._]*.s[a-w][a-z] 18 | [._]s[a-w][a-z] 19 | *.un~ 20 | Session.vim 21 | .netrwhist 22 | 23 | # Go test binaries 24 | *.test 25 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_x86.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build 386 || amd64p32 || (amd64 && (!darwin || !gc)) 6 | 7 | package cpu 8 | 9 | func darwinSupportsAVX512() bool { 10 | panic("only implemented for gc && amd64 && darwin") 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- 1 | package assert 2 | 3 | import ( 4 | "errors" 5 | ) 6 | 7 | // AnError is an error instance useful for testing. If the code does not care 8 | // about error specifics, and only needs to return the error for example, this 9 | // error should be used to make the test code more readable. 10 | var AnError = errors.New("assert.AnError general error for testing") 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix_other.go: -------------------------------------------------------------------------------- 1 | // Copyright 2021 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || linux || solaris || zos 6 | 7 | package term 8 | 9 | import "golang.org/x/sys/unix" 10 | 11 | const ioctlReadTermios = unix.TCGETS 12 | const ioctlWriteTermios = unix.TCSETS 13 | -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/registry/generic/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - yujuhong 9 | - derekwaynecarr 10 | - caesarxuchao 11 | - mikedanese 12 | - liggitt 13 | - saad-ali 14 | - janetkuo 15 | - pwittrock 16 | - dims 17 | - enj 18 | emeritus_reviewers: 19 | - ncdc 20 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/hypershift/guest/generated/operator.openshift.io_v1_clustercsidriver_manila.csi.openstack.org.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | annotations: 5 | storage.openshift.io/remove-from: mgmt 6 | name: manila.csi.openstack.org 7 | spec: 8 | logLevel: Normal 9 | managementState: Managed 10 | operatorLogLevel: Normal 11 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | bazel build //proto/cel/expr/conformance/... 3 | files=($(bazel aquery 'kind(proto, //proto/cel/expr/conformance/...)' | grep Outputs | grep "[.]pb[.]go" | sed 's/Outputs: \[//' | sed 's/\]//' | tr "," "\n")) 4 | for src in ${files[@]}; 5 | do 6 | dst=$(echo $src | sed 's/\(.*\/cel.dev\/expr\/\(.*\)\)/\2/') 7 | echo "copying $dst" 8 | $(cp $src $dst) 9 | done 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config_go125.go: -------------------------------------------------------------------------------- 1 | // Copyright 2025 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !go1.26 6 | 7 | package http2 8 | 9 | import ( 10 | "net/http" 11 | ) 12 | 13 | func http2ConfigStrictMaxConcurrentRequests(h2 *http.HTTP2Config) bool { 14 | return false 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - dims 5 | - jpbetz 6 | - smarterclayton 7 | - deads2k 8 | - sttts 9 | - liggitt 10 | reviewers: 11 | - dims 12 | - thockin 13 | - jpbetz 14 | - smarterclayton 15 | - wojtek-t 16 | - deads2k 17 | - derekwaynecarr 18 | - mikedanese 19 | - liggitt 20 | - sttts 21 | - tallclair 22 | labels: 23 | - sig/api-machinery 24 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/standalone/generated/default_operator.openshift.io_v1_clustercsidriver_manila.csi.openstack.org.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: operator.openshift.io/v1 2 | kind: ClusterCSIDriver 3 | metadata: 4 | annotations: 5 | storage.openshift.io/remove-from: mgmt 6 | name: manila.csi.openstack.org 7 | spec: 8 | logLevel: Normal 9 | managementState: Managed 10 | operatorLogLevel: Normal 11 | -------------------------------------------------------------------------------- /pkg/dependencymagnet/dependencymagnet.go: -------------------------------------------------------------------------------- 1 | //go:build tools 2 | // +build tools 3 | 4 | // go mod won't pull in code that isn't depended upon, but we have some code we don't depend on from code that must be included 5 | // for our build to work. 6 | package dependencymagnet 7 | 8 | import ( 9 | _ "github.com/openshift/api/operator/v1/zz_generated.crd-manifests" 10 | _ "github.com/openshift/build-machinery-go" 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !386 && !amd64 && !amd64p32 && !arm64 6 | 7 | package cpu 8 | 9 | func archInit() { 10 | if err := readHWCAP(); err != nil { 11 | return 12 | } 13 | doinit() 14 | Initialized = true 15 | } 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build mips64 || mips64le 6 | 7 | package cpu 8 | 9 | const cacheLineSize = 32 10 | 11 | func initOptions() { 12 | options = []option{ 13 | {Name: "msa", Feature: &MIPS64X.HasMSA}, 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build go1.10 6 | 7 | package bidirule 8 | 9 | func (t *Transformer) isFinal() bool { 10 | return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial 11 | } 12 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/name.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package genid 6 | 7 | const ( 8 | NoUnkeyedLiteral_goname = "noUnkeyedLiteral" 9 | NoUnkeyedLiteralA_goname = "XXX_NoUnkeyedLiteral" 10 | 11 | BuilderSuffix_goname = "_builder" 12 | ) 13 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | 24 | # IDEs 25 | .idea/ 26 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/xxhash_asm.go: -------------------------------------------------------------------------------- 1 | //go:build (amd64 || arm64) && !appengine && gc && !purego 2 | // +build amd64 arm64 3 | // +build !appengine 4 | // +build gc 5 | // +build !purego 6 | 7 | package xxhash 8 | 9 | // Sum64 computes the 64-bit xxHash digest of b with a zero seed. 10 | // 11 | //go:noescape 12 | func Sum64(b []byte) uint64 13 | 14 | //go:noescape 15 | func writeBlocks(d *Digest, b []byte) int 16 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/go.work: -------------------------------------------------------------------------------- 1 | use ( 2 | . 3 | ./cmdutils 4 | ./conv 5 | ./fileutils 6 | ./jsonname 7 | ./jsonutils 8 | ./jsonutils/adapters/easyjson 9 | ./jsonutils/adapters/testintegration 10 | ./jsonutils/adapters/testintegration/benchmarks 11 | ./jsonutils/fixtures_test 12 | ./loading 13 | ./mangling 14 | ./netutils 15 | ./stringutils 16 | ./typeutils 17 | ./yamlutils 18 | ) 19 | 20 | go 1.24.0 21 | -------------------------------------------------------------------------------- /vendor/github.com/google/cel-go/common/overloads/BUILD.bazel: -------------------------------------------------------------------------------- 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 | 3 | package( 4 | default_visibility = ["//visibility:public"], 5 | licenses = ["notice"], # Apache 2.0 6 | ) 7 | 8 | go_library( 9 | name = "go_default_library", 10 | srcs = [ 11 | "overloads.go", 12 | ], 13 | importpath = "github.com/google/cel-go/common/overloads", 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build gccgo 6 | 7 | package cpu 8 | 9 | func getisar0() uint64 { return 0 } 10 | func getisar1() uint64 { return 0 } 11 | func getmmfr1() uint64 { return 0 } 12 | func getpfr0() uint64 { return 0 } 13 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/library-go/pkg/network/dialer.go: -------------------------------------------------------------------------------- 1 | package network 2 | 3 | import ( 4 | "context" 5 | "net" 6 | ) 7 | 8 | type DialContext func(ctx context.Context, network, address string) (net.Conn, error) 9 | 10 | // DefaultDialContext returns a DialContext function from a network dialer with default options sets. 11 | func DefaultClientDialContext() DialContext { 12 | return dialerWithDefaultOptions() 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/all.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package japanese 6 | 7 | import ( 8 | "golang.org/x/text/encoding" 9 | ) 10 | 11 | // All is a list of all defined encodings in this package. 12 | var All = []encoding.Encoding{EUCJP, ISO2022JP, ShiftJIS} 13 | -------------------------------------------------------------------------------- /assets/csidriveroperators/openstack-manila/hypershift/guest/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../../base 3 | patches: 4 | - path: monitoring_role.patch.yaml 5 | target: 6 | kind: Role 7 | version: v1 8 | - patch: | 9 | $patch: delete 10 | kind: Kustomization 11 | metadata: 12 | name: PLACEHOLDER 13 | target: 14 | annotationSelector: "storage.openshift.io/remove-from=guest" 15 | -------------------------------------------------------------------------------- /vendor/github.com/google/cel-go/common/operators/BUILD.bazel: -------------------------------------------------------------------------------- 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 | 3 | package( 4 | default_visibility = ["//visibility:public"], 5 | licenses = ["notice"], # Apache 2.0 6 | ) 7 | 8 | go_library( 9 | name = "go_default_library", 10 | srcs = [ 11 | "operators.go", 12 | ], 13 | importpath = "github.com/google/cel-go/common/operators", 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/client-go/config/clientset/versioned/typed/config/v1alpha1/generated_expansion.go: -------------------------------------------------------------------------------- 1 | // Code generated by client-gen. DO NOT EDIT. 2 | 3 | package v1alpha1 4 | 5 | type BackupExpansion interface{} 6 | 7 | type ClusterImagePolicyExpansion interface{} 8 | 9 | type ClusterMonitoringExpansion interface{} 10 | 11 | type ImagePolicyExpansion interface{} 12 | 13 | type InsightsDataGatherExpansion interface{} 14 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | // Package otelhttp provides an http.Handler and functions that are intended 5 | // to be used to add tracing by wrapping existing handlers (with Handler) and 6 | // routes WithRouteTag. 7 | package otelhttp // import "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config_go126.go: -------------------------------------------------------------------------------- 1 | // Copyright 2025 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build go1.26 6 | 7 | package http2 8 | 9 | import ( 10 | "net/http" 11 | ) 12 | 13 | func http2ConfigStrictMaxConcurrentRequests(h2 *http.HTTP2Config) bool { 14 | return h2.StrictMaxConcurrentRequests 15 | } 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | //go:build 386 || amd64 || amd64p32 || alpha || arm || arm64 || loong64 || mipsle || mips64le || mips64p32le || nios2 || ppc64le || riscv || riscv64 || sh 6 | 7 | package unix 8 | 9 | const isBigEndian = false 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix_bsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build darwin || dragonfly || freebsd || netbsd || openbsd 6 | 7 | package term 8 | 9 | import "golang.org/x/sys/unix" 10 | 11 | const ioctlReadTermios = unix.TIOCGETA 12 | const ioctlWriteTermios = unix.TIOCSETA 13 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/bench_test.sh: -------------------------------------------------------------------------------- 1 | #go test -run=none -file bench_test.go -test.bench . -cpuprofile=bench_test.out 2 | 3 | go test -c 4 | ./go-restful.test -test.run=none -test.cpuprofile=tmp.prof -test.bench=BenchmarkMany 5 | ./go-restful.test -test.run=none -test.cpuprofile=curly.prof -test.bench=BenchmarkManyCurly 6 | 7 | #go tool pprof go-restful.test tmp.prof 8 | go tool pprof go-restful.test curly.prof 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_nomremap.go: -------------------------------------------------------------------------------- 1 | // Copyright 2023 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || darwin || dragonfly || freebsd || openbsd || solaris || zos 6 | 7 | package unix 8 | 9 | var mapper = &mmapper{ 10 | active: make(map[*byte][]byte), 11 | mmap: mmap, 12 | munmap: munmap, 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build generate 6 | 7 | package windows 8 | 9 | //go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zsyscall_windows.go eventlog.go service.go syscall_windows.go security_windows.go setupapi_windows.go 10 | -------------------------------------------------------------------------------- /assets/volumedatasourcevalidator/03_clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | kind: ClusterRoleBinding 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | metadata: 4 | name: volume-data-source-validator 5 | subjects: 6 | - kind: ServiceAccount 7 | name: volume-data-source-validator 8 | namespace: openshift-cluster-storage-operator 9 | roleRef: 10 | kind: ClusterRole 11 | name: volume-data-source-validator 12 | apiGroup: rbac.authorization.k8s.io 13 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | Security fixes are provided for the latest released version of fxamacker/cbor. 4 | 5 | If the security vulnerability is already known to the public, then you can open an issue as a bug report. 6 | 7 | To report security vulnerabilities not yet known to the public, please email faye.github@gmail.com and allow time for the problem to be resolved before reporting it to the public. 8 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- 1 | # BTree implementation for Go 2 | 3 | This package provides an in-memory B-Tree implementation for Go, useful as 4 | an ordered, mutable data structure. 5 | 6 | The API is based off of the wonderful 7 | http://godoc.org/github.com/petar/GoLLRB/llrb, and is meant to allow btree to 8 | act as a drop-in replacement for gollrb trees. 9 | 10 | See http://godoc.org/github.com/google/btree for documentation. 11 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/dependencies.Dockerfile: -------------------------------------------------------------------------------- 1 | # This is a renovate-friendly source of Docker images. 2 | FROM python:3.13.6-slim-bullseye@sha256:e98b521460ee75bca92175c16247bdf7275637a8faaeb2bcfa19d879ae5c4b9a AS python 3 | FROM otel/weaver:v0.17.1@sha256:32523b5e44fb44418786347e9f7dde187d8797adb6d57a2ee99c245346c3cdfe AS weaver 4 | FROM avtodev/markdown-lint:v1@sha256:6aeedc2f49138ce7a1cd0adffc1b1c0321b841dc2102408967d9301c031949ee AS markdown 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/vgetrandom_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build linux && go1.24 6 | 7 | package unix 8 | 9 | import _ "unsafe" 10 | 11 | //go:linkname vgetrandom runtime.vgetrandom 12 | //go:noescape 13 | func vgetrandom(p []byte, flags uint32) (ret int, supported bool) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/simplifiedchinese/all.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package simplifiedchinese 6 | 7 | import ( 8 | "golang.org/x/text/encoding" 9 | ) 10 | 11 | // All is a list of all defined encodings in this package. 12 | var All = []encoding.Encoding{GB18030, GBK, HZGB2312} 13 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package protoiface 6 | 7 | type MessageV1 interface { 8 | Reset() 9 | String() string 10 | ProtoMessage() 11 | } 12 | 13 | type ExtensionRangeV1 struct { 14 | Start, End int32 // both inclusive 15 | } 16 | -------------------------------------------------------------------------------- /assets/csidriveroperators/vsphere/13_prometheus_role.yaml: -------------------------------------------------------------------------------- 1 | # Role for accessing metrics exposed by the operator 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: Role 4 | metadata: 5 | name: vmware-vsphere-csi-driver-operator-prometheus 6 | namespace: openshift-cluster-csi-drivers 7 | rules: 8 | - apiGroups: 9 | - "" 10 | resources: 11 | - services 12 | - endpoints 13 | - pods 14 | verbs: 15 | - get 16 | - list 17 | - watch 18 | -------------------------------------------------------------------------------- /vendor/github.com/stoewer/go-strcase/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017, A. Stoewer 2 | // All rights reserved. 3 | 4 | // Package strcase converts between different kinds of naming formats such as camel case 5 | // (CamelCase), snake case (snake_case) or kebab case (kebab-case). The package is designed 6 | // to work only with strings consisting of standard ASCII letters. Unicode is currently not 7 | // supported. 8 | package strcase 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2025 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | // func get_cpucfg(reg uint32) uint32 8 | TEXT ·get_cpucfg(SB), NOSPLIT|NOFRAME, $0 9 | MOVW reg+0(FP), R5 10 | // CPUCFG R5, R4 = 0x00006ca4 11 | WORD $0x00006ca4 12 | MOVW R4, ret+8(FP) 13 | RET 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/common.go: -------------------------------------------------------------------------------- 1 | // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. 2 | 3 | package language 4 | 5 | // This file contains code common to the maketables.go and the package code. 6 | 7 | // AliasType is the type of an alias in AliasMap. 8 | type AliasType int8 9 | 10 | const ( 11 | Deprecated AliasType = iota 12 | Macro 13 | Legacy 14 | 15 | AliasTypeUnknown AliasType = -1 16 | ) 17 | -------------------------------------------------------------------------------- /vendor/github.com/antlr4-go/antlr/v4/char_stream.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2022 The ANTLR Project. All rights reserved. 2 | // Use of this file is governed by the BSD 3-clause license that 3 | // can be found in the LICENSE.txt file in the project root. 4 | 5 | package antlr 6 | 7 | type CharStream interface { 8 | IntStream 9 | GetText(int, int) string 10 | GetTextFromTokens(start, end Token) string 11 | GetTextFromInterval(Interval) string 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/sigquit_swallower_unix.go: -------------------------------------------------------------------------------- 1 | //go:build freebsd || openbsd || netbsd || dragonfly || darwin || linux || solaris 2 | // +build freebsd openbsd netbsd dragonfly darwin linux solaris 3 | 4 | package interrupt_handler 5 | 6 | import ( 7 | "os" 8 | "os/signal" 9 | "syscall" 10 | ) 11 | 12 | func SwallowSigQuit() { 13 | c := make(chan os.Signal, 1024) 14 | signal.Notify(c, syscall.SIGQUIT) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | /* 5 | Package codes defines the canonical error codes used by OpenTelemetry. 6 | 7 | It conforms to [the OpenTelemetry 8 | specification](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/trace/api.md#set-status). 9 | */ 10 | package codes // import "go.opentelemetry.io/otel/codes" 11 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/OWNERS_ALIASES: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md 2 | # This file should be kept in sync with k/org. 3 | 4 | aliases: 5 | # Reference: https://github.com/kubernetes/org/blob/main/OWNERS_ALIASES 6 | sig-testing-leads: 7 | - BenTheElder 8 | - alvaroaleman 9 | - aojea 10 | - cjwagner 11 | - jbpratt 12 | - michelle192837 13 | - pohly 14 | - xmcqueen 15 | -------------------------------------------------------------------------------- /assets/csidriveroperators/gcp-pd/06_clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | kind: ClusterRoleBinding 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | metadata: 4 | name: gcp-pd-csi-driver-operator-clusterrolebinding 5 | subjects: 6 | - kind: ServiceAccount 7 | name: gcp-pd-csi-driver-operator 8 | namespace: openshift-cluster-csi-drivers 9 | roleRef: 10 | apiGroup: rbac.authorization.k8s.io 11 | kind: ClusterRole 12 | name: gcp-pd-csi-driver-operator-clusterrole -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | | Version | Supported | 6 | | ------- | ------------------ | 7 | | v3.7.x | :white_check_mark: | 8 | | < v3.0.1 | :x: | 9 | 10 | ## Reporting a Vulnerability 11 | 12 | Create an Issue and put the label `[security]` in the title of the issue. 13 | Valid reported security issues are expected to be solved within a week. 14 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/internal_logging.go: -------------------------------------------------------------------------------- 1 | // Copyright The OpenTelemetry Authors 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package otel // import "go.opentelemetry.io/otel" 5 | 6 | import ( 7 | "github.com/go-logr/logr" 8 | 9 | "go.opentelemetry.io/otel/internal/global" 10 | ) 11 | 12 | // SetLogger configures the logger used internally to opentelemetry. 13 | func SetLogger(logger logr.Logger) { 14 | global.SetLogger(logger) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2022 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0 8 | JMP libc_sysctl(SB) 9 | 10 | GLOBL ·libc_sysctl_trampoline_addr(SB), RODATA, $8 11 | DATA ·libc_sysctl_trampoline_addr(SB)/8, $libc_sysctl_trampoline<>(SB) 12 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | | Version | Supported | 6 | | ------- | ------------------ | 7 | | 0.3.x | :white_check_mark: | 8 | | < 0.3 | :x: | 9 | 10 | ## Security contact information 11 | 12 | To report a security vulnerability, please use the 13 | [Tidelift security contact](https://tidelift.com/security). 14 | Tidelift will coordinate the fix and disclosure. 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build ppc64 || ppc64le 6 | 7 | package cpu 8 | 9 | const cacheLineSize = 128 10 | 11 | func initOptions() { 12 | options = []option{ 13 | {Name: "darn", Feature: &PPC64.HasDARN}, 14 | {Name: "scv", Feature: &PPC64.HasSCV}, 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package editiondefaults contains the binary representation of the editions 6 | // defaults. 7 | package editiondefaults 8 | 9 | import _ "embed" 10 | 11 | //go:embed editions_defaults.binpb 12 | var Defaults []byte 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/compatibility/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Currently assigned this directory to sig-api-machinery since this is 4 | # an interface to the version definition in "k8s.io/apiserver/pkg/util/compatibility". 5 | 6 | approvers: 7 | - sig-api-machinery-api-approvers 8 | - jpbetz 9 | reviewers: 10 | - sig-api-machinery-api-reviewers 11 | - siyuanfoundation 12 | labels: 13 | - sig/api-machinery 14 | -------------------------------------------------------------------------------- /assets/csidriveroperators/gcp-pd/04_rolebinding.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: rbac.authorization.k8s.io/v1 2 | kind: RoleBinding 3 | metadata: 4 | name: gcp-pd-csi-driver-operator-rolebinding 5 | namespace: openshift-cluster-csi-drivers 6 | roleRef: 7 | apiGroup: rbac.authorization.k8s.io 8 | kind: Role 9 | name: gcp-pd-csi-driver-operator-role 10 | subjects: 11 | - kind: ServiceAccount 12 | name: gcp-pd-csi-driver-operator 13 | namespace: openshift-cluster-csi-drivers 14 | --------------------------------------------------------------------------------