Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into joroshiba/full-fix-celestia-local
Browse files Browse the repository at this point in the history
  • Loading branch information
joroshiba authored Jan 18, 2024
2 parents f4dbbc0 + 3f1f45e commit 83cb8ae
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/celestia-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.8
version: 0.1.9

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/celestia-node/templates/storageclasses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: {{ $label }}-{{ $value.persistentVolumeName }}-local
name: {{ $label }}-{{ $key }}-local
provisioner: kubernetes.io/no-provisioner
volumeBindingMode: WaitForFirstConsumer
reclaimPolicy: Retain
Expand Down
8 changes: 4 additions & 4 deletions charts/celestia-node/templates/volumes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
apiVersion: v1
kind: PersistentVolume
metadata:
name: {{ $label }}-{{ $value.persistentVolumeName }}-pv
name: {{ $label }}-{{ $key }}-pvc
spec:
capacity:
storage: {{ $value.size }}
volumeMode: Filesystem
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: {{ $label }}-{{ $value.persistentVolumeName }}-local
storageClassName: {{ $label }}-{{ $key }}-local
local:
path: {{ tpl $value.path . }}
nodeAffinity:
Expand All @@ -32,15 +32,15 @@ spec:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: {{ $label }}-{{ $value.persistentVolumeName }}-pvc
name: {{ $label }}-{{ $key }}-pvc
namespace: {{ $.Values.global.namespace }}
labels:
"app.kubernetes.io/name": "{{ $label }}-{{ $.Chart.Name }}"
"app.kubernetes.io/managed-by": {{ $.Release.Service | quote }}
"helm.sh/chart": {{ $.Chart.Name }}-{{ $.Chart.Version | replace "+" "_" }}
spec:
{{- if $.Values.storage.local }}
storageClassName: {{ $label }}-{{ $value.persistentVolumeName }}-local
storageClassName: {{ $label }}-{{ $key }}-local
{{- end }}
{{- if $value.storageClassName }}
storageClassName: {{ $value.storageClassName }}
Expand Down
6 changes: 3 additions & 3 deletions charts/rollup/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: celestia-node
repository: file://../celestia-node
version: 0.1.8
digest: sha256:8159c18b94a3aabb6e5a8e5d5d9b3aaf9cced52bbfb43a13d329ced7923cee5b
generated: "2024-01-11T16:04:54.603636-08:00"
version: 0.1.9
digest: sha256:856642db770b3a297f86abcf5973ee3308dfbd9dced29b4067ad138683d883b1
generated: "2024-01-16T14:40:15.623528-08:00"
4 changes: 2 additions & 2 deletions charts/rollup/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.8.3
version: 0.8.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -25,7 +25,7 @@ appVersion: "0.5.2"

dependencies:
- name: celestia-node
version: "0.1.8"
version: "0.1.9"
repository: "file://../celestia-node"
condition: celestia-node.enabled

Expand Down
Binary file removed charts/rollup/charts/celestia-node-0.1.8.tgz
Binary file not shown.
Binary file added charts/rollup/charts/celestia-node-0.1.9.tgz
Binary file not shown.

0 comments on commit 83cb8ae

Please sign in to comment.