Add temporary CANARY env vars to be set in Kubernetes-with-canary.gitlab-ci.yml and used in page_layout_helper.rb

This commit is contained in:
Luke "Jared" Bennett 2017-06-27 12:49:50 +01:00
parent be1b27960a
commit ed31624970
No known key found for this signature in database
GPG Key ID: 402ED51FB5D306C2
2 changed files with 4 additions and 2 deletions

View File

@ -35,7 +35,9 @@ module PageLayoutHelper
end
def favicon
Rails.env.development? ? 'favicon-blue.ico' : 'favicon.ico'
return 'favicon-yellow.ico' if ENV['CANARY'] == 'true'
return 'favicon-blue.ico' if Rails.env.development?
'favicon.ico'
end
def page_image

View File

@ -25,7 +25,7 @@ build:
canary:
stage: canary
script:
- command canary
- CANARY=true command canary
environment:
name: production
url: http://$CI_PROJECT_NAME.$KUBE_DOMAIN