aboutsummaryrefslogtreecommitdiff
path: root/k8s/charts
AgeCommit message (Collapse)AuthorFilesLines
2024-08-07Add volume-resize-hook (#5868)Andrei Kvapil2-0/+119
2024-08-05Add: COSI BucketClass and BucketAccessClass (#5863)Andrei Kvapil2-0/+17
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-08-05Fix: Resolve conflicts for deployment in diferent namespaces (#5862)Andrei Kvapil5-10/+10
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-08-02Fix secretName for seaweedfs-cosi-driver (#5850)Andrei Kvapil1-1/+1
2024-08-01Update COSI driver v0.1.1 (#5845)Andrei Kvapil3-2/+10
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-07-31Add seaweedfs-cosi-driver (#5843)Andrei Kvapil4-0/+303
add: seaweedfs-cosi-driver Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-07-29fix case for keyAlgorithm in Helm chart (#5835)Andrei Kvapil1-1/+1
fix keyAlgorithm in Helm chart Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-07-213.713.71chrislu1-1/+1
2024-07-213.70chrislu1-1/+1
2024-07-11helm: restart filer when the s3-configuration changes (#5768)Gregor Tudan1-2/+8
Restarts the filer when the s3-config inside the secret (existing or generated) changes
2024-06-303.69chrislu1-1/+1
2024-06-29[Helm chart] Remove createClusterRole dependency from serviceAccount usage ↵Reddysekhar Gaduputi3-3/+3
from filer statefulset (#5724) * Remove createClusterRole dependency from serviceAccount usage from filer statefulset * Add automountServiceAccountToken option for service account.
2024-06-27Move cluster role to a separate template. (#5721)Gregor Tudan2-37/+36
Move cluster role to a separate template, to allow disabling it without breaking the service account
2024-06-27Helm-Chart: clean up image handling (#5720)Gregor Tudan2-43/+15
Clean up the image computation to make it consistent with the values file
2024-06-19add dev notechrislu1-0/+1
2024-06-17fix #5681 convert all resources parameters to maps instead of strings (#5689)JesseBot6-13/+13
2024-06-093.683.68chrislu1-2/+2
2024-06-07Allow defining labels and annotations per component (#5657)Salah Al Saleh5-0/+48
2024-06-06Allow using a PVC to store filer and master logs (#5653)Salah Al Saleh2-4/+4
2024-05-23increase helm chart version to include the emptyDir storage feature (#5613)Tomer Eskenazi1-1/+1
2024-05-22Helm: Fix warning when providing resource requests/limits for S3 (#5611)Johnny Cederholm1-1/+1
2024-05-22helm chart - add support for emptyDir storage type (#5610)Tomer Eskenazi5-13/+72
2024-05-17Add ability to configure security context for the different components (#5600)Johnny Cederholm6-0/+106
2024-05-14Update the Grafana panels using the to the new time series (#5595)Gregor Tudan1-1395/+1731
2024-05-14Helm: Fix warning when rendering with secretExtraEnvVars set (#5594)Gregor Tudan1-1/+1
2024-05-14Helm: Allow adding additional labels to the service monitors (#5593)Gregor Tudan5-0/+13
2024-05-13Allow selecting the namespace visualized by the grafana dashboard (#5591)Gregor Tudan1-43/+71
2024-05-13Replace hardcoded datasource uids in the grafana dashboard (#5590)Gregor Tudan1-16/+36
2024-05-13Helm-Chart: Make MySQL credentials optional (#5583)Gregor Tudan1-0/+2
2024-05-073.673.67chrislu1-2/+2
2024-05-053.663.66chrislu1-2/+2
2024-04-28helm: Fix annotations parameters to be standard maps (#5543)helm-3.65.1JesseBot5-10/+10
2024-04-143.653.65chrislu1-2/+2
2024-04-14chore: fix some typos in comments (#5497)yudrywet2-3/+3
2024-04-03helm chart: make s3 ingress annotations consistent (#5463)mergwyn2-3/+3
Make s3 ingress annotations consistent
2024-04-03Correct type for volume logs and idx values (#5462)mergwyn1-2/+2
Correct type for volume logs and idx values (#1) Empty values now correctly set to {}
2024-03-17Helm chart readme - clarify details about multiple filers and datastore (#5384)Tomer Eskenazi1-3/+3
2024-03-163.643.64chrislu1-2/+2
2024-02-253.633.63chrislu1-2/+2
2024-02-22k8s-chart-helm: unify extraEnvironmentVars (#5327)Sébastien5-4/+59
2024-02-14Fix/s3 config secret (#5302)spastorclovr4-9/+7
2024-01-30helm using external master address (#5267)cuisongliu3-2/+3
using external master address
2024-01-30helm enable resource for template (#5268)cuisongliu12-6/+30
enable resource for template
2024-01-30fix helm install error for No such file or directory (#5250)cuisongliu2-18/+18
* weed/shell: Cluster check other disk types (#5245) * week/shell: Cluster check other disk types The `cluster.check` command only took the empty (`""`) and `hdd` disk types into consideration, but a cluster with only `ssd` or `nvme` disk types would be equally valid. This commit simply checks that _any_ disk type is defined, and that some volumes are available for it. Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> * weed/shell: Replace loop that copies slice Use the following construct instead of a `for` loop: ```golang x = append(x, y...) ``` See https://staticcheck.dev/docs/checks#S1011. Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> * weed/shell: Check disk types when filer is in use Filer stores its metadata logs in generic (i.e. `""`) or HDD disk type volumes, so make sure those disk types exist and have volumes associated with them when Filer is deployed in the cluster. Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> --------- Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> * weed/shell: Cluster check other disk types (#5245) * week/shell: Cluster check other disk types The `cluster.check` command only took the empty (`""`) and `hdd` disk types into consideration, but a cluster with only `ssd` or `nvme` disk types would be equally valid. This commit simply checks that _any_ disk type is defined, and that some volumes are available for it. Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> * weed/shell: Replace loop that copies slice Use the following construct instead of a `for` loop: ```golang x = append(x, y...) ``` See https://staticcheck.dev/docs/checks#S1011. Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> * weed/shell: Check disk types when filer is in use Filer stores its metadata logs in generic (i.e. `""`) or HDD disk type volumes, so make sure those disk types exist and have volumes associated with them when Filer is deployed in the cluster. Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> --------- Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> * fix helm install error for No such file or directory --------- Signed-off-by: Benoît Knecht <bknecht@protonmail.ch> Co-authored-by: Benoît Knecht <bknecht@protonmail.ch>
2024-01-29Fix/bad mount path better default value (#5253)spastorclovr2-16/+26
2024-01-24Enable multiple disks per volume server. Also streamline the use of /logs & ↵spastorclovr3-70/+88
/idx (#5236) * Enable multiple disks per volume server. Also streamline the use of /logs and /idx * missing file * add loop around volume mounts for initContainers * remove uneeded name for idx
2024-01-16Fix(k8s-chart-helm): `helm upgrade` statefulset error (#5207)Sébastien3-3/+0
2024-01-153.623.62chrislu1-2/+2
2024-01-083.613.61chrislu1-2/+2
2024-01-013.603.60chrislu1-2/+2