Commit 798359e7 authored by Matteo Guarnaccia's avatar Matteo Guarnaccia
Browse files

added basic health check endpoint

parent 928c887a
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -14,6 +14,11 @@ server {
        return 404;
    }

    # Health check
    location /healthcheck {
        return 200 'OK';
    }

    # Create a location block for each dataset
    {% for dataset in data_datasets %}
    location /thredds/fileServer/{{ dataset.path }}/ {
+5 −0
Original line number Diff line number Diff line
@@ -14,6 +14,11 @@ server {
        return 404;
    }

    # Health check
    location /healthcheck {
        return 200 'OK';
    }

    # Create a location block for each dataset
    {{- range .Values.data.datasets }}
    location /thredds/fileServer/{{ .path }}/ {