diff options
author | Clement Delafargue <clement.delafargue@fretlink.com> | 2020-06-19 15:39:22 +0200 |
---|---|---|
committer | Clement Delafargue <clement.delafargue@fretlink.com> | 2020-06-22 14:41:16 +0200 |
commit | 96f02eb1f426c16c631598c80bec4bc0e60f75c1 (patch) | |
tree | 36a0cf97bdfea091f673537eef7c5465c97a657c /files | |
parent | f39118d499132f017d7f2ec0944bf673b6deb7e9 (diff) | |
download | ansible-clever-96f02eb1f426c16c631598c80bec4bc0e60f75c1.tar.gz ansible-clever-96f02eb1f426c16c631598c80bec4bc0e60f75c1.tar.zst ansible-clever-96f02eb1f426c16c631598c80bec4bc0e60f75c1.zip |
Add support for scalability configuration
Closes #52
Diffstat (limited to 'files')
-rwxr-xr-x | files/clever-set-scalability.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/files/clever-set-scalability.sh b/files/clever-set-scalability.sh new file mode 100755 index 0000000..34a5a24 --- /dev/null +++ b/files/clever-set-scalability.sh | |||
@@ -0,0 +1,19 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | set -eo pipefail | ||
4 | params=() | ||
5 | if [ -n "$INSTANCES" ]; then | ||
6 | params+=("--instances" "${INSTANCES}") | ||
7 | elif [ -n "$MIN_INSTANCES" ] && [ -n "$MAX_INSTANCES" ]; then | ||
8 | params+=("--min-instances" "${MIN_INSTANCES}") | ||
9 | params+=("--max-instances" "${MAX_INSTANCES}") | ||
10 | |||
11 | fi | ||
12 | if [ -n "$FLAVOR" ]; then | ||
13 | params+=("--flavor" "${FLAVOR}") | ||
14 | elif [ -n "$MIN_FLAVOR" ] && [ -n "$MAX_FLAVOR" ]; then | ||
15 | params+=("--min-flavor" "${MIN_FLAVOR}") | ||
16 | params+=("--max-flavor" "${MAX_FLAVOR}") | ||
17 | fi | ||
18 | |||
19 | clever scale "${params[@]}" | ||