├── .dockerignore ├── .github └── workflows │ └── release.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── client.go ├── go.mod ├── go.sum ├── helm ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── apiservice.yaml │ ├── deployment.yaml │ ├── pki.yaml │ ├── rbac.yaml │ ├── secret.yaml │ └── service.yaml └── values.yaml └── main.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/client.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/go.sum -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- 1 | name: regru-cluster-issuer 2 | version: 1.2.0 3 | -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/apiservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/templates/apiservice.yaml -------------------------------------------------------------------------------- /helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/pki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/templates/pki.yaml -------------------------------------------------------------------------------- /helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/templates/secret.yaml -------------------------------------------------------------------------------- /helm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/templates/service.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/cert-manager-webhook-regru/HEAD/main.go --------------------------------------------------------------------------------