mirror of https://github.com/easzlab/kubeasz.git
12 lines
158 B
Bash
12 lines
158 B
Bash
|
#!/bin/sh
|
||
|
set -x
|
||
|
|
||
|
ROOT=$(cd `dirname $0`; pwd)
|
||
|
cd $ROOT
|
||
|
|
||
|
helm install redis \
|
||
|
--create-namespace \
|
||
|
--namespace dependency \
|
||
|
-f ./values.yaml \
|
||
|
./redis-ha
|