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

feat(k8s/applications): reorder placement policies and select mandatory by default (#5063)

This commit is contained in:
Alice Groux 2021-06-03 13:42:44 +02:00 committed by GitHub
parent 9ec1f2ed6d
commit b8660ed2a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View file

@ -23,7 +23,7 @@ const _KubernetesApplicationFormValues = Object.freeze({
Configurations: [], // KubernetesApplicationConfigurationFormValue list
PublishingType: KubernetesApplicationPublishingTypes.INTERNAL,
PublishedPorts: [], // KubernetesApplicationPublishedPortFormValue list
PlacementType: KubernetesApplicationPlacementTypes.PREFERRED,
PlacementType: KubernetesApplicationPlacementTypes.MANDATORY,
Placements: [], // KubernetesApplicationPlacementFormValue list
OriginalIngresses: undefined,
});