Skip to content

making ssl passthrough conditional #176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ applications to run in Linux containers on a Kubernetes cluster. WKT includes t
images for running WebLogic domains.
- [WebLogic Kubernetes Operator (WKO)](https://github.com/oracle/weblogic-kubernetes-operator) - A Kubernetes operator
that allows WebLogic domains to run natively in a Kubernetes cluster.
- [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console) - A lightweight console for managing
WebLogic Server domains running anywhere.

The WKT UI provides a graphical user interface that wraps the WKT tools, Docker, Helm, and the Kubernetes client
(`kubectl`) and helps guide you through the process of creating and modifying a model of your WebLogic domain, creating
Expand Down
2 changes: 2 additions & 0 deletions documentation/1.3/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ applications to run in Linux containers on a Kubernetes cluster. WKT includes t
images for running WebLogic domains.
- [WebLogic Kubernetes Operator (WKO)](https://github.com/oracle/weblogic-kubernetes-operator) - A Kubernetes operator
that allows WebLogic domains to run natively in a Kubernetes cluster.
- [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console) - A lightweight console for managing
WebLogic Server domains running anywhere.

The WKT UI provides a graphical user interface that wraps the WKT tools, Docker, Helm, and the Kubernetes client
(`kubectl`) and helps guide you through the process of creating and modifying a model of your WebLogic domain, creating
Expand Down
2 changes: 1 addition & 1 deletion webui/src/js/utils/ingress-controller-installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ function(IngressActionsBase, project, wktConsole, k8sHelper, i18n, dialogHelper,
helmChartData['kubernetes.namespaces'] =
`{${ingressControllerNamespace},${this.project.k8sDomain.kubernetesNamespace.value}}`;
}
if (ingressControllerProvider === 'nginx' && this.project.ingress.allowNginxSSLPassThrough) {
if (ingressControllerProvider === 'nginx' && this.project.ingress.allowNginxSSLPassThrough.value) {
helmChartData['controller.extraArgs.enable-ssl-passthrough'] = true;
}

Expand Down