Skip to content

emphasize OL support in NOTE #92

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 1 commit into from
Feb 10, 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 @@ -14,6 +14,8 @@ The WKT UI provides a graphical user interface that wraps the WKT tools, Docker,
a Linux container image to use to run the domain, and setting up and deploying the software and configuration
necessary to deploy and access the domain in your Kubernetes cluster.

**NOTE**: The WKT UI application is built using the Electron framework and as such, we support only the platforms and versions supported by [Electron](https://www.electronjs.org/docs/latest/tutorial/support#supported-platforms). For example, because of the Electron requirement for Fedora 24 or newer, we support _only_ versions 8.0 and higher of Oracle Linux, RedHat Linux, and CentOS Linux.


## About the Documentation

Expand Down
9 changes: 5 additions & 4 deletions documentation/1.1/content/setup/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ These include:
- `openssl` - Used to generate an X.509 TLS certificate for ingress routes, should you ask the application
to generate one for you.

The WKT UI application is built using the Electron framework and as such, we support only the platforms and versions supported by [Electron](https://www.electronjs.org/docs/latest/tutorial/support#supported-platforms). For example, because of the Electron requirement for Fedora 24 or newer, we support only versions 8.0 and higher of Oracle Linux, RedHat Linux, and CentOS Linux.
{{% notice note %}} The WKT UI application is built using the Electron framework and as such, we support only the platforms and versions supported by [Electron](https://www.electronjs.org/docs/latest/tutorial/support#supported-platforms). For example, because of the Electron requirement for Fedora 24 or newer, we support _only_ versions 8.0 and higher of Oracle Linux, RedHat Linux, and CentOS Linux.
{{% /notice %}}

In addition to these local software dependencies, you will need a Kubernetes cluster to which you can deploy your
containerized WebLogic Server domain and its applications. If you do not already have a model, then you can either write
Expand All @@ -45,22 +46,22 @@ with a WebLogic domain that can be used to discover the model from the domain.
https://support.oracle.com/knowledge/Oracle%20Linux%20and%20Virtualization/2717454_1.html

- For running the WKT UI on a remote machine without desktop environment and accessing it through X forwarding, you need to ensure X forwarding is working properly. For example,

```
sudo dnf install xterm
logout
ssh -X ...
xterm
```
- For Debian-based systems, such as Ubuntu and Debian:
- For storing credentials in the OS native credentials store, you must have a desktop environment. If your system does not have a graphical desktop environment, then you can install one; for example, installing GNOME on Ubuntu 20x:
```
sudo apt install gnome-session gdm3
sudo reboot
```
- For running the WKT UI on a remote machine without desktop environment and accessing it through X forwarding, you need to ensure X forwarding is working properly. For example,
```
Expand Down