diff options
author | Luke Meyer <sosiouxme@gmail.com> | 2017-11-21 17:24:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-21 17:24:07 -0500 |
commit | 1a505ac84b13dddde1ef74ecc01be3430b5209ae (patch) | |
tree | 2b58adfacabc254b7cc4debbae59cdb7015aef80 /roles/openshift_logging_mux | |
parent | c007db1a6520b084edc7154fae863d67c230fe4b (diff) | |
parent | 9196bc888bf481b05c3dba03e2e501d25aff6890 (diff) | |
download | openshift-1a505ac84b13dddde1ef74ecc01be3430b5209ae.tar.gz openshift-1a505ac84b13dddde1ef74ecc01be3430b5209ae.tar.bz2 openshift-1a505ac84b13dddde1ef74ecc01be3430b5209ae.tar.xz openshift-1a505ac84b13dddde1ef74ecc01be3430b5209ae.zip |
Merge pull request #6204 from richm/mux-int-port
mux containerPort must be an int not a string
Diffstat (limited to 'roles/openshift_logging_mux')
-rw-r--r-- | roles/openshift_logging_mux/templates/mux.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_logging_mux/templates/mux.j2 b/roles/openshift_logging_mux/templates/mux.j2 index cfb13d59b..79e449b73 100644 --- a/roles/openshift_logging_mux/templates/mux.j2 +++ b/roles/openshift_logging_mux/templates/mux.j2 @@ -59,7 +59,7 @@ spec: {% endif %} {% endif %} ports: - - containerPort: "{{ openshift_logging_mux_port }}" + - containerPort: {{ openshift_logging_mux_port }} name: mux-forward volumeMounts: - name: config |