OpenSearch: Add feature toggle for detecting version (#66386)

OpenSearch: Add feature toggle for auto-detecting version
This commit is contained in:
Isabella Siu
2023-04-14 13:59:31 -04:00
committed by GitHub
parent b2e32a70b9
commit 1b0cee491a
5 changed files with 14 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ Alpha features might be changed or removed without prior notice.
| `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different | | `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different |
| `authenticationConfigUI` | Enables authentication configuration UI | | `authenticationConfigUI` | Enables authentication configuration UI |
| `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order, CSV upload and advanced mode | | `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order, CSV upload and advanced mode |
| `opensearchDetectVersion` | Enable version detection in OpenSearch |
## Development feature toggles ## Development feature toggles

View File

@@ -97,4 +97,5 @@ export interface FeatureToggles {
enableElasticsearchBackendQuerying?: boolean; enableElasticsearchBackendQuerying?: boolean;
authenticationConfigUI?: boolean; authenticationConfigUI?: boolean;
advancedDataSourcePicker?: boolean; advancedDataSourcePicker?: boolean;
opensearchDetectVersion?: boolean;
} }

View File

@@ -526,5 +526,12 @@ var (
FrontendOnly: true, FrontendOnly: true,
Owner: grafanaDashboardsSquad, Owner: grafanaDashboardsSquad,
}, },
{
Name: "opensearchDetectVersion",
Description: "Enable version detection in OpenSearch",
State: FeatureStateAlpha,
FrontendOnly: true,
Owner: awsPluginsSquad,
},
} }
) )

View File

@@ -78,3 +78,4 @@ useCachingService,stable,@grafana/grafana-operator-experience-squad,false,false,
enableElasticsearchBackendQuerying,beta,@grafana/observability-logs,false,false,false,false enableElasticsearchBackendQuerying,beta,@grafana/observability-logs,false,false,false,false
authenticationConfigUI,alpha,@grafana/grafana-authnz-team,false,false,false,false authenticationConfigUI,alpha,@grafana/grafana-authnz-team,false,false,false,false
advancedDataSourcePicker,alpha,@grafana/dashboards-squad,false,false,false,true advancedDataSourcePicker,alpha,@grafana/dashboards-squad,false,false,false,true
opensearchDetectVersion,alpha,@grafana/aws-plugins,false,false,false,true
1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
78 enableElasticsearchBackendQuerying beta @grafana/observability-logs false false false false
79 authenticationConfigUI alpha @grafana/grafana-authnz-team false false false false
80 advancedDataSourcePicker alpha @grafana/dashboards-squad false false false true
81 opensearchDetectVersion alpha @grafana/aws-plugins false false false true

View File

@@ -322,4 +322,8 @@ const (
// FlagAdvancedDataSourcePicker // FlagAdvancedDataSourcePicker
// Enable a new data source picker with contextual information, recently used order, CSV upload and advanced mode // Enable a new data source picker with contextual information, recently used order, CSV upload and advanced mode
FlagAdvancedDataSourcePicker = "advancedDataSourcePicker" FlagAdvancedDataSourcePicker = "advancedDataSourcePicker"
// FlagOpensearchDetectVersion
// Enable version detection in OpenSearch
FlagOpensearchDetectVersion = "opensearchDetectVersion"
) )