added rake task for checking livness on k8s deployments (#2537)

This commit is contained in:
Jesus Federico 2021-02-17 10:40:31 -05:00 committed by GitHub
parent 7c547c36ec
commit 19434df22c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

6
lib/tasks/liveness.rake Normal file
View File

@ -0,0 +1,6 @@
# frozen_string_literal: true
desc('livenessProbe')
task liveness: :environment do
puts "success"
end