Skip to content

Commit fa59440

Browse files
committed
chore(valkey-sentinel-proxy): add valkey-sentinel-proxy
1 parent fe95494 commit fa59440

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

scripts/checker.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,12 @@
260260
"owner": "valkey-io",
261261
"match": "^[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$",
262262
},
263+
"valkey-sentinel-proxy": {
264+
"name": "valkey-sentinel-proxy",
265+
"type": "github",
266+
"owner": "drycc-addons",
267+
"match": "^v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$",
268+
},
263269
"registry": {
264270
"name": "distribution",
265271
"type": "github",
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
3+
# Load stack utils
4+
. /usr/bin/stack-utils
5+
6+
# Implement build function
7+
function build() {
8+
generate-stack-path
9+
BIN_DIR="${DATA_DIR}"/bin
10+
mkdir -p "${BIN_DIR}"
11+
curl -fsSL -o "${BIN_DIR}"/"${STACK_NAME}" https://github.com/drycc-addons/valkey-sentinel-proxy/releases/download/v"${STACK_VERSION}"/"${STACK_NAME}"-linux."${OS_ARCH}"
12+
chmod +x "${BIN_DIR}"/"${STACK_NAME}"
13+
}
14+
15+
# call build stack
16+
build-stack "${1}"

0 commit comments

Comments
 (0)