mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Defend Workflows] Add advanced option to opt out from staged artifact rollout (#202674)
## Summary Adds advanced option called `[os].advanced.artifacts.global.channel`, targeting `8.18`. Text to review: > The release channel to use for receiving global artifacts. By default, staged roll-out is applied. Set to rapid to receive candidate artifacts as soon as available. Set to stable to only receive stable artifacts. Default: default <img width="793" alt="image" src="https://github.com/user-attachments/assets/309ff990-68a0-434c-aabc-c4ad52ce9737"> <img width="525" alt="image" src="https://github.com/user-attachments/assets/ecaea6f4-c525-4185-9901-d7613751840d"> ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md)
This commit is contained in:
parent
3f71872e25
commit
2e733f20a3
1 changed files with 33 additions and 0 deletions
|
@ -72,6 +72,17 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [
|
|||
}
|
||||
),
|
||||
},
|
||||
{
|
||||
key: 'linux.advanced.artifacts.global.channel',
|
||||
first_supported_version: '8.18',
|
||||
documentation: i18n.translate(
|
||||
'xpack.securitySolution.endpoint.policy.advanced.linux.advanced.artifacts.global.channel',
|
||||
{
|
||||
defaultMessage:
|
||||
'The release channel to use for receiving global artifacts. The "default" is staged roll-out. Set to "rapid" to receive candidate artifacts as soon as available. Set to "stable" to only receive stable artifacts. Default: default',
|
||||
}
|
||||
),
|
||||
},
|
||||
{
|
||||
key: 'linux.advanced.artifacts.user.public_key',
|
||||
first_supported_version: '7.9',
|
||||
|
@ -287,6 +298,17 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [
|
|||
}
|
||||
),
|
||||
},
|
||||
{
|
||||
key: 'mac.advanced.artifacts.global.channel',
|
||||
first_supported_version: '8.18',
|
||||
documentation: i18n.translate(
|
||||
'xpack.securitySolution.endpoint.policy.advanced.mac.advanced.artifacts.global.channel',
|
||||
{
|
||||
defaultMessage:
|
||||
'The release channel to use for receiving global artifacts. The "default" is staged roll-out. Set to "rapid" to receive candidate artifacts as soon as available. Set to "stable" to only receive stable artifacts. Default: default',
|
||||
}
|
||||
),
|
||||
},
|
||||
{
|
||||
key: 'mac.advanced.artifacts.user.public_key',
|
||||
first_supported_version: '7.9',
|
||||
|
@ -512,6 +534,17 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [
|
|||
}
|
||||
),
|
||||
},
|
||||
{
|
||||
key: 'windows.advanced.artifacts.global.channel',
|
||||
first_supported_version: '8.18',
|
||||
documentation: i18n.translate(
|
||||
'xpack.securitySolution.endpoint.policy.advanced.windows.advanced.artifacts.global.channel',
|
||||
{
|
||||
defaultMessage:
|
||||
'The release channel to use for receiving global artifacts. The "default" is staged roll-out. Set to "rapid" to receive candidate artifacts as soon as available. Set to "stable" to only receive stable artifacts. Default: default',
|
||||
}
|
||||
),
|
||||
},
|
||||
{
|
||||
key: 'windows.advanced.artifacts.user.public_key',
|
||||
first_supported_version: '7.9',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue