Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Activity changes: Update activity feed #22573

Draft
wants to merge 22 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions docs/Configuration/yaml-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,13 @@ controls:
custom_settings:
- path: ../lib/macos-profile1.mobileconfig
labels_exclude_any:
- Label 1
- Label name 1
- path: ../lib/macos-profile2.json
labels_include_all:
- Label 2
- Label name 2
- path: ../lib/macos-profile3.json
labels_include_any:
- Label name 3
windows_settings:
custom_settings
- path: ../lib/windows-profile.xml
Expand All @@ -261,6 +264,7 @@ controls:
enable: true
mode: voluntary
webhook_url: https://example.org/webhook_handler
windows_migration_enabled: true # Available in Fleet Premium
# paths are relative to default.yml or teams/team-name.yml
```

Expand Down Expand Up @@ -291,7 +295,7 @@ controls:

Fleet supports adding [GitHub environment variables](https://docs.github.com/en/actions/learn-github-actions/variables#defining-environment-variables-for-a-single-workflow) in your configuration profiles. Use `$ENV_VARIABLE` format.

Use `labels_include_all` to only apply (scope) profiles to hosts that have all those labels or `labels_exclude_any` to apply profiles to hosts that don't have any of those labels.
Use `labels_include_all` or `labels_include_any` to only apply (scope) profiles to hosts that have all those labels, `labels_exclude_any` to apply profiles to hosts that have any of those labels, or `labels_exclude_any` to apply profiles to hosts that don't have any of those labels.

#### macos_setup

Expand All @@ -309,7 +313,7 @@ The `macos_migration` section lets you control the [end user migration workflow]
- `mode` specifies whether the end user initiates migration (`voluntary`) or they're nudged every 15-20 minutes to migrate (`forced`) (default: `""`).
- `webhook_url` is the URL that Fleet sends a webhook to when the end user selects **Start**. Receive this webhook using your automation tool (ex. Tines) to unenroll your end users from your old MDM solution.

Can only be configure for all teams (`default.yml`).
Can only be configured for all teams (`default.yml`).

### software

Expand Down
2 changes: 2 additions & 0 deletions docs/Contributing/Audit-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1223,6 +1223,7 @@ Generated when a software installer is updated in Fleet.
This activity contains the following fields:
- "software_title": Name of the software.
- "software_package": Filename of the installer as of this update (including if unchanged).
- "software_title_id": ID of edited software title.
- "team_name": Name of the team on which this software was updated. `null` if it was updated on no team.
- "team_id": The ID of the team on which this software was updated. `null` if it was updated on no team.
- "self_service": Whether the software is available for installation by the end user.
Expand All @@ -1233,6 +1234,7 @@ This activity contains the following fields:
{
"software_title": "Falcon.app",
"software_package": "FalconSensor-6.44.pkg",
"software_title_id": 2341,
"team_name": "Workstations",
"team_id": 123,
"self_service": true
Expand Down
Loading
Loading