mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
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:
parent
a1ac4f4f88
commit
f020aaa66d
3 changed files with 24 additions and 14 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
</>
|
||||
}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
</>
|
||||
}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue