From 4a2675b8906d6bb4321bb708def0e73ae21d7190 Mon Sep 17 00:00:00 2001 From: sonicaj Date: Sun, 17 Oct 2021 20:31:16 +0500 Subject: [PATCH] Update stable train from test train --- charts/minio/1.4.0/.helmignore | 23 ++ charts/minio/1.4.0/Chart.yaml | 19 ++ charts/minio/1.4.0/README.md | 48 ++++ charts/minio/1.4.0/app-readme.md | 1 + charts/minio/1.4.0/charts/common-2105.0.0.tgz | Bin 0 -> 4289 bytes charts/minio/1.4.0/default_values.yaml | 22 ++ charts/minio/1.4.0/ix_values.yaml | 4 + .../minio/1.4.0/migrations/migrate_from_1.0.0 | 28 ++ charts/minio/1.4.0/questions.yaml | 251 ++++++++++++++++++ charts/minio/1.4.0/requirements.lock | 6 + charts/minio/1.4.0/templates/NOTES.txt | 2 + charts/minio/1.4.0/templates/_cert.tpl | 33 +++ charts/minio/1.4.0/templates/_helpers.tpl | 77 ++++++ charts/minio/1.4.0/templates/configmap.yaml | 6 + charts/minio/1.4.0/templates/deployment.yaml | 66 +++++ charts/minio/1.4.0/templates/secrets.yaml | 13 + charts/minio/1.4.0/templates/service.yaml | 11 + .../minio/1.4.0/templates/serviceaccount.yaml | 1 + charts/minio/1.4.0/test_values.yaml | 21 ++ charts/minio/1.4.0/values.yaml | 0 20 files changed, 632 insertions(+) create mode 100644 charts/minio/1.4.0/.helmignore create mode 100644 charts/minio/1.4.0/Chart.yaml create mode 100755 charts/minio/1.4.0/README.md create mode 100644 charts/minio/1.4.0/app-readme.md create mode 100644 charts/minio/1.4.0/charts/common-2105.0.0.tgz create mode 100644 charts/minio/1.4.0/default_values.yaml create mode 100644 charts/minio/1.4.0/ix_values.yaml create mode 100755 charts/minio/1.4.0/migrations/migrate_from_1.0.0 create mode 100644 charts/minio/1.4.0/questions.yaml create mode 100644 charts/minio/1.4.0/requirements.lock create mode 100644 charts/minio/1.4.0/templates/NOTES.txt create mode 100644 charts/minio/1.4.0/templates/_cert.tpl create mode 100644 charts/minio/1.4.0/templates/_helpers.tpl create mode 100644 charts/minio/1.4.0/templates/configmap.yaml create mode 100644 charts/minio/1.4.0/templates/deployment.yaml create mode 100644 charts/minio/1.4.0/templates/secrets.yaml create mode 100644 charts/minio/1.4.0/templates/service.yaml create mode 100644 charts/minio/1.4.0/templates/serviceaccount.yaml create mode 100644 charts/minio/1.4.0/test_values.yaml create mode 100644 charts/minio/1.4.0/values.yaml diff --git a/charts/minio/1.4.0/.helmignore b/charts/minio/1.4.0/.helmignore new file mode 100644 index 0000000000..a9fe727881 --- /dev/null +++ b/charts/minio/1.4.0/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +# OWNERS file for Kubernetes +OWNERS \ No newline at end of file diff --git a/charts/minio/1.4.0/Chart.yaml b/charts/minio/1.4.0/Chart.yaml new file mode 100644 index 0000000000..bce7d32218 --- /dev/null +++ b/charts/minio/1.4.0/Chart.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +appVersion: '2021-10-02' +dependencies: +- name: common + repository: file://../../../library/common/2105.0.0 + version: 2105.0.0 +description: High Performance, Kubernetes Native Object Storage +home: https://min.io +icon: https://min.io/resources/img/logo/MINIO_wordmark.png +keywords: +- storage +- object-storage +- S3 +name: minio +sources: +- https://github.com/minio/minio +- https://github.com/minio/charts +upstream_version: 8.0.5 +version: 1.4.0 diff --git a/charts/minio/1.4.0/README.md b/charts/minio/1.4.0/README.md new file mode 100755 index 0000000000..e1eaee7605 --- /dev/null +++ b/charts/minio/1.4.0/README.md @@ -0,0 +1,48 @@ +MinIO +===== + +[MinIO](https://min.io) is a High Performance Object Storage released under Apache License v2.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads. + +MinIO supports [distributed mode](https://docs.minio.io/docs/distributed-minio-quickstart-guide). In distributed mode, you can pool multiple drives (even on different machines) into a single object storage server. + +For more detailed documentation please visit [here](https://docs.minio.io/) + +Introduction +------------ + +This chart bootstraps MinIO deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. + + +Configuration +------------- + +The following table lists the configurable parameters of the MinIO chart and their default values. + +| Parameter | Description | Default | +|:-------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------| +| `image.repository` | Image repository | `minio/minio` | +| `image.tag` | MinIO image tag. Possible values listed [here](https://hub.docker.com/r/minio/minio/tags/). | `RELEASE.2020-11-06T23-17-07Z` | +| `image.pullPolicy` | Image pull policy | `IfNotPresent` | +| `extraArgs` | Additional command line arguments to pass to the MinIO server | `[]` | +| `accessKey` | Default access key (5 to 20 characters) | random 20 chars | +| `secretKey` | Default secret key (8 to 40 characters) | random 40 chars | +| `persistence.enabled` | Use persistent volume to store data | `true` | +| `persistence.size` | Size of persistent volume claim | `500Gi` | +| `persistence.existingClaim` | Use an existing PVC to persist data | `nil` | +| `persistence.storageClass` | Storage class name of PVC | `nil` | +| `persistence.accessMode` | ReadWriteOnce or ReadOnly | `ReadWriteOnce` | +| `persistence.subPath` | Mount a sub directory of the persistent volume if set | `""` | +| `environment` | Set MinIO server relevant environment variables in `values.yaml` file. MinIO containers will be passed these variables when they start. | `MINIO_STORAGE_CLASS_STANDARD: EC:4"` | + +Some parameters above map to the env variables defined in the [MinIO DockerHub image](https://hub.docker.com/r/minio/minio/). + +Pass environment variables to MinIO containers +---------------------------------------------- + +To pass environment variables to MinIO containers when deploying via Helm chart, use the below command line format + +```bash +$ helm install --set environment.MINIO_BROWSER=on,environment.MINIO_DOMAIN=domain-name minio/minio +``` + +You can add as many environment variables as required, using the above format. Just add `environment.=` under `set` flag. diff --git a/charts/minio/1.4.0/app-readme.md b/charts/minio/1.4.0/app-readme.md new file mode 100644 index 0000000000..246e247c39 --- /dev/null +++ b/charts/minio/1.4.0/app-readme.md @@ -0,0 +1 @@ +[MinIO](https://min.io) is a High Performance Object Storage released under Apache License v2.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads. diff --git a/charts/minio/1.4.0/charts/common-2105.0.0.tgz b/charts/minio/1.4.0/charts/common-2105.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..6a406ffcec6572d62ae8c6dc3738a211b22477c3 GIT binary patch literal 4289 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 j2w<*7