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:
parent
be1b27960a
commit
ed31624970
2 changed files with 4 additions and 2 deletions
|
@ -35,7 +35,9 @@ module PageLayoutHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def favicon
|
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
|
end
|
||||||
|
|
||||||
def page_image
|
def page_image
|
||||||
|
|
|
@ -25,7 +25,7 @@ build:
|
||||||
canary:
|
canary:
|
||||||
stage: canary
|
stage: canary
|
||||||
script:
|
script:
|
||||||
- command canary
|
- CANARY=true command canary
|
||||||
environment:
|
environment:
|
||||||
name: production
|
name: production
|
||||||
url: http://$CI_PROJECT_NAME.$KUBE_DOMAIN
|
url: http://$CI_PROJECT_NAME.$KUBE_DOMAIN
|
||||||
|
|
Loading…
Reference in a new issue