-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathREADME.md.gotmpl
66 lines (40 loc) · 1.89 KB
/
README.md.gotmpl
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
54
55
56
57
58
59
60
61
62
63
64
65
66
# {{ template "chart.name" . }}
{{ template "chart.description" . }}
{{ template "chart.maintainersSection" . }}
## Prerequisites
* Helm 3+
{{ template "chart.requirementsSection" . }}
## Add repository
```console
helm repo add opencti https://devops-ia.github.io/helm-opencti
helm repo update
```
## Install Helm chart (repository mode)
```console
helm install [RELEASE_NAME] opencti/{{ template "chart.name" . }}
```
This install all the Kubernetes components associated with the chart and creates the release.
_See [helm install](https://helm.sh/docs/helm/helm_install/) for command documentation._
## Install Helm chart (OCI mode)
Charts are also available in OCI format. The list of available charts can be found [here](https://github.com/devops-ia/helm-opencti/pkgs/container/helm-opencti%2Fopencti).
```console
helm install [RELEASE_NAME] oci://ghcr.io/devops-ia/helm-opencti/opencti --version=[version]
```
## Uninstall Helm chart
```console
helm uninstall [RELEASE_NAME]
```
This removes all the Kubernetes components associated with the chart and deletes the release.
_See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall/) for command documentation._
## OpenCTI
* [Environment configuration](https://docs.opencti.io/latest/deployment/configuration/#platform)
* [Connectors](https://github.com/OpenCTI-Platform/connectors/tree/master). Review `docker-compose.yaml` with the properly config
* Check connectors samples on [`connector-examples`](./connector-examples) folder
## Basic installation and examples
See [basic installation](docs/configuration.md) and [examples](docs/examples.md).
## Configuration
See [Customizing the chart before installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with comments:
```console
helm show values opencti/{{ template "chart.name" . }}
```
{{ template "chart.valuesSection" . }}