server management
Some checks failed
Build and Deploy / Build and push image (push) Failing after 5m50s
Build and Deploy / Deploy to server (push) Has been skipped

This commit is contained in:
Nils Blomgren
2026-06-11 15:09:31 +02:00
parent 343de77810
commit 5da40698ad
152 changed files with 121747 additions and 3884 deletions

View File

@@ -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; } = [];
}