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

master
Jesus Federico 2 years ago committed by GitHub
parent 7c547c36ec
commit 19434df22c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      lib/tasks/liveness.rake

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