From 2f3871ba7d123da966669dbca89232bd392c8ecb Mon Sep 17 00:00:00 2001 From: xeniape Date: Mon, 17 Mar 2025 15:05:28 +0100 Subject: [PATCH] chore: fix minion install command in template --- docs/modules/hive/examples/getting_started/getting_started.sh | 4 ++-- .../hive/examples/getting_started/getting_started.sh.j2 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/modules/hive/examples/getting_started/getting_started.sh b/docs/modules/hive/examples/getting_started/getting_started.sh index 6a70acf4..5f412fdc 100755 --- a/docs/modules/hive/examples/getting_started/getting_started.sh +++ b/docs/modules/hive/examples/getting_started/getting_started.sh @@ -47,8 +47,8 @@ helm install minio \ --set mode=standalone \ --set replicas=1 \ --set persistence.enabled=false \ - --set buckets[0].name=hive,buckets[0].policy=none \ - --set users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite \ + --set "buckets[0].name=hive,buckets[0].policy=none" \ + --set "users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite" \ --set resources.requests.memory=1Gi \ --set service.type=NodePort,service.nodePort=null \ --set consoleService.type=NodePort,consoleService.nodePort=null \ diff --git a/docs/modules/hive/examples/getting_started/getting_started.sh.j2 b/docs/modules/hive/examples/getting_started/getting_started.sh.j2 index 556cd13d..092944c7 100755 --- a/docs/modules/hive/examples/getting_started/getting_started.sh.j2 +++ b/docs/modules/hive/examples/getting_started/getting_started.sh.j2 @@ -47,8 +47,8 @@ helm install minio \ --set mode=standalone \ --set replicas=1 \ --set persistence.enabled=false \ - --set buckets[0].name=hive,buckets[0].policy=none \ - --set users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite \ + --set "buckets[0].name=hive,buckets[0].policy=none" \ + --set "users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite" \ --set resources.requests.memory=1Gi \ --set service.type=NodePort,service.nodePort=null \ --set consoleService.type=NodePort,consoleService.nodePort=null \