Skip to content

Commit

Permalink
Add Helm Render and Common Resolver Checkmarx#2426 (Checkmarx#2348)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoReigota1 authored Mar 24, 2021
1 parent cd90a54 commit 412247d
Show file tree
Hide file tree
Showing 37 changed files with 2,206 additions and 94 deletions.
1 change: 1 addition & 0 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
uses: golangci/[email protected]
with:
version: v1.37
args: --timeout 2m --skip-dirs assets,docs
skip-go-installation: true
go-generate:
name: go-generate
Expand Down
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,26 @@ Find security vulnerabilities, compliance issues, and infrastructure misconfigur

#### Supported Platforms

<img alt="Terraform" src="docs/img/logo-terraform.png" width="150">&nbsp;&nbsp;&nbsp;<img alt="Kubernetes" src="docs/img/logo-k8s.png" width="150">&nbsp;&nbsp;&nbsp;<img alt="Docker" src="docs/img/logo-docker.png" width="150">&nbsp;&nbsp;&nbsp;<img alt="CloudFormation" src="docs/img/logo-cf.png" width="150">&nbsp;&nbsp;&nbsp;<img alt="Ansible" src="docs/img/logo-ansible.png" width="150">
<div style="display:flex;flex:1;flex-wrap:wrap;align-items:center;justify-content:center">
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Terraform" src="docs/img/logo-terraform.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Kubernetes" src="docs/img/logo-k8s.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Docker" src="docs/img/logo-docker.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="CloudFormation" src="docs/img/logo-cf.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Ansible" src="docs/img/logo-ansible.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Helm" src="docs/img/logo-helm.png" style="min-width:110px;width:110px;height:101px">&nbsp;&nbsp;&nbsp;
</div>
</div>

Support of other solutions and additional cloud providers are on the [roadmap](docs/roadmap.md).

Expand Down
Binary file added docs/img/logo-helm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 20 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,26 @@

KICS scans and detects issues in following Infrastructure as Code solutions:

<img alt="Terraform" src="img/logo-terraform.png" width="150">&nbsp;&nbsp;&nbsp;
<img alt="Kubernetes" src="img/logo-k8s.png" width="150">&nbsp;&nbsp;&nbsp;
<img alt="Docker" src="img/logo-docker.png" width="150">&nbsp;&nbsp;&nbsp;
<img alt="CloudFormation" src="img/logo-cf.png" width="150">&nbsp;&nbsp;&nbsp;
<img alt="Ansible" src="img/logo-ansible.png" width="150">
<div style="display:flex;flex:1;flex-wrap:wrap;align-items:center;justify-content:center">
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Terraform" src="img/logo-terraform.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Kubernetes" src="img/logo-k8s.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Docker" src="img/logo-docker.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="CloudFormation" src="img/logo-cf.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Ansible" src="img/logo-ansible.png" width="150" style="min-width:150px">&nbsp;&nbsp;&nbsp;
</div>
<div style="min-width:150;flex:0 0 25%;display:flex;align-items:center;justify-content:center;margin:8px">
<img alt="Helm" src="img/logo-helm.png" style="min-width:110px;width:110px;height:101px">&nbsp;&nbsp;&nbsp;
</div>
</div>

Support of other solutions, such as Chef, and of additional cloud providers are on the [roadmap](roadmap.md).

Expand Down
7 changes: 5 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.16
require (
github.com/BurntSushi/toml v0.3.1
github.com/agnivade/levenshtein v1.1.0
github.com/containerd/containerd v1.4.4 // indirect
github.com/getsentry/sentry-go v0.10.0
github.com/golang/mock v1.5.0
github.com/google/go-cmp v0.5.3 // indirect
Expand All @@ -13,6 +14,7 @@ require (
github.com/hashicorp/hcl v1.0.0
github.com/hashicorp/hcl/v2 v2.9.1
github.com/mailru/easyjson v0.7.7
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/moby/buildkit v0.8.2
github.com/open-policy-agent/opa v0.27.1
github.com/pelletier/go-toml v1.8.1 // indirect
Expand All @@ -26,8 +28,9 @@ require (
github.com/zclconf/go-cty v1.8.1
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
helm.sh/helm/v3 v3.5.3
)

replace github.com/containerd/containerd => github.com/containerd/containerd v1.3.1-0.20200227195959-4d242818bf55

replace github.com/docker/docker => github.com/docker/docker v1.4.2-0.20200227233006-38f52c9fec82

replace github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
Loading

0 comments on commit 412247d

Please sign in to comment.