Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ Committing with `git commit -s` will add the sign-off at the end of the commit m
- Maximilian Dorner <maximilian.dorner@clever-soft.com>
- Boris Shek <boris.shek@iteratec.com>
- Kamiren Dawkins <kamiren@dawkins.dev>
- Tobias Stenby Brixen <kind.job1347@fastmail.com>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ path: "docs/auto-discovery/service-auto-discovery"
sidebar_position: 2
---

The Service AutoDiscovery will create a 'ScheduledScan` with the given parameters (see [readme](https://github.com/secureCodeBox/secureCodeBox/blob/main/auto-discovery/kubernetes/README.md) for config options) for each Kubernetes `Service` it detects.
The Service AutoDiscovery will create a `ScheduledScan` with the given parameters (see [readme](https://github.com/secureCodeBox/secureCodeBox/blob/main/auto-discovery/kubernetes/README.md) for config options) for each Kubernetes `Service` it detects.

The Service AutoDiscovery will ignore services where the underlying pods do not serve http(s). It does this by checking for open ports `80, 443, 3000, 5000, 8000, 8443, 8080`. It is also sufficient to name the ports `http` or `https` when a different port is used than the ports specified above.
Services without a matching port number or name are currently ignored.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# SPDX-License-Identifier: Apache-2.0

title: README.md And .helm-docs.gotmpl
title: README.md and .helm-docs.gotmpl
sidebar_position: 7
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This directory contains the parser for your scanner to transform the results of

## Dockerfile

For the parser we use multi-stage builds (see: [Multi-Stage Builds](https://www.docker.com/blog/multi-stage-builds/))
For the parser we use multi-stage builds (see: [Multi-Stage Builds](https://www.docker.com/blog/multi-stage-builds/)).
For our JavaScript Parser SDK the Dockerfile should look like this:

```dockerfile
Expand All @@ -29,7 +29,7 @@ COPY --chown=app:app ./parser.js ./parser.js
```

If your parser does not require any external dependencies, A multi-stage build is not needed.
Instead, A simpler Dockerfile can be used.
Instead, a simpler Dockerfile can be used.

```dockerfile
ARG namespace
Expand Down Expand Up @@ -69,7 +69,7 @@ Your `package.json` should look something like this:

### Install The Dependencies

If you need additional dependencies you can install them via `npm install`
If you need additional dependencies you can install them via `npm install`.

### Write Your Parser

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# SPDX-License-Identifier: Apache-2.0

title: README.md And .helm-docs.gotmpl
title: README.md and .helm-docs.gotmpl
sidebar_position: 9
---

Expand Down