12 lines
160 B
Bash
Executable File
12 lines
160 B
Bash
Executable File
#!/bin/bash -e
|
|
set -o pipefail
|
|
|
|
# TODO: 3
|
|
export NB_REPLICAS=1
|
|
|
|
. ./manifests/bin/deploy.sh
|
|
|
|
if [ "$GITHUB_REF_NAME" = prod ]; then
|
|
kapply prod/ssh.yaml
|
|
fi
|