mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
:_mod-docs-content-type: ASSEMBLY
|
|
[id="troubleshooting-web-terminal"]
|
|
= Troubleshooting the web terminal
|
|
|
|
include::_attributes/common-attributes.adoc[]
|
|
include::_attributes/attributes-openshift-dedicated.adoc[]
|
|
:context: troubleshooting-web-terminal
|
|
|
|
toc::[]
|
|
|
|
[id="troubleshooting-web-terminal-network-policies"]
|
|
== Web terminal and network policies
|
|
|
|
[role="_abstract"]
|
|
The web terminal might fail to start if the cluster has network policies configured. To start a web terminal instance, the {web-terminal-op} must communicate with the web terminal's pod to verify it is running, and the {product-title} web console needs to send information to automatically log in to the cluster within the terminal. If either step fails, the web terminal fails to start and the terminal panel is in a loading state until a `context deadline exceeded error` occurs.
|
|
|
|
To avoid this issue, ensure that the network policies for namespaces that are used for terminals allow ingress from the `openshift-console` and `openshift-operators` namespaces.
|
|
|
|
The following samples show `NetworkPolicy` objects for allowing ingress from the `openshift-console` and `openshift-operators` namespaces.
|
|
|
|
.Allowing ingress from the `openshift-console` namespace
|
|
[source,yaml]
|
|
----
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: allow-from-openshift-console
|
|
spec:
|
|
ingress:
|
|
- from:
|
|
- namespaceSelector:
|
|
matchLabels:
|
|
kubernetes.io/metadata.name: openshift-console
|
|
podSelector: {}
|
|
policyTypes:
|
|
- Ingress
|
|
----
|
|
|
|
.Allowing ingress from the `openshift-operators` namespace
|
|
[source,yaml]
|
|
----
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: allow-from-openshift-operators
|
|
spec:
|
|
ingress:
|
|
- from:
|
|
- namespaceSelector:
|
|
matchLabels:
|
|
kubernetes.io/metadata.name: openshift-operators
|
|
podSelector: {}
|
|
policyTypes:
|
|
- Ingress
|
|
---- |