Skip to content

Commit b8bfddc

Browse files
making ssl passthrough conditional (#176)
* making ssl passthru conditional * fixing typo
1 parent ee72c3f commit b8bfddc

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ applications to run in Linux containers on a Kubernetes cluster. WKT includes t
88
images for running WebLogic domains.
99
- [WebLogic Kubernetes Operator (WKO)](https://github.com/oracle/weblogic-kubernetes-operator) - A Kubernetes operator
1010
that allows WebLogic domains to run natively in a Kubernetes cluster.
11+
- [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console) - A lightweight console for managing
12+
WebLogic Server domains running anywhere.
1113

1214
The WKT UI provides a graphical user interface that wraps the WKT tools, Docker, Helm, and the Kubernetes client
1315
(`kubectl`) and helps guide you through the process of creating and modifying a model of your WebLogic domain, creating

documentation/1.3/content/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ applications to run in Linux containers on a Kubernetes cluster. WKT includes t
99
images for running WebLogic domains.
1010
- [WebLogic Kubernetes Operator (WKO)](https://github.com/oracle/weblogic-kubernetes-operator) - A Kubernetes operator
1111
that allows WebLogic domains to run natively in a Kubernetes cluster.
12+
- [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console) - A lightweight console for managing
13+
WebLogic Server domains running anywhere.
1214

1315
The WKT UI provides a graphical user interface that wraps the WKT tools, Docker, Helm, and the Kubernetes client
1416
(`kubectl`) and helps guide you through the process of creating and modifying a model of your WebLogic domain, creating

webui/src/js/utils/ingress-controller-installer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ function(IngressActionsBase, project, wktConsole, k8sHelper, i18n, dialogHelper,
249249
helmChartData['kubernetes.namespaces'] =
250250
`{${ingressControllerNamespace},${this.project.k8sDomain.kubernetesNamespace.value}}`;
251251
}
252-
if (ingressControllerProvider === 'nginx' && this.project.ingress.allowNginxSSLPassThrough) {
252+
if (ingressControllerProvider === 'nginx' && this.project.ingress.allowNginxSSLPassThrough.value) {
253253
helmChartData['controller.extraArgs.enable-ssl-passthrough'] = true;
254254
}
255255

0 commit comments

Comments
 (0)