Compare commits

..

No commits in common. "main" and "archivista-0.8.0" have entirely different histories.

3 changed files with 34 additions and 25 deletions

View File

@ -17,7 +17,7 @@ name: archivista
description: A Helm chart for Archivista description: A Helm chart for Archivista
type: application type: application
version: 0.8.3 version: 0.8.0
keywords: keywords:
- in-toto - in-toto
@ -34,4 +34,4 @@ sources:
maintainers: maintainers:
- name: in-toto - name: in-toto
appVersion: "0.9.2" appVersion: "0.9.0"

View File

@ -12,28 +12,13 @@ to establish connections to each datastore. These environment variables can be a
## Quick Installation ## Quick Installation
Archivista helm charts are hosted by in-toto helm repository.
To add the repository run following command.
```shell
helm repo add in-toto https://in-toto.io/helm-charts
```
If you have already added the repository, run following command to update the
repository.
```shell
helm repo update
```
To install the helm chart with default values run following command. To install the helm chart with default values run following command.
The [Values](#Values) section describes the configuration options for this chart. The [Values](#Values) section describes the configuration options for this chart.
```shell ```shell
helm install archivista in-toto/archivista helm install archivista .
``` ```
## Uninstallation ## Uninstallation
To uninstall the Helm chart run following command. To uninstall the Helm chart run following command.
@ -55,9 +40,33 @@ helm uninstall archivista
## Values ## Values
Run: | Key | Type | Default |
|--- |--- |--- |
```shell | affinity | object | `{}` |
helm show values in-toto/archivista | autoscaling.enabled | bool | `false` |
``` | autoscaling.maxReplicas | int | `10` |
| autoscaling.minReplicas | int | `1` |
| autoscaling.targetCPUUtilizationPercentage | int | `80` |
| deployment.env | list | `[]` |
| fullnameOverride | string | `""` |
| image.pullPolicy | string | `"IfNotPresent"` |
| image.repository | string | `"ghcr.io/testifysec/archivista"` |
| image.tag | string | `"0.1.1"` |
| ingress.annotations | object | `{}` |
| ingress.className | string | `""` |
| ingress.enabled | bool | `true` |
| ingress.hosts[0].host | string | `"archivista.localhost"` |
| ingress.hosts[0].path | string | `"/"` |
| ingress.tls | list | `[]` |
| nameOverride | string | `""` |
| nodeSelector | object | `{}` |
| podAnnotations | object | `{}` |
| podSecurityContext | object | `{}` |
| replicaCount | int | `1` |
| resources | object | `{}` |
| serviceAccount.annotations | object | `{}` |
| serviceAccount.create | bool | `false` |
| serviceAccount.name | string | `""` |
| service.port | int | `8082` |
| service.type | string | `"ClusterIP"` |
| tolerations | list | `[]` |

View File

@ -17,7 +17,7 @@ image:
repository: ghcr.io/in-toto/archivista repository: ghcr.io/in-toto/archivista
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "0.9.2" tag: "0.9.0"
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""