mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-07 01:36:41 +00:00
* Add basic flow * Add arbitrary validator * Pipe config through to resource provider * Set arbitraries on resource provider * Add arbitrary validation to fullaudit * Add conf argument * Fix resource setting from string * PR updates * Fix nil map error * Delete lingering print, add pdb check, start implementing validator test * move ingress to arbitrary * fix compile * refactor a bunch * add tls tests * tests passing * resource provider helper * refactor tests * fix exemptions * fix check test * fix up resource creation from API * fix init containers * fix cronjob test * fix pod tests * combine controllers and-noncontrollers in resource provider * delint * add ingress backward compat * fix tests * reenable test * rename a fn * remove unused fn * remove if Co-authored-by: Robert Brennan <contact@rbren.io>
40 lines
1.5 KiB
Modula-2
40 lines
1.5 KiB
Modula-2
module github.com/fairwindsops/polaris
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
cloud.google.com/go v0.74.0 // indirect
|
|
github.com/Azure/go-autorest/autorest v0.11.15 // indirect
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.10 // indirect
|
|
github.com/fatih/color v1.10.0
|
|
github.com/gobuffalo/packr/v2 v2.8.1
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/google/uuid v1.1.3 // indirect
|
|
github.com/googleapis/gnostic v0.5.3 // indirect
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/imdario/mergo v0.3.11 // indirect
|
|
github.com/karrick/godirwalk v1.16.1 // indirect
|
|
github.com/kr/pretty v0.2.1 // indirect
|
|
github.com/prometheus/client_golang v1.9.0 // indirect
|
|
github.com/qri-io/jsonschema v0.1.1
|
|
github.com/rogpeppe/go-internal v1.6.2 // indirect
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.1.3
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/thoas/go-funk v0.7.0
|
|
go.uber.org/zap v1.16.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
|
|
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
|
|
golang.org/x/sys v0.0.0-20201231184435-2d18734c6014 // indirect
|
|
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
|
|
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
|
|
k8s.io/api v0.20.4
|
|
k8s.io/apimachinery v0.20.4
|
|
k8s.io/client-go v0.20.4
|
|
k8s.io/component-base v0.20.1 // indirect
|
|
sigs.k8s.io/controller-runtime v0.7.0
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|