diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-10-09 11:37:20 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-10-09 11:37:20 -0400 |
commit | 77340c9813bbdd21049d6658fc3ef083d8a05ec0 (patch) | |
tree | 85d15cc9f6ca0798985f8573e5dc3998e7928327 /roles/openshift_node | |
parent | 02b41d2c0b43a1f969fdae495b61fd519281e6f1 (diff) | |
parent | ffc4ce40316acfccf1e36a9bca27c52819853e2a (diff) | |
download | openshift-77340c9813bbdd21049d6658fc3ef083d8a05ec0.tar.gz openshift-77340c9813bbdd21049d6658fc3ef083d8a05ec0.tar.bz2 openshift-77340c9813bbdd21049d6658fc3ef083d8a05ec0.tar.xz openshift-77340c9813bbdd21049d6658fc3ef083d8a05ec0.zip |
Merge pull request #635 from abutcher/bz1258243
Bug 1258243: Use lower() filter for node hostname
Diffstat (limited to 'roles/openshift_node')
-rw-r--r-- | roles/openshift_node/templates/node.yaml.v1.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_node/templates/node.yaml.v1.j2 b/roles/openshift_node/templates/node.yaml.v1.j2 index 07d80f99b..946c0b655 100644 --- a/roles/openshift_node/templates/node.yaml.v1.j2 +++ b/roles/openshift_node/templates/node.yaml.v1.j2 @@ -18,7 +18,7 @@ networkPluginName: {{ openshift.common.sdn_network_plugin_name }} networkConfig: mtu: {{ openshift.node.sdn_mtu }} networkPluginName: {{ openshift.common.sdn_network_plugin_name }} -nodeName: {{ openshift.common.hostname }} +nodeName: {{ openshift.common.hostname | lower }} podManifestConfig: servingInfo: bindAddress: 0.0.0.0:10250 |