Documentation ¶
Index ¶
- Constants
- func HTTPRespToString(resp *http.Response) (string, error)
- func HttpGetter(httpClient *http.Client, fullURL string) (string, error)
- func JSONDecoder(origin string) *json.Decoder
- type GitRegoStore
- func (gs *GitRegoStore) GetAttackTrackCategoriesByControlIDAndAttackTrackName(controlID string, attackTrackName string) (opapolicy.AttackTrackCategories, error)
- func (gs *GitRegoStore) GetAttackTracks() ([]v1alpha1.AttackTrack, error)
- func (gs *GitRegoStore) GetControlFrameworkSubsections(controlID string, frameworkName string) ([]string, error)
- func (gs *GitRegoStore) GetDefaultConfigInputs() (armotypes.CustomerConfig, error)
- func (gs *GitRegoStore) GetOPAAttackTrackControls() ([]opapolicy.Control, error)
- func (gs *GitRegoStore) GetOPAControl(c string) (*opapolicy.Control, error)
- func (gs *GitRegoStore) GetOPAControlByFrameworkNameAndControlName(frameworkName string, controlName string) (*opapolicy.Control, error)
- func (gs *GitRegoStore) GetOPAControlByID(controlID string) (*opapolicy.Control, error)
- func (gs *GitRegoStore) GetOPAControlByName(controlName string) (*opapolicy.Control, error)deprecated
- func (gs *GitRegoStore) GetOPAControls() ([]opapolicy.Control, error)
- func (gs *GitRegoStore) GetOPAControlsIDsList() ([]string, error)
- func (gs *GitRegoStore) GetOPAControlsNamesList() ([]string, error)
- func (gs *GitRegoStore) GetOPAFrameworkByName(frameworkName string) (*opapolicy.Framework, error)
- func (gs *GitRegoStore) GetOPAFrameworkTypeTags(frameworkName string) ([]string, error)
- func (gs *GitRegoStore) GetOPAFrameworks() ([]opapolicy.Framework, error)
- func (gs *GitRegoStore) GetOPAFrameworksNamesList() ([]string, error)
- func (gs *GitRegoStore) GetOPAPolicies() ([]opapolicy.PolicyRule, error)
- func (gs *GitRegoStore) GetOPAPoliciesNamesList() ([]string, error)
- func (gs *GitRegoStore) GetOPAPolicyByName(ruleName string) (*opapolicy.PolicyRule, error)
- func (gs *GitRegoStore) GetOPASecurityFrameworks() ([]opapolicy.Framework, error)
- func (gs *GitRegoStore) GetOPASecurityFrameworksNamesList() ([]string, error)
- func (gs *GitRegoStore) GetOpaFrameworkListByControlID(controlID string) []string
- func (gs *GitRegoStore) GetOpaFrameworkListByControlName(controlName string) []string
- func (gs *GitRegoStore) GetSystemPostureExceptionPolicies() ([]armotypes.PostureExceptionPolicy, error)
- func (gs *GitRegoStore) SetRegoObjects() error
- type InnerTree
- type Tree
Constants ¶
const ( TypeCompliance = "compliance" TypeSecurity = "security" )
const (
ControlRuleRelationsFileName = "ControlID_RuleName.csv"
)
Variables ¶
This section is empty.
Functions ¶
func HTTPRespToString ¶
HTTPRespToString parses the body as string and checks the HTTP status code, it closes the body reader at the end TODO: FIX BUG: status code is not being checked when the body is empty
func JSONDecoder ¶
JSONDecoder returns JSON decoder for given string
Types ¶
type GitRegoStore ¶
type GitRegoStore struct { DefaultConfigInputsLock sync.RWMutex ControlRuleRelations dataframe.DataFrame FrameworkControlRelations dataframe.DataFrame Tag string Owner string CurGitVersion string Branch string URL string Path string BaseUrl string Repository string DefaultConfigInputs armotypes.CustomerConfig AttackTracks []v1alpha1.AttackTrack Frameworks []opapolicy.Framework Controls []opapolicy.Control AttackTrackControls []opapolicy.Control Rules []opapolicy.PolicyRule SystemPostureExceptionPolicies []armotypes.PostureExceptionPolicy FrequencyPullFromGitMinutes int Watch bool StripFilesExtension bool // contains filtered or unexported fields }
func NewDefaultGitRegoStore ¶
func NewDefaultGitRegoStore(frequency int) *GitRegoStore
NewDefaultGitRegoStore - generates git store object for production regolibrary release files. Release files source: "https://github.com/kubescape/regolibrary/releases/latest/download"
func NewDevGitRegoStore ¶
func NewDevGitRegoStore(frequency int) *GitRegoStore
NewDevGitRegoStore - generates git store object for dev regolibrary release files Release files source: "https://raw.githubusercontent.com/kubescape/regolibrary-dev/main/releaseDev"
func NewGitRegoStore ¶
func NewGitRegoStore(baseUrl string, owner string, repository string, path string, tag string, branch string, frequency int) *GitRegoStore
NewGitRegoStore return gitregostore obj with basic fields, before pulling from git
func NewGitRegoStoreV2 ¶
func NewGitRegoStoreV2(frequency int) *GitRegoStore
NewGitRegoStoreV2 - generates git store object for production v2 regolibrary release files. Release files source: "https://github.com/kubescape/regolibrary/releases/tag/v2"
func (*GitRegoStore) GetAttackTrackCategoriesByControlIDAndAttackTrackName ¶
func (gs *GitRegoStore) GetAttackTrackCategoriesByControlIDAndAttackTrackName(controlID string, attackTrackName string) (opapolicy.AttackTrackCategories, error)
func (*GitRegoStore) GetAttackTracks ¶
func (gs *GitRegoStore) GetAttackTracks() ([]v1alpha1.AttackTrack, error)
func (*GitRegoStore) GetControlFrameworkSubsections ¶ added in v2.0.6
func (gs *GitRegoStore) GetControlFrameworkSubsections(controlID string, frameworkName string) ([]string, error)
GetControlFrameworkSubsections returns all subsections of a control in a framework
func (*GitRegoStore) GetDefaultConfigInputs ¶
func (gs *GitRegoStore) GetDefaultConfigInputs() (armotypes.CustomerConfig, error)
func (*GitRegoStore) GetOPAAttackTrackControls ¶
func (gs *GitRegoStore) GetOPAAttackTrackControls() ([]opapolicy.Control, error)
func (*GitRegoStore) GetOPAControl ¶
func (gs *GitRegoStore) GetOPAControl(c string) (*opapolicy.Control, error)
GetOPAControl returns specific control by the name or ID
func (*GitRegoStore) GetOPAControlByFrameworkNameAndControlName ¶
func (gs *GitRegoStore) GetOPAControlByFrameworkNameAndControlName(frameworkName string, controlName string) (*opapolicy.Control, error)
GetOPAControlByFrameworkNameAndControlName - get framework name and control name and return the relevant control object
func (*GitRegoStore) GetOPAControlByID ¶
func (gs *GitRegoStore) GetOPAControlByID(controlID string) (*opapolicy.Control, error)
GetOPAControlByID returns specific BaseControl by the ID
func (*GitRegoStore) GetOPAControlByName
deprecated
func (gs *GitRegoStore) GetOPAControlByName(controlName string) (*opapolicy.Control, error)
GetOPAControlByName returns specific BaseControl by the name.
Deprecated: use GetOPAControlByFrameworkNameAndControlName.
func (*GitRegoStore) GetOPAControls ¶
func (gs *GitRegoStore) GetOPAControls() ([]opapolicy.Control, error)
GetOPAControls returns all the controls of given customer
func (*GitRegoStore) GetOPAControlsIDsList ¶
func (gs *GitRegoStore) GetOPAControlsIDsList() ([]string, error)
func (*GitRegoStore) GetOPAControlsNamesList ¶
func (gs *GitRegoStore) GetOPAControlsNamesList() ([]string, error)
func (*GitRegoStore) GetOPAFrameworkByName ¶
func (gs *GitRegoStore) GetOPAFrameworkByName(frameworkName string) (*opapolicy.Framework, error)
GetOPAFrameworkByName returns specific framework by the name
func (*GitRegoStore) GetOPAFrameworkTypeTags ¶
func (gs *GitRegoStore) GetOPAFrameworkTypeTags(frameworkName string) ([]string, error)
GetOPAFrameworkTypeTags returns all type tags of given framework
func (*GitRegoStore) GetOPAFrameworks ¶
func (gs *GitRegoStore) GetOPAFrameworks() ([]opapolicy.Framework, error)
GetOPAFrameworks returns all compliance frameworks
func (*GitRegoStore) GetOPAFrameworksNamesList ¶
func (gs *GitRegoStore) GetOPAFrameworksNamesList() ([]string, error)
GetOPAFrameworksNamesList returns all compliance frameworks names
func (*GitRegoStore) GetOPAPolicies ¶
func (gs *GitRegoStore) GetOPAPolicies() ([]opapolicy.PolicyRule, error)
GetOPAPolicies returns all the policies of given customer
func (*GitRegoStore) GetOPAPoliciesNamesList ¶
func (gs *GitRegoStore) GetOPAPoliciesNamesList() ([]string, error)
func (*GitRegoStore) GetOPAPolicyByName ¶
func (gs *GitRegoStore) GetOPAPolicyByName(ruleName string) (*opapolicy.PolicyRule, error)
GetOPAPolicyByName returns specific policy by the name
func (*GitRegoStore) GetOPASecurityFrameworks ¶
func (gs *GitRegoStore) GetOPASecurityFrameworks() ([]opapolicy.Framework, error)
GetOPAFrameworks returns all security frameworks
func (*GitRegoStore) GetOPASecurityFrameworksNamesList ¶
func (gs *GitRegoStore) GetOPASecurityFrameworksNamesList() ([]string, error)
GetOPAFrameworksNamesList returns all security frameworks names
func (*GitRegoStore) GetOpaFrameworkListByControlID ¶
func (gs *GitRegoStore) GetOpaFrameworkListByControlID(controlID string) []string
GetOpaFrameworkListByControlID returns a list of framework names this control is in
func (*GitRegoStore) GetOpaFrameworkListByControlName ¶
func (gs *GitRegoStore) GetOpaFrameworkListByControlName(controlName string) []string
GetOpaFrameworkListByControlName returns a list of framework names this control is in
func (*GitRegoStore) GetSystemPostureExceptionPolicies ¶
func (gs *GitRegoStore) GetSystemPostureExceptionPolicies() ([]armotypes.PostureExceptionPolicy, error)
func (*GitRegoStore) SetRegoObjects ¶
func (gs *GitRegoStore) SetRegoObjects() error
SetRegoObjects pulls opa obj from git and stores in gitregostore