orchestration 0.6.12 → 0.6.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/orchestration/docker_compose/app_service.rb +1 -1
- data/lib/orchestration/healthcheck.bash +16 -0
- data/lib/orchestration/make/orchestration.mk +4 -0
- data/lib/orchestration/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0eca537cffc7c1d04a9fee15b15d039e63f3ea64c29ca7384097ce5c3aeaedad
|
4
|
+
data.tar.gz: 00c16b6c7a3d5cf3fa4fdf160a3664ce294d8fd52b4fb875eac0780e5013a9cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1b0bd62ed5ce027fa5b3fd6e71891df96070c7b874fcdf90e86b9f4d13f3364105b05a456052dc8bed836ea96149ada3ee6b7ef875333b9af0ae22d8426404f
|
7
|
+
data.tar.gz: 16e33c0e81496d722b04c5f60d446aa8e506cb549f5f14c3d39d107eb74c03f79e95b76e8f9ed13f35188fcda58b465f6bfa7fd2fe355af0c0adde36bb4a8c22
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -29,7 +29,7 @@ module Orchestration
|
|
29
29
|
|
30
30
|
def healthcheck
|
31
31
|
{
|
32
|
-
'test' => ['
|
32
|
+
'test' => ['/app/orchestration/healthcheck'],
|
33
33
|
# Defaults according to
|
34
34
|
# https://docs.docker.com/engine/reference/builder/#healthcheck
|
35
35
|
# Except start_period which cannot be set to 0s
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
url="${WEB_HEALTHCHECK_PROTOCOL:-http}://${WEB_HOST:-localhost}:${WEB_PORT:-8080}${WEB_HEALTHCHECK_PATH:-/healthcheck}"
|
4
|
+
curl_options="--max-time ${WEB_HEALTHCHECK_READ_TIMEOUT:-10} --connect-timeout ${WEB_HEALTHCHECK_OPEN_TIMEOUT:-10} --silent --output /dev/null --write-out %{http_code}"
|
5
|
+
status_code="$(curl ${curl_options} "${url}")"
|
6
|
+
|
7
|
+
echo "Status Code: ${status_code} (${url})"
|
8
|
+
|
9
|
+
if [[ "${WEB_HEALTHCHECK_SUCCESS_CODES:-200,201,202,204}" =~ (^|,)"${status_code}"(,|$) ]]
|
10
|
+
then
|
11
|
+
echo 'Healthcheck SUCCESS'
|
12
|
+
exit 0
|
13
|
+
else
|
14
|
+
echo 'Healthcheck FAILURE'
|
15
|
+
exit 1
|
16
|
+
fi
|
@@ -449,6 +449,8 @@ build: _create-log-directory check-local-changes
|
|
449
449
|
@$(call echo,Preparing build context from ${cyan}${git_branch}${reset} (${cyan}${git_version}${reset})${reset})
|
450
450
|
@$(call system,git archive --format "tar" -o "${context}" "${git_branch}")
|
451
451
|
@mkdir -p ${orchestration_dir}/.build ${log} || ${exit_fail}
|
452
|
+
@cp '$(shell bundle info --path orchestration)/lib/orchestration/healthcheck.bash' '${orchestration_dir}/healthcheck'
|
453
|
+
@chmod +x '${orchestration_dir}/healthcheck'
|
452
454
|
ifndef dev
|
453
455
|
@git show ${git_branch}:./Gemfile > ${orchestration_dir}/.build/Gemfile 2>${stderr} || ${exit_fail}
|
454
456
|
@git show ${git_branch}:./Gemfile.lock > ${orchestration_dir}/.build/Gemfile.lock 2>${stderr} || ${exit_fail}
|
@@ -456,6 +458,8 @@ ifndef dev
|
|
456
458
|
else
|
457
459
|
@tar -cvf '${context}' . ${log} || ${exit_fail}
|
458
460
|
endif
|
461
|
+
@tar --append --file '${context}' '${orchestration_dir}/healthcheck'
|
462
|
+
@rm '${orchestration_dir}/healthcheck'
|
459
463
|
ifdef include
|
460
464
|
@$(call echo,Including files from: ${cyan}${include}${reset})
|
461
465
|
@(while read line; do \
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orchestration
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bob Farrell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: database_url
|
@@ -399,6 +399,7 @@ files:
|
|
399
399
|
- lib/orchestration/environment.rb
|
400
400
|
- lib/orchestration/errors.rb
|
401
401
|
- lib/orchestration/file_helpers.rb
|
402
|
+
- lib/orchestration/healthcheck.bash
|
402
403
|
- lib/orchestration/install_generator.rb
|
403
404
|
- lib/orchestration/make.rb
|
404
405
|
- lib/orchestration/make/orchestration.mk
|