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

feat(k8s/resource-pool): set ingress hostname as mandatory and remove… (#4244)

* feat(k8s/resource-pool): set ingress hostname as mandatory and remove default backend

* refactor(k8s/resource-pool): use constants

* feat(k8s/configure): add experimental note about traefik
This commit is contained in:
Anthony Lapenna 2020-08-20 21:24:12 +12:00 committed by GitHub
parent 7329ea91ca
commit f8be9bb57a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 40 additions and 12 deletions

View file

@ -79,6 +79,10 @@ class KubernetesConfigureController {
}
this.onChangeIngressClass();
}
hasTraefikIngress() {
return _.find(this.formValues.IngressClasses, { Type: this.IngressClassTypes.TRAEFIK });
}
/* #endregion */
/* #region CONFIGURE */