Commit fc106a30 authored by Emiliano Balbuena's avatar Emiliano Balbuena

(feat): Feature flags sync runner every 15 min

parent 6c3004e9
1 merge request!31Allow FF env vars via helm values and sync feature flags
Pipeline #119240526 passed with stage
in 1 minute and 6 seconds
......@@ -894,4 +894,14 @@ data:
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
[program:transcode]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/Minds/engine/cli.php features sync --forever --ttl=900 --environment=sandbox,{{ template "minds.fullname" . }}
autostart=true
autorestart=true
numprocs={{ .Values.runners.dispatchers.transcode.replicas | default 1 }}
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
{{ .Files.Get "config.properties" | indent 4 }}
......@@ -92,6 +92,8 @@ runners:
replicas: 1
transcode:
replicas: 1
featureflags:
replicas: 1
front:
image:
......
Please register or to comment