Skip to content

Commit

Permalink
fix: fix storageClass typo (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
pehlicd authored Mar 8, 2024
1 parent bd5f3e8 commit 8ee82d4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
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,7 +188,7 @@ database:
enabled: true
replicaCount: 1
size: 5Gi
storageClasss: ""
storageClass: ""
image:
repository: mysql
pullPolicy: IfNotPresent
Expand Down

0 comments on commit 8ee82d4

Please sign in to comment.