Skip to content

Commit cded41a

Browse files
authored
enabled outbound for channels splitted from regular default channel. If not enabled, session replication will fail. (#2242)
1 parent 050d5a2 commit cded41a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

operator/src/main/resources/scripts/introspectDomain.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,11 +1176,9 @@ def _writeIstioNAP(self, name, server, listen_address, listen_port, protocol, ht
11761176
self.writeln('<d:listen-port %s>%s</d:listen-port>' % (action, listen_port))
11771177
self.writeln('<d:http-enabled-for-this-protocol %s>%s</d:http-enabled-for-this-protocol>' %
11781178
(action, http_enabled))
1179-
self.writeln('<d:tunneling-enabled %s>false</d:tunneling-enabled>' % action)
1180-
self.writeln('<d:outbound-enabled %s>false</d:outbound-enabled>' % action)
1179+
# This needs to be enabled, since we are splitting from server default channel
1180+
self.writeln('<d:outbound-enabled %s>true</d:outbound-enabled>' % action)
11811181
self.writeln('<d:enabled %s>true</d:enabled>' % action)
1182-
self.writeln('<d:two-way-ssl-enabled %s>false</d:two-way-ssl-enabled>' % action)
1183-
self.writeln('<d:client-certificate-enforced %s>false</d:client-certificate-enforced>' % action)
11841182
self.undent()
11851183
self.writeln('</d:network-access-point>')
11861184

0 commit comments

Comments
 (0)