1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00

feat(app): add ingress to app service form [EE-5569] (#9106)

This commit is contained in:
Ali 2023-06-26 16:21:19 +12:00 committed by GitHub
parent 8c16fbb8aa
commit 89c1d0e337
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
47 changed files with 1929 additions and 1181 deletions

View file

@ -0,0 +1,90 @@
import ingressDiagram from '@/assets/images/ingress-explanatory-diagram.png';
import { FormSection } from '@@/form-components/FormSection';
export function PublishingExplaination() {
return (
<FormSection title="Explanation" isFoldable titleSize="sm">
<div className="mb-4 flex flex-col items-start lg:flex-row">
<img
src={ingressDiagram}
alt="ingress explaination"
width={646}
className="flex w-full max-w-2xl basis-1/2 flex-col object-contain lg:w-1/2"
/>
<div className="ml-8 basis-1/2">
Expose the application workload via{' '}
<a
href="https://kubernetes.io/docs/concepts/services-networking/service/"
target="_blank"
rel="noopener noreferrer"
>
services
</a>{' '}
and{' '}
<a
href="https://kubernetes.io/docs/concepts/services-networking/ingress/"
target="_blank"
rel="noopener noreferrer"
>
ingresses
</a>
:
<ul className="mt-3 ml-5 [&>li]:mb-3 [&>li>ul>li]:ml-5">
<li>
<b>Inside</b> the cluster{' '}
<b>
<i>only</i>
</b>{' '}
- via <b>ClusterIP</b> service
<ul>
<li>
<i>The default service type.</i>
</li>
</ul>
</li>
<li>
<b>Inside</b> the cluster via <b>ClusterIP</b> service and{' '}
<b>outside</b> via <b>ingress</b>
<ul>
<li>
<i>
An ingress manages external access to (usually ClusterIP)
services within the cluster, and allows defining of routing
rules, SSL termination and other advanced features.
</i>
</li>
</ul>
</li>
<li>
<b>Inside</b> and <b>outside</b> the cluster via <b>NodePort</b>{' '}
service
<ul>
<li>
<i>
This publishes the workload on a static port on each node,
allowing external access via a nodes&apos; IP address and
port. Not generally recommended for Production use.
</i>
</li>
</ul>
</li>
<li>
<b>Inside</b> and <b>outside</b> the cluster via{' '}
<b>LoadBalancer</b> service
<ul>
<li>
<i>
If running on a cloud platform, this auto provisions a cloud
load balancer and assigns an external IP address or DNS to
route traffic to the workload.
</i>
</li>
</ul>
</li>
</ul>
</div>
</div>
</FormSection>
);
}