server management
This commit is contained in:
@@ -82,7 +82,13 @@ public class AppDeployment
|
||||
// ── Git source fields (only used when Type is GitYaml, GitHelm, or GitAppOfApps) ──
|
||||
|
||||
/// <summary>
|
||||
/// The registered GitRepository to sync from.
|
||||
/// The URL of the Git repository to sync from. Used for policy-credential-based
|
||||
/// git access (no GitRepository record required). Takes precedence over GitRepositoryId.
|
||||
/// </summary>
|
||||
public string? GitUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Legacy: FK to a registered GitRepository. Superseded by GitUrl for new deployments.
|
||||
/// </summary>
|
||||
public Guid? GitRepositoryId { get; set; }
|
||||
|
||||
@@ -132,4 +138,5 @@ public class AppDeployment
|
||||
public ICollection<StorageBinding> StorageBindings { get; set; } = [];
|
||||
public ICollection<DatabaseBinding> DatabaseBindings { get; set; } = [];
|
||||
public ICollection<CacheBinding> CacheBindings { get; set; } = [];
|
||||
public ICollection<AppDeploymentRoute> Routes { get; set; } = [];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user