Class StorageSettings
- Namespace
- Ando.Server.Configuration
- Assembly
- Ando.Server.dll
Configuration for artifact and data storage.
public class StorageSettings
- Inheritance
-
StorageSettings
- Inherited Members
Fields
SectionName
Configuration section name in appsettings.json.
public const string SectionName = "Storage"
Field Value
Properties
ArtifactRetentionDays
Number of days to retain build artifacts before automatic deletion. Default is 30 days.
public int ArtifactRetentionDays { get; set; }
Property Value
ArtifactsPath
Root path for artifact storage. Should be a Docker volume.
public string ArtifactsPath { get; set; }
Property Value
BuildLogRetentionDays
Number of days to retain build logs before deletion. Default is 90 days.
public int BuildLogRetentionDays { get; set; }