Files
kubeinvaders/entrypoint.sh
2023-01-06 22:57:54 +01:00

15 lines
496 B
Bash

#!/bin/bash
set -m
if [ ! -z "$K8S_TOKEN" ];then
echo 'Found K8S_TOKEN... using K8S_TOKEN instead of TOKEN=$(cat /var/run/secrets/kubernetes.io/serviceaccount/token)'
export TOKEN=$K8S_TOKEN
else
# Source the service account token from the container directly.
export TOKEN="$(cat /var/run/secrets/kubernetes.io/serviceaccount/token)"
fi
redis-server /etc/redis/redis.conf &
bash /opt/metrics_loop/start.sh &
bash /opt/logs_loop/start.sh &
nginx -c /etc/nginx/nginx.conf -g 'daemon off;'