Skip to content

Commit efe2703

Browse files
authored
Create dedicated livenss endpoint (elastic#1323)
Adds a `/liveness` endpoint which returns a 200 strait from nginx so it will be considered "alive" very, very soon.
1 parent 9d0dcbc commit efe2703

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

air_gapped/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.elastic.co/docs/preview:13
1+
FROM docker.elastic.co/docs/preview:14
22

33
COPY air_gapped/work/target_repo.git /docs_build/.repos/target_repo.git
44

air_gapped/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ GIT_DIR=air_gapped/work/target_repo.git git fetch
1919

2020
# Build the images
2121
./build_docs --just-build-image
22-
docker build -t docker.elastic.co/docs/preview:13 -f preview/Dockerfile .
22+
docker build -t docker.elastic.co/docs/preview:14 -f preview/Dockerfile .
2323
# Use buildkit here to pick up the customized dockerignore file
2424
DOCKER_BUILDKIT=1 docker build -t docker.elastic.co/docs-private/air_gapped:latest -f air_gapped/Dockerfile .

integtest/spec/preview_spec.rb

+11
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def get(watermark, branch, path)
7474
watermark = SecureRandom.uuid
7575
let(:watermark) { watermark }
7676
let(:current_url) { 'guide/test/current' }
77+
let(:liveness) { get watermark, branch, 'liveness' }
7778
let(:diff) { get watermark, branch, 'diff' }
7879
let(:robots_txt) { get watermark, branch, 'robots.txt' }
7980
let(:root) { get watermark, branch, '' }
@@ -109,6 +110,11 @@ def get(watermark, branch, path)
109110
include_examples 'the favicon'
110111

111112
shared_examples 'serves some docs' do |supports_gapped: true|
113+
context 'the liveness check' do
114+
it '200s' do
115+
expect(liveness).to serve(include("R'lyeh"))
116+
end
117+
end
112118
context 'the root' do
113119
it 'redirects to the guide root' do
114120
expect(root).to redirect_to(eq("http://#{host}:8000/guide/index.html"))
@@ -227,6 +233,11 @@ def get(watermark, branch, path)
227233
end
228234
end
229235
shared_examples '404s' do
236+
context 'the liveness check' do
237+
it '200s' do
238+
expect(liveness).to serve(include("R'lyeh"))
239+
end
240+
end
230241
it '404s for the docs root' do
231242
expect(guide_root.code).to eq('404')
232243
end

lib/ES/Util.pm

+3
Original file line numberDiff line numberDiff line change
@@ -875,6 +875,9 @@ http {
875875
location = / {
876876
return 301 /guide/index.html;
877877
}
878+
location = /liveness {
879+
return 200 "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn.";
880+
}
878881
location = /robots.txt {
879882
return 200 "User-agent: *\nDisallow: /\n";
880883
}

preview/test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ set -e
99

1010
cd $(git rev-parse --show-toplevel)
1111
../infra/ansible/roles/git_fetch_reference/files/git-fetch-reference.sh git@github.com:elastic/built-docs.git
12-
docker build -t docker.elastic.co/docs/preview:13 -f preview/Dockerfile .
12+
docker build -t docker.elastic.co/docs/preview:14 -f preview/Dockerfile .
1313
id=$(docker run --rm \
1414
--publish 8000:8000/tcp \
1515
-v $HOME/.git-references:/root/.git-references \
1616
-d \
17-
docker.elastic.co/docs/preview:13 \
17+
docker.elastic.co/docs/preview:14 \
1818
/docs_build/build_docs.pl --in_standard_docker \
1919
--preview --reference /root/.git-references \
2020
--target_repo https://github.com/elastic/built-docs.git)

publish_docker.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
export BUILD=docker.elastic.co/docs/build:1
6-
export PREVIEW=docker.elastic.co/docs/preview:13
6+
export PREVIEW=docker.elastic.co/docs/preview:14
77

88
cd $(git rev-parse --show-toplevel)
99
./build_docs --just-build-image

0 commit comments

Comments
 (0)