Skip to content

Commit 432c29b

Browse files
committed
add more debug logging
1 parent 4fb3eac commit 432c29b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/wlst/istio-fix-domain.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ def getEnvVar(var):
2626
script_dir = getEnvVar("CREATE_DOMAIN_SCRIPT_DIR")
2727
istio_readiness_port = int(getEnvVar("ISTIO_READINESS_PORT"))
2828

29+
print('istio_readiness_port : [%s]' % istio_readiness_port);
30+
2931
# Update Domain for Istio
3032
readDomain(domain_path)
3133

@@ -78,6 +80,8 @@ def getEnvVar(var):
7880
set('ListenAddress', '127.0.0.1')
7981
set('ListenPort', t3_channel_port)
8082

83+
print("Done updating Admin Server's configuration");
84+
8185
templateName = cluster_name + "-template"
8286
cd('/ServerTemplates/%s' % templateName)
8387
create('istio-probe', 'NetworkAccessPoint')
@@ -131,6 +135,8 @@ def getEnvVar(var):
131135
set('TwoWaySslEnabled', false)
132136
set('ClientCertificateEnforced', false)
133137

138+
print("Done updating Managed Server's template: %s", templateName);
139+
134140
updateDomain()
135141
closeDomain()
136142
print 'Domain Updated for Istio'

0 commit comments

Comments
 (0)