Skip to content

Commit

Permalink
Merge pull request #35 from foomo/mount-path
Browse files Browse the repository at this point in the history
fix: mount path
  • Loading branch information
franklinkim authored Oct 28, 2024
2 parents 4270930 + 9fccfa1 commit 4b29293
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions charts/squadron-keel-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ annotations:
- name: Chart Source
url: https://github.com/foomo/helm-charts
version: 0.1.10
appVersion: 0.1.10
version: 0.1.11
appVersion: 0.1.11
4 changes: 2 additions & 2 deletions charts/squadron-keel-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# squadron-keel-server

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

Squadron Keel Server Chart

Expand Down Expand Up @@ -127,7 +127,7 @@ Squadron Keel Server Chart
|-----|------|---------|-------------|
| persistence.accessMode | string | `"ReadWriteOnce"` | Access mode |
| persistence.enabled | bool | `false` | Indicates wether a pv should be attached or not |
| persistence.mountPath | string | `"/var/lib/cronjob/data"` | Storage mount path |
| persistence.mountPath | string | `"/var/lib/server/data"` | Storage mount path |
| persistence.size | string | `"1Gi"` | Storage size |
| persistence.storageClass | string | `""` | Storage class name |

Expand Down
2 changes: 1 addition & 1 deletion charts/squadron-keel-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@
"type": "boolean"
},
"mountPath": {
"default": "/var/lib/cronjob/data",
"default": "/var/lib/server/data",
"description": "Storage mount path",
"required": [],
"title": "mountPath",
Expand Down
2 changes: 1 addition & 1 deletion charts/squadron-keel-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ persistence:
# @schema
# -- Storage mount path
# @section -- Persistence settings
mountPath: /var/lib/cronjob/data
mountPath: /var/lib/server/data
# @schema
# enum: [ReadWriteOnce, ReadOnlyMany, ReadWriteMany]
# @schema
Expand Down
4 changes: 2 additions & 2 deletions charts/squadron-nextjs-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ annotations:
- name: Chart Source
url: https://github.com/foomo/helm-charts
version: 0.1.4
appVersion: 0.1.4
version: 0.1.5
appVersion: 0.1.5
4 changes: 2 additions & 2 deletions charts/squadron-nextjs-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# squadron-nextjs-server

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

Squadron NextJS Server Chart

Expand Down Expand Up @@ -134,7 +134,7 @@ Squadron NextJS Server Chart
|-----|------|---------|-------------|
| persistence.accessMode | string | `"ReadWriteOnce"` | Access mode |
| persistence.enabled | bool | `false` | Indicates wether a pv should be attached or not |
| persistence.mountPath | string | `"/var/lib/cronjob/data"` | Storage mount path |
| persistence.mountPath | string | `"/var/lib/server/data"` | Storage mount path |
| persistence.size | string | `"1Gi"` | Storage size |
| persistence.storageClass | string | `""` | Storage class name |

Expand Down
2 changes: 1 addition & 1 deletion charts/squadron-nextjs-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@
"type": "boolean"
},
"mountPath": {
"default": "/var/lib/cronjob/data",
"default": "/var/lib/server/data",
"description": "Storage mount path",
"required": [],
"title": "mountPath",
Expand Down
2 changes: 1 addition & 1 deletion charts/squadron-nextjs-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ persistence:
# @schema
# -- Storage mount path
# @section -- Persistence settings
mountPath: /var/lib/cronjob/data
mountPath: /var/lib/server/data
# @schema
# enum: [ReadWriteOnce, ReadOnlyMany, ReadWriteMany]
# @schema
Expand Down

0 comments on commit 4b29293

Please sign in to comment.