├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── release.yml └── workflows │ ├── bump-up-pr.yml │ ├── cla.yml │ ├── frogbot-scan-pull-request.yml │ ├── frogbot-scan-repository.yml │ ├── test.yml │ ├── update-v2-tag.yml │ └── validate-pr-target-branch.yml ├── .jfrog-pipelines └── build │ ├── build-docker-local.sh │ └── build-docker.sh ├── Dockerfile ├── LICENSE ├── Makefile ├── PROJECT ├── README.md ├── api └── v1alpha1 │ ├── groupversion_info.go │ ├── secretrotator_types.go │ └── zz_generated.deepcopy.go ├── charts └── jfrog-registry-operator │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── charts │ └── jfrog-common-0.0.7.tgz │ ├── crds │ └── apps.jfrog.com_secretrotators.yaml │ ├── examples │ ├── secretrotator.yaml │ └── tls_cert.yaml │ ├── full-values.yaml │ ├── logo │ └── jfrog-logo.png │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── deployment.yaml │ ├── exchanged_serviceaccounts.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml │ └── values.yaml ├── config ├── crd │ └── bases │ │ └── apps.jfrog.com_secretrotators.yaml ├── deploy │ └── operator.yaml ├── images │ ├── frogbot-badge.png │ ├── frogbot-intro.png │ └── secretrotator.png ├── monitoring │ ├── README.md │ ├── graph.png │ ├── operator-service.yaml │ └── prometheus │ │ ├── 01-prometheus-rbac.yaml │ │ ├── 02-prometheus-configMap.yaml │ │ ├── prometheus-alert-rules.yaml │ │ ├── prometheus-deployment.yaml │ │ └── prometheus-service.yaml ├── rbac │ ├── full_rbac.yaml │ └── role.yaml └── samples │ ├── jfrog_v1alpha1_secretrotator.yaml │ ├── jfrog_v1alpha1_secretrotator2.yaml │ ├── secret_example │ ├── echo_pod_example.yaml │ ├── secret_namespace.yaml │ ├── secret_namespace2.yaml │ ├── secret_namespace_not_labeled.yaml │ └── secret_namespace_other_label.yaml │ └── tls_secret │ └── cert.yaml ├── controllers ├── secretrotator_controller.go ├── secretrotator_operations.go └── suite_test.go ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── internal ├── client │ ├── client.go │ └── client_test.go ├── handler │ ├── aws.go │ └── token.go ├── operations │ ├── operations.go │ ├── operations_test.go │ └── types.go ├── resource │ ├── namespace.go │ └── secret.go └── sign │ ├── signer.go │ └── v4a │ ├── crypto │ ├── compare.go │ ├── compare_test.go │ ├── ecc.go │ └── ecc_test.go │ ├── error.go │ ├── v4 │ ├── const.go │ ├── header_rules.go │ ├── headers.go │ ├── hmac.go │ ├── host.go │ ├── time.go │ ├── util.go │ └── util_test.go │ └── v4a.go ├── main.go ├── pom.xml ├── scripts ├── binary.sh └── createEntplusSecret.sh ├── terraform ├── README.md └── operator.tf └── tests ├── README.md ├── e2e ├── install │ ├── 00-assert.yaml │ ├── 00-install.yaml │ └── customvalues.yaml ├── kuttl-e2e.sh └── kuttl-test.yaml ├── scripts ├── checkFileExistsInPod.sh └── checkPodsAreReady.sh └── vcluster-values.yaml /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/bump-up-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/workflows/bump-up-pr.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/frogbot-scan-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/workflows/frogbot-scan-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/frogbot-scan-repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/workflows/frogbot-scan-repository.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-v2-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/workflows/update-v2-tag.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr-target-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.github/workflows/validate-pr-target-branch.yml -------------------------------------------------------------------------------- /.jfrog-pipelines/build/build-docker-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.jfrog-pipelines/build/build-docker-local.sh -------------------------------------------------------------------------------- /.jfrog-pipelines/build/build-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/.jfrog-pipelines/build/build-docker.sh -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/secretrotator_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/api/v1alpha1/secretrotator_types.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/.helmignore -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/CHANGELOG.md -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/Chart.lock -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/charts/jfrog-common-0.0.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/charts/jfrog-common-0.0.7.tgz -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/crds/apps.jfrog.com_secretrotators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/crds/apps.jfrog.com_secretrotators.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/examples/secretrotator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/examples/secretrotator.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/examples/tls_cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/examples/tls_cert.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/full-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/full-values.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/logo/jfrog-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/logo/jfrog-logo.png -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/exchanged_serviceaccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/exchanged_serviceaccounts.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/jfrog-registry-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/charts/jfrog-registry-operator/values.yaml -------------------------------------------------------------------------------- /config/crd/bases/apps.jfrog.com_secretrotators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/crd/bases/apps.jfrog.com_secretrotators.yaml -------------------------------------------------------------------------------- /config/deploy/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/deploy/operator.yaml -------------------------------------------------------------------------------- /config/images/frogbot-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/images/frogbot-badge.png -------------------------------------------------------------------------------- /config/images/frogbot-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/images/frogbot-intro.png -------------------------------------------------------------------------------- /config/images/secretrotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/images/secretrotator.png -------------------------------------------------------------------------------- /config/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/README.md -------------------------------------------------------------------------------- /config/monitoring/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/graph.png -------------------------------------------------------------------------------- /config/monitoring/operator-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/operator-service.yaml -------------------------------------------------------------------------------- /config/monitoring/prometheus/01-prometheus-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/prometheus/01-prometheus-rbac.yaml -------------------------------------------------------------------------------- /config/monitoring/prometheus/02-prometheus-configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/prometheus/02-prometheus-configMap.yaml -------------------------------------------------------------------------------- /config/monitoring/prometheus/prometheus-alert-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/prometheus/prometheus-alert-rules.yaml -------------------------------------------------------------------------------- /config/monitoring/prometheus/prometheus-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/prometheus/prometheus-deployment.yaml -------------------------------------------------------------------------------- /config/monitoring/prometheus/prometheus-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/monitoring/prometheus/prometheus-service.yaml -------------------------------------------------------------------------------- /config/rbac/full_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/rbac/full_rbac.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/samples/jfrog_v1alpha1_secretrotator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/samples/jfrog_v1alpha1_secretrotator.yaml -------------------------------------------------------------------------------- /config/samples/jfrog_v1alpha1_secretrotator2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/samples/jfrog_v1alpha1_secretrotator2.yaml -------------------------------------------------------------------------------- /config/samples/secret_example/echo_pod_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/samples/secret_example/echo_pod_example.yaml -------------------------------------------------------------------------------- /config/samples/secret_example/secret_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/samples/secret_example/secret_namespace.yaml -------------------------------------------------------------------------------- /config/samples/secret_example/secret_namespace2.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: jfrog-operator -------------------------------------------------------------------------------- /config/samples/secret_example/secret_namespace_not_labeled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/samples/secret_example/secret_namespace_not_labeled.yaml -------------------------------------------------------------------------------- /config/samples/secret_example/secret_namespace_other_label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/samples/secret_example/secret_namespace_other_label.yaml -------------------------------------------------------------------------------- /config/samples/tls_secret/cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/config/samples/tls_secret/cert.yaml -------------------------------------------------------------------------------- /controllers/secretrotator_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/controllers/secretrotator_controller.go -------------------------------------------------------------------------------- /controllers/secretrotator_operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/controllers/secretrotator_operations.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /internal/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/client/client.go -------------------------------------------------------------------------------- /internal/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/client/client_test.go -------------------------------------------------------------------------------- /internal/handler/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/handler/aws.go -------------------------------------------------------------------------------- /internal/handler/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/handler/token.go -------------------------------------------------------------------------------- /internal/operations/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/operations/operations.go -------------------------------------------------------------------------------- /internal/operations/operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/operations/operations_test.go -------------------------------------------------------------------------------- /internal/operations/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/operations/types.go -------------------------------------------------------------------------------- /internal/resource/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/resource/namespace.go -------------------------------------------------------------------------------- /internal/resource/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/resource/secret.go -------------------------------------------------------------------------------- /internal/sign/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/signer.go -------------------------------------------------------------------------------- /internal/sign/v4a/crypto/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/crypto/compare.go -------------------------------------------------------------------------------- /internal/sign/v4a/crypto/compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/crypto/compare_test.go -------------------------------------------------------------------------------- /internal/sign/v4a/crypto/ecc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/crypto/ecc.go -------------------------------------------------------------------------------- /internal/sign/v4a/crypto/ecc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/crypto/ecc_test.go -------------------------------------------------------------------------------- /internal/sign/v4a/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/error.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/const.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/header_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/header_rules.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/headers.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/hmac.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/host.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/time.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/util.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4/util_test.go -------------------------------------------------------------------------------- /internal/sign/v4a/v4a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/internal/sign/v4a/v4a.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/main.go -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/scripts/binary.sh -------------------------------------------------------------------------------- /scripts/createEntplusSecret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/scripts/createEntplusSecret.sh -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/operator.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/terraform/operator.tf -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/e2e/install/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/e2e/install/00-assert.yaml -------------------------------------------------------------------------------- /tests/e2e/install/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/e2e/install/00-install.yaml -------------------------------------------------------------------------------- /tests/e2e/install/customvalues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/e2e/install/customvalues.yaml -------------------------------------------------------------------------------- /tests/e2e/kuttl-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/e2e/kuttl-e2e.sh -------------------------------------------------------------------------------- /tests/e2e/kuttl-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/e2e/kuttl-test.yaml -------------------------------------------------------------------------------- /tests/scripts/checkFileExistsInPod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/scripts/checkFileExistsInPod.sh -------------------------------------------------------------------------------- /tests/scripts/checkPodsAreReady.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/scripts/checkPodsAreReady.sh -------------------------------------------------------------------------------- /tests/vcluster-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jfrog-registry-operator/HEAD/tests/vcluster-values.yaml --------------------------------------------------------------------------------