#!/usr/bin/env bash # Redis for this overlay: cache and broker (Celery), no persistence. # Notes: ../README.md set -euo pipefail cd "${RIG_CTRL:?run it through rig: bash ctrl/addons.sh install}" source ./lib/config.sh load_config K="kubectl --context ${KUBECONTEXT}" NS="${DATA_NAMESPACE:-data}" $K get namespace "$NS" >/dev/null 2>&1 || $K create namespace "$NS" echo " applying manifests" $K apply -n "$NS" -f - >/dev/null <