Update UI to reflect enrollment behavior (#42105)

<!-- Add the related story/sub-task/bug number, like Resolves #123, or
remove if NA -->
**Related issue:** Resolves #41921
This commit is contained in:
melpike 2026-03-23 09:54:35 -06:00 committed by GitHub
parent a1ac4f4f88
commit f020aaa66d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 24 additions and 14 deletions

View file

@ -2,8 +2,6 @@
Fleet allows you to configure default fleets for macOS, iOS, and iPadOS devices as they automatically enroll in your instance. This ensures that hosts receive the appropriate apps and configuration profiles at enrollment.
If a host is manually assigned to a different fleet before enrollment, it will enroll to the newly assigned fleet and not the default.
## Why configure default fleets?
The ability to assign default fleets during device enrollment helps streamline the deployment process. Each host is automatically placed in its correct group, ensuring it receives the necessary configuration profiles and apps without requiring manual assignment.

View file

@ -96,8 +96,10 @@ export const generateTableConfig = (
<TooltipWrapper
tipContent={
<>
macOS hosts are automatically added to this fleet in Fleet when
they appear in Apple Business Manager.
macOS hosts are automatically added to this fleet on initial
sync from ABM. If a host is manually assigned to a different
fleet before enrollment, it will enroll to the newly assigned
fleet and not the default.
</>
}
>
@ -119,8 +121,10 @@ export const generateTableConfig = (
<TooltipWrapper
tipContent={
<>
iOS hosts are automatically added to this fleet in Fleet when
they appear in Apple Business Manager.
iOS hosts are automatically added to this fleet on initial sync
from ABM. If a host is manually assigned to a different fleet
before enrollment, it will enroll to the newly assigned fleet
and not the default.
</>
}
>
@ -142,8 +146,10 @@ export const generateTableConfig = (
<TooltipWrapper
tipContent={
<>
iPadOS hosts are automatically added to this fleet in Fleet when
they appear in Apple Business Manager.
iPadOS hosts are automatically added to this fleet on initial
sync from ABM. If a host is manually assigned to a different
fleet before enrollment, it will enroll to the newly assigned
fleet and not the default.
</>
}
>

View file

@ -147,8 +147,10 @@ const EditTeamsAbmModal = ({
wrapperClassName={`${baseClass}__form-field form-field--macos`}
tooltip={
<>
macOS hosts are automatically added to this fleet in Fleet when
they appear in Apple Business Manager.
macOS hosts are automatically added to this fleet on initial sync
from ABM. If a host is manually assigned to a different fleet
before enrollment, it will enroll to the newly assigned fleet and
not the default.
</>
}
/>
@ -163,8 +165,10 @@ const EditTeamsAbmModal = ({
wrapperClassName={`${baseClass}__form-field form-field--ios`}
tooltip={
<>
iOS hosts are automatically added to this fleet in Fleet when they
appear in Apple Business Manager.
iOS hosts are automatically added to this fleet on initial sync
from ABM. If a host is manually assigned to a different fleet
before enrollment, it will enroll to the newly assigned fleet and
not the default.
</>
}
/>
@ -179,8 +183,10 @@ const EditTeamsAbmModal = ({
wrapperClassName={`${baseClass}__form-field form-field--ipados`}
tooltip={
<>
iPadOS hosts are automatically added to this fleet in Fleet when
they appear in Apple Business Manager.
iPadOS hosts are automatically added to this fleet on initial sync
from ABM. If a host is manually assigned to a different fleet
before enrollment, it will enroll to the newly assigned fleet and
not the default.
</>
}
/>