mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 05:12:54 +00:00
* chore: add fuzz tests with kafka * chore(ci): use minio * chore: add empty line * chore(ci): refactor * chore: add empty line * fix: update config * fix: add default value for `MetaClientOptions` * fix: remove redundant `debug_assert` * chore: run fuzz tests with disk cache * chore: remove redundant minio setup * chore: cache targets * Revert "chore: run fuzz tests with disk cache" This reverts commitd81783187d. * chore: fix typo * chore: apply suggestions from CR * Revert "fix: remove redundant `debug_assert`" This reverts commit09b899eed1.
25 lines
650 B
YAML
25 lines
650 B
YAML
name: Setup Minio cluster
|
|
description: Deploy Minio cluster on Kubernetes
|
|
inputs:
|
|
replicas:
|
|
default: 1
|
|
description: "replicas"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Etcd cluster
|
|
shell: bash
|
|
run: |
|
|
helm repo add minio https://charts.min.io/
|
|
helm upgrade --install minio \
|
|
--set resources.requests.memory=128Mi \
|
|
--set replicas=${{ inputs.replicas }} \
|
|
--set mode=standalone \
|
|
--set rootUser=rootuser,rootPassword=rootpass123 \
|
|
--set buckets[0].name=default \
|
|
--set service.port=80,service.targetPort=9000 \
|
|
minio/minio \
|
|
--create-namespace \
|
|
-n minio
|