-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy path.helm-docs.gotmpl
More file actions
53 lines (40 loc) · 1.47 KB
/
.helm-docs.gotmpl
File metadata and controls
53 lines (40 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{{- /*
SPDX-FileCopyrightText: the secureCodeBox authors
SPDX-License-Identifier: Apache-2.0
*/ -}}
{{- define "extra.docsSection" -}}
---
title: "secreCodeBox Operator"
category: "core"
type: "Operator"
state: "released"
appVersion: "{{ template "chart.appVersion" . }}"
usecase: "secureCodeBox Operator is the core component."
---

{{- end }}
{{- define "extra.dockerDeploymentSection" -}}
## Supported Tags
- `latest` (represents the latest stable release build)
- tagged releases, e.g. `3.0.0`, `2.9.0`, `2.8.0`, `2.7.0`
{{- end }}
{{- define "extra.chartAboutSection" -}}
## What is secureCodeBox Operator?
The secureCodeBox operator is running on Kubernetes and is the core component of the complete secureCodeBox stack, responsible for managing all scans and resources.
**Homepage:** <https://www.securecodebox.io/docs/getting-started/installation>
{{- end }}
{{- define "extra.scannerConfigurationSection" -}}{{- end }}
{{- define "extra.chartConfigurationSection" -}}
## Deployment
The secureCodeBox Operator can be deployed via helm:
```bash
# Add the secureCodeBox Helm Repo
helm repo add secureCodeBox https://charts.securecodebox.io
# Create a new namespace for the secureCodeBox Operator
kubectl create namespace securecodebox-system
# Install the Operator & CRDs
helm install securecodebox-operator oci://ghcr.io/securecodebox/helm/operator
```
{{- end }}
{{- define "extra.scannerLinksSection" -}}
{{- end }}