From 2efee57bf37197e3e2939269fee284c528436796 Mon Sep 17 00:00:00 2001 From: chiao Date: Tue, 19 Dec 2023 09:50:51 +0800 Subject: [PATCH] laravel-v0.2.0 --- laravel/Chart.yaml | 4 ++-- laravel/templates/{logs-pv.yaml => host-logs-pv.yaml} | 2 +- laravel/templates/{logs-pvc.yaml => host-logs-pvc.yaml} | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename laravel/templates/{logs-pv.yaml => host-logs-pv.yaml} (86%) rename laravel/templates/{logs-pvc.yaml => host-logs-pvc.yaml} (86%) diff --git a/laravel/Chart.yaml b/laravel/Chart.yaml index f489f57..4c2c3db 100644 --- a/laravel/Chart.yaml +++ b/laravel/Chart.yaml @@ -15,10 +15,10 @@ 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.0 +version: 0.2.0 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "latest" +appVersion: "0.2.0" diff --git a/laravel/templates/logs-pv.yaml b/laravel/templates/host-logs-pv.yaml similarity index 86% rename from laravel/templates/logs-pv.yaml rename to laravel/templates/host-logs-pv.yaml index f863f49..4d12c49 100644 --- a/laravel/templates/logs-pv.yaml +++ b/laravel/templates/host-logs-pv.yaml @@ -7,7 +7,7 @@ spec: accessModes: - ReadWriteOnce capacity: - storage: {{ .Values.logs.capacity }} + storage: {{ .Values.hostLogs.capacity }} hostPath: path: /data/logs/{{ include "laravel.fullname" . }} storageClassName: '' diff --git a/laravel/templates/logs-pvc.yaml b/laravel/templates/host-logs-pvc.yaml similarity index 86% rename from laravel/templates/logs-pvc.yaml rename to laravel/templates/host-logs-pvc.yaml index fb47fba..96fed44 100644 --- a/laravel/templates/logs-pvc.yaml +++ b/laravel/templates/host-logs-pvc.yaml @@ -8,7 +8,7 @@ spec: - ReadWriteOnce resources: requests: - storage: {{ .Values.logs.capacity }} + storage: {{ .Values.hostLogs.capacity }} storageClassName: '' volumeMode: Filesystem volumeName: {{ include "laravel.fullname" . }}