☰ 📥 Datalayer Inbounds
- Plane
- Helm
- Terraform
plane up datalayer-inbounds
cat << 'EOF' > /tmp/values.yaml
...
EOF
export RELEASE=datalayer-inbounds
export NAMESPACE=datalayer-inbounds
helm upgrade \
--install $RELEASE \
datalayer/inbounds \
--create-namespace \
--namespace $NAMESPACE \
--values /tmp/values.yaml \
--timeout 10m
cd terraform
...
Check the availability of the Inbounds Pods.
kubectl get pods -n datalayer-inbounds
# NAME READY STATUS RESTARTS AGE
...
Tear down inbounds if needed.
- Plane
- Helm
plane down datalayer-inbounds
export RELEASE=datalayer-inbounds
export NAMESPACE=datalayer-inbounds
helm delete $RELEASE --namespace $NAMESPACE