Commit afd01971 authored by George Kraft's avatar George Kraft

Fix lint error on kubernetes-worker

parent 208ae55f
...@@ -567,9 +567,11 @@ def launch_default_ingress_controller(): ...@@ -567,9 +567,11 @@ def launch_default_ingress_controller():
return return
# Render the ingress replication controller manifest # Render the ingress replication controller manifest
context['ingress_image'] = "gcr.io/google_containers/nginx-ingress-controller:0.9.0-beta.13" context['ingress_image'] = \
"gcr.io/google_containers/nginx-ingress-controller:0.9.0-beta.13"
if arch() == 's390x': if arch() == 's390x':
context['ingress_image'] = "docker.io/cdkbot/nginx-ingress-controller-s390x:0.9.0-beta.13" context['ingress_image'] = \
"docker.io/cdkbot/nginx-ingress-controller-s390x:0.9.0-beta.13"
manifest = addon_path.format('ingress-replication-controller.yaml') manifest = addon_path.format('ingress-replication-controller.yaml')
render('ingress-replication-controller.yaml', manifest, context) render('ingress-replication-controller.yaml', manifest, context)
hookenv.log('Creating the ingress replication controller.') hookenv.log('Creating the ingress replication controller.')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment