mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
* feat(kubernetes): add ingress details * fix(kubernetes): fix broken ingress generated links + ignore IP retrieval/display info on missing LB ingress ip * refactor(kubernetes): each ingress rule in apps port mappings has now its own row * feat(kubernetes): remove protocol column and concat it to container port * feat(kubernetes): edit display of ingress rules in application details * feat(kubernetes): minor UI update Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
16 lines
294 B
JavaScript
16 lines
294 B
JavaScript
/**
|
|
* KubernetesIngressRule Model
|
|
*/
|
|
const _KubernetesIngressRule = Object.freeze({
|
|
ServiceName: '',
|
|
Host: '',
|
|
IP: '',
|
|
Port: '',
|
|
Path: '',
|
|
});
|
|
|
|
export class KubernetesIngressRule {
|
|
constructor() {
|
|
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesIngressRule)));
|
|
}
|
|
}
|