Skip to content

Commit 1347872

Browse files
authored
12 more docs (#14)
* #12 add sym link to readme.md * #12 set correct depth of link * #12 bump ver * #12 update helm-docs, remove README.md file * use auto generated README.md * #12 switch from anchore -> trivy to get appropriate cat levels instead of ERROR
1 parent 0e515d7 commit 1347872

File tree

4 files changed

+37
-10
lines changed

4 files changed

+37
-10
lines changed

.github/helm-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export PATH="./.bin:$PATH"
66
set -euxo pipefail
77

88
# renovate: datasource=github-releases depName=helm-docs lookupName=norwoodj/helm-docs
9-
HELM_DOCS_VERSION=1.5.0
9+
HELM_DOCS_VERSION=1.7.0
1010

1111
# install helm-docs
1212
curl --silent --show-error --fail --location --output /tmp/helm-docs.tar.gz https://github.com/norwoodj/helm-docs/releases/download/v"${HELM_DOCS_VERSION}"/helm-docs_"${HELM_DOCS_VERSION}"_Linux_x86_64.tar.gz
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
name: Anchore Container Scan
2+
name: Container Scan
33
on:
44
push:
55
branches: [ main ]
@@ -15,13 +15,14 @@ jobs:
1515
uses: actions/checkout@v2
1616
- name: Build the Docker image
1717
run: docker build . --file Dockerfile --tag localbuild/testimage:latest
18-
- name: Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled
19-
uses: anchore/scan-action@b08527d5ae7f7dc76f9621edb6e49eaf47933ccd
18+
- name: Scan image
19+
id: scan
20+
uses: aquasecurity/trivy-action@master
2021
with:
21-
image: "localbuild/testimage:latest"
22-
acs-report-enable: true
23-
fail-build: false
24-
- name: Upload Anchore Scan Report
22+
image-ref: localbuild/testimage:latest
23+
format: 'sarif'
24+
output: 'scan-results.sarif'
25+
- name: Upload Container Scan SARIF report
2526
uses: github/codeql-action/upload-sarif@v1
2627
with:
27-
sarif_file: results.sarif
28+
sarif_file: 'scan-results.sarif'

charts/k8s-dev-pod/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: k8s-dev-pod
33
description: A Helm chart for deploying a dev environment inside a K8S cluster that is compatible with Visual Studio Code remote targets
44
type: application
5-
version: 0.1.8
5+
version: 0.1.9
66
appVersion: "0.1.0"
77
maintainers:
88
- name: Bryopsida

charts/k8s-dev-pod/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# k8s-dev-pod
2+
3+
![Version: 0.1.9](https://img.shields.io/badge/Version-0.1.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)
4+
5+
A Helm chart for deploying a dev environment inside a K8S cluster that is compatible with Visual Studio Code remote targets
6+
7+
## Maintainers
8+
9+
| Name | Email | Url |
10+
| ---- | ------ | --- |
11+
| Bryopsida | | |
12+
13+
## Values
14+
15+
| Key | Type | Default | Description |
16+
|-----|------|---------|-------------|
17+
| homeSize | int | `20` | |
18+
| image.pullPolicy | string | `"Always"` | |
19+
| image.repo | string | `"ghcr.io/bryopsida/k8s-dev-pod"` | |
20+
| image.tag | string | `"main"` | |
21+
| ingressEnabled | bool | `false` | |
22+
| ingressPort | int | `3022` | |
23+
| passwordLoginEnabled | bool | `true` | |
24+
25+
----------------------------------------------
26+
Autogenerated from chart metadata using [helm-docs v1.7.0](https://github.com/norwoodj/helm-docs/releases/v1.7.0)

0 commit comments

Comments
 (0)