Cfg: Add a setting to configure if the local file system is available (#83616)

* Introduce environment.local_filesystem_available

* Only show TLS client cert, client key, client ca when local_filesystem_available is true

* Rename LocalFSAvailable to LocalFileSystemAvailable
This commit is contained in:
Misi
2024-03-01 10:39:50 +01:00
committed by GitHub
parent 2532047e7a
commit 75b020c19d
7 changed files with 16 additions and 0 deletions

View File

@@ -226,6 +226,7 @@ export interface GrafanaConfig {
sqlConnectionLimits: SqlConnectionLimits;
sharedWithMeFolderUID?: string;
rootFolderUID?: string;
localFileSystemAvailable?: boolean;
// The namespace to use for kubernetes apiserver requests
namespace: string;

View File

@@ -171,6 +171,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
disableFrontendSandboxForPlugins: string[] = [];
sharedWithMeFolderUID: string | undefined;
rootFolderUID: string | undefined;
localFileSystemAvailable: boolean | undefined;
constructor(options: GrafanaBootConfig) {
this.bootData = options.bootData;