Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: storageClass typo #7

Merged
merged 1 commit into from
Mar 8, 2024
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
2 changes: 1 addition & 1 deletion charts/keep/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: keep
version: 0.0.1
version: 0.0.2
description: Keep Helm Chart
type: application
icon: https://platform.keephq.dev/_next/image?url=%2Fkeep.png&w=48&q=75
Expand Down
7 changes: 3 additions & 4 deletions charts/keep/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# keep

![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.1](https://img.shields.io/badge/AppVersion-0.2.1-informational?style=flat-square)
![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.1](https://img.shields.io/badge/AppVersion-0.2.1-informational?style=flat-square)

Keep Helm Chart

Expand All @@ -10,13 +10,12 @@ Keep Helm Chart

| Name | Email | Url |
| ---- | ------ | --- |
| Denis Tu | <[email protected]> | <https://github.com/DmarshalTU> |
| Shahar Glazner | <[email protected]> | <https://github.com/shahargl> |
| Tal Borenstein | <[email protected]> | <https://github.com/talboren> |

## Source Code

* <https://github.com/keephq/keep>
* <https://github.com/keephq/helm-charts>

## Values

Expand Down Expand Up @@ -95,7 +94,7 @@ Keep Helm Chart
| database.service.port | int | `3306` | |
| database.service.type | string | `"ClusterIP"` | |
| database.size | string | `"5Gi"` | |
| database.storageClasss | string | `""` | |
| database.storageClass | string | `""` | |
| database.tolerations | list | `[]` | |
| frontend.affinity | object | `{}` | |
| frontend.autoscaling.enabled | bool | `false` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/keep/templates/keep-db-pv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: {{ .Values.database.storageClasss }}
storageClassName: {{ .Values.database.storageClass }}
hostPath:
path: "/var/lib/mysql"
{{- end }}
2 changes: 1 addition & 1 deletion charts/keep/templates/keep-db-pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
accessModes:
- ReadWriteOnce
storageClassName: {{ .Values.database.storageClasss }}
storageClassName: {{ .Values.database.storageClass }}
resources:
requests:
storage: 5Gi
Expand Down
2 changes: 1 addition & 1 deletion charts/keep/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,14 @@
enabled: true
replicaCount: 1
size: 5Gi
storageClasss: ""
storageClass: ""
image:
repository: mysql
pullPolicy: IfNotPresent
tag: "latest"
env:
- name: MYSQL_ALLOW_EMPTY_PASSWORD
value: yes

Check warning on line 198 in charts/keep/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

198:14 [truthy] truthy value should be one of [false, true]
- name: MYSQL_DATABASE
value: keep
- name: MYSQL_PASSWORD
Expand Down
Loading