[Datalake] Output logs to stdout. 47/110947/3 1.1.0-datalake-handler-admin-ui
authorKate Hsuan <kate.hsuan@qct.io>
Thu, 6 Aug 2020 02:10:12 +0000 (02:10 +0000)
committerKate Hsuan <kate.hsuan@qct.io>
Thu, 13 Aug 2020 09:04:56 +0000 (09:04 +0000)
Issue-ID: DCAEGEN2-2371
Issue-ID: DCAEGEN2-2379
Signed-off-by: Kate Hsuan <kate.hsuan@qct.io>
Change-Id: I4c3eb0d80c653ff95da2cb14cd15d864df86c095

components/datalake-handler/admin/Dockerfile
components/datalake-handler/admin/nginx/nginx.conf
components/datalake-handler/admin/nginx/run.sh [new file with mode: 0644]

index 2e6442a..6237741 100644 (file)
@@ -18,23 +18,15 @@ RUN groupadd -r datalake && useradd -r -g datalake datalake
 COPY --from=builder /app/dist/* /usr/share/nginx/html/
 COPY --from=builder /app/dl-admin-nginx.conf /etc/nginx/conf.d/default.conf
 COPY --from=builder /app/nginx.conf /etc/nginx/nginx.conf
+COPY --from=builder /app/run.sh /tmp
 
 RUN chown -R datalake:datalake /etc/nginx
 RUN chown -R datalake:datalake /var/cache/nginx
+RUN chown -R datalake:datalake /tmp/run.sh
+RUN chmod 0744 /tmp/run.sh
 
 
 USER datalake
 
-#CMD echo "domain-needed" >> /etc/dnsmasq.conf && \
-#      echo "resolv-file=/etc/resolv.conf" >> /etc/dnsmasq.conf && \
-#      echo "expand-hosts" >> /etc/dnsmasq.conf && \
-#      echo "listen-address=127.0.0.1" >> /etc/dnsmasq.conf && \     
-#      service dnsmasq restart && \
-#      echo set \$upstreamName http://dl-feeder.`grep search /etc/resolv.conf | awk {'print $2'}`:1680/datalake/v1\$1\$is_args\$args\; > /etc/nginx/upstream.conf && \
-#      nginx -g "daemon off;"
+CMD ["sh", "-c", "/tmp/run.sh"]
 
-CMD echo resolver `grep nameserver /etc/resolv.conf |awk {'print $2'}` valid=10s\; > /etc/nginx/resolver.conf && \
-    echo set \$upstreamName http://dl-feeder.`grep search /etc/resolv.conf | awk {'print $2'}`:1680/datalake/v1\$1\$is_args\$args\; > /etc/nginx/upstream.conf && \
-    nginx -g "daemon off;"
-
-#CMD ["sh", "-c", "tail -f /dev/null"]
index 8613dff..731935d 100644 (file)
@@ -1,8 +1,9 @@
-user  nginx;
+user  datalake;
 worker_processes  1;
 
-error_log  /tmp/error.log warn;
 pid        /tmp/nginx.pid;
+error_log  stderr warn;
+#access_log  /dev/stdout http;
 
 
 events {
@@ -18,7 +19,7 @@ http {
                       '$status $body_bytes_sent "$http_referer" '
                       '"$http_user_agent" "$http_x_forwarded_for"';
 
-    access_log  /tmp/access.log  main;
+    access_log  /dev/stdout  main;
 
     sendfile        on;
     #tcp_nopush     on;
diff --git a/components/datalake-handler/admin/nginx/run.sh b/components/datalake-handler/admin/nginx/run.sh
new file mode 100644 (file)
index 0000000..b638807
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+echo resolver `grep nameserver /etc/resolv.conf |awk {'print $2'}` valid=10s\; > /etc/nginx/resolver.conf
+echo set \$upstreamName http://dl-feeder.`grep ^search /etc/resolv.conf | awk {'print $2'}`:1680/datalake/v1\$1\$is_args\$args\; > /etc/nginx/upstream.conf
+nginx -g "daemon off;"