Fix issues with Python3 and bring up a dev cluster

This commit is contained in:
Josh Ellithorpe
2016-01-11 17:18:41 -08:00
committed by quest
parent 651206fd90
commit 76e8a8b08d
7 changed files with 9 additions and 9 deletions

View File

@@ -81,8 +81,8 @@ function set-kube-env() {
import pipes,sys,yaml
for k,v in yaml.load(sys.stdin).iteritems():
print """readonly {var}={value}""".format(var = k, value = pipes.quote(str(v)))
print """export {var}""".format(var = k)
print("""readonly {var}={value}""".format(var = k, value = pipes.quote(str(v))))
print("""export {var}""".format(var = k))
' < """${kube_env_yaml}""")"
}