├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE.txt ├── Makefile ├── README.md ├── circle.yml ├── install-binary.sh ├── main.go ├── plugin.yaml └── testdata ├── .helmignore ├── Chart.yaml ├── policies └── base.rego ├── templates ├── NOTES.txt ├── _helpers.tpl ├── deployment.yaml ├── ingress.yaml └── service.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/circle.yml -------------------------------------------------------------------------------- /install-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/install-binary.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/main.go -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/plugin.yaml -------------------------------------------------------------------------------- /testdata/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/.helmignore -------------------------------------------------------------------------------- /testdata/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/Chart.yaml -------------------------------------------------------------------------------- /testdata/policies/base.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/policies/base.rego -------------------------------------------------------------------------------- /testdata/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/templates/NOTES.txt -------------------------------------------------------------------------------- /testdata/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/templates/_helpers.tpl -------------------------------------------------------------------------------- /testdata/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/templates/deployment.yaml -------------------------------------------------------------------------------- /testdata/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/templates/ingress.yaml -------------------------------------------------------------------------------- /testdata/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/templates/service.yaml -------------------------------------------------------------------------------- /testdata/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/helm-opa/HEAD/testdata/values.yaml --------------------------------------------------------------------------------