File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,9 @@ Elasticsearch OPS too, if using an OPS cluster:
177
177
clients will use to connect to mux, and will be used in the TLS server cert
178
178
subject.
179
179
- ` openshift_logging_mux_port ` : 24284
180
+ - ` openshift_logging_mux_external_address ` : The IP address that mux will listen
181
+ on for connections from * external* clients. Default is the default ipv4
182
+ interface as reported by the ` ansible_default_ipv4 ` fact.
180
183
- ` openshift_logging_mux_cpu_request ` : 100m
181
184
- ` openshift_logging_mux_memory_limit ` : 512Mi
182
185
- ` openshift_logging_mux_default_namespaces ` : Default ` ["mux-undefined"] ` - the
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ openshift_logging_mux_allow_external: False
30
30
openshift_logging_use_mux : " {{ openshift_logging_mux_allow_external | default(False) }}"
31
31
openshift_logging_mux_hostname : " {{ 'mux.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}"
32
32
openshift_logging_mux_port : 24284
33
+ openshift_logging_mux_external_address : " {{ ansible_default_ipv4.address }}"
33
34
# the namespace to use for undefined projects should come first, followed by any
34
35
# additional namespaces to create by default - users will typically not need to set this
35
36
openshift_logging_mux_default_namespaces : ["mux-undefined"]
Original file line number Diff line number Diff line change 150
150
port : " {{ openshift_logging_mux_port }}"
151
151
targetPort : " mux-forward"
152
152
external_ips :
153
- - " {{ ansible_eth0.ipv4.address }}"
153
+ - " {{ openshift_logging_mux_external_address }}"
154
154
when : openshift_logging_mux_allow_external | bool
155
155
156
156
- name : Set logging-mux service for internal communication
You can’t perform that action at this time.
0 commit comments