forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fleet] Remove beta badges from proxies sections and add warning (ela…
…stic#184811) Closes elastic/ingest-dev#3232 ## Summary - Remove beta badges from settings proxies sections - Add a callout message in all previous sections to warn user about proxies usage - Add link to [docs](https://www.elastic.co/guide/en/fleet/master/fleet-agent-proxy-support.html) in proxies table <details> <summary>Screenshots</summary> ### Proxies table ![Screenshot 2024-06-05 at 14 30 50](https://github.com/elastic/kibana/assets/16084106/2f85974a-626d-4dbb-9757-e40555f9dd71) ### Add proxy flyout ![Screenshot 2024-06-05 at 12 32 35](https://github.com/elastic/kibana/assets/16084106/54d085e5-a761-4171-be8a-a8a763f1a02a) ### Edit fleet server flyout ![Screenshot 2024-06-05 at 12 28 01](https://github.com/elastic/kibana/assets/16084106/e9dc075f-4fba-4f2e-b0cb-1576560967a7) ### Add agent binary source flyout ![Screenshot 2024-06-05 at 12 26 30](https://github.com/elastic/kibana/assets/16084106/a452a7a7-c154-4d88-9215-56a1b4950d63) ### Add new output flyout ![Screenshot 2024-06-05 at 12 24 23](https://github.com/elastic/kibana/assets/16084106/6f083394-d0a5-447c-ac1a-b26ac57a9075) </details> ### Checklist - [ ] 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) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials --------- Co-authored-by: Kibana Machine <[email protected]>
- Loading branch information
1 parent
072b29d
commit 584362e
Showing
11 changed files
with
104 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...lic/applications/fleet/sections/settings/components/fleet_proxies_table/proxy_warning.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import React from 'react'; | ||
import { FormattedMessage } from '@kbn/i18n-react'; | ||
import { EuiCallOut } from '@elastic/eui'; | ||
|
||
export const ProxyWarning: React.FunctionComponent<{}> = () => ( | ||
<EuiCallOut | ||
iconType="warning" | ||
color="warning" | ||
size="s" | ||
title={ | ||
<FormattedMessage | ||
id="xpack.fleet.settings.proxyWarning.warningTitle" | ||
defaultMessage="Be aware that changing the proxy settings may cause Elastic Agents to lose connectivity. Please ensure that agents have reachability to the proxy in the context that it is being used for." | ||
/> | ||
} | ||
/> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters