Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Added react based html viewer with ability to group and filter (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadinaor authored May 13, 2020
1 parent 1a09bcf commit 1d41329
Show file tree
Hide file tree
Showing 25 changed files with 16,458 additions and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

s**K**an is a tailor made Kubernetes configuration files and resources scanner that enables developers and devops team members to check whether their work is compliant with security & ops best practices.

<img src="img/skan-html-report-secret.png" alt="skan" width="90%"/>
<img src="img/skan-html-report.png" alt="skan" width="90%"/>

# Install s**K**an

Expand All @@ -22,7 +22,6 @@ Or use
$ curl https://raw.githubusercontent.com/alcideio/skan/master/skan-download.sh | bash
```


# s**K**an Kubernetes file

```sh
Expand Down
20 changes: 20 additions & 0 deletions alcide-skan-viewer/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"presets": [
[ "@babel/preset-env", {
"modules": false,
"targets": {
"browsers": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 1 Android version",
"last 1 ChromeAndroid version",
"ie 11"
]
}
} ],
"@babel/preset-react"
],
"plugins": [ "@babel/plugin-proposal-class-properties" ]
}
25 changes: 25 additions & 0 deletions alcide-skan-viewer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/dist

/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
5 changes: 5 additions & 0 deletions alcide-skan-viewer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<img src="https://github.com/alcideio/skan/raw/master/img/skan.png" alt="skan" width="160"/>

###### s**K**an is powered by the [Alcide Advisor](https://www.alcide.io/kubernetes-advisor) scan engine and [Open Policy Agent (OPA)](https://www.openpolicyagent.org)

See [https://github.com/alcideio/skan](https://github.com/alcideio/skan)
Loading

0 comments on commit 1d41329

Please sign in to comment.