- Add PendingServiceDiscovery model and database migration - Add PendingServices API controller for service assignment - Add KubernetesPendingSyncService for background sync - Add RBAC configuration for K8s service discovery - Update Dockerfile and K8s deployment configs - Add service discovery design documentation Workflow: K8s services with label managed-by=yarp are discovered and stored in pending table. Admin approves before they become active gateway downstream services.
65 lines
3.2 KiB
C#
65 lines
3.2 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace YarpGateway.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddPendingServiceDiscovery : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "PendingServiceDiscoveries",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
K8sServiceName = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: false),
|
|
K8sNamespace = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: false),
|
|
K8sClusterIP = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
DiscoveredPorts = table.Column<string>(type: "character varying(500)", maxLength: 500, nullable: false),
|
|
Labels = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: false),
|
|
PodCount = table.Column<int>(type: "integer", nullable: false),
|
|
Status = table.Column<int>(type: "integer", nullable: false),
|
|
AssignedClusterId = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
|
AssignedBy = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
|
AssignedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
DiscoveredAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false),
|
|
Version = table.Column<int>(type: "integer", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_PendingServiceDiscoveries", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_PendingServiceDiscoveries_DiscoveredAt",
|
|
table: "PendingServiceDiscoveries",
|
|
column: "DiscoveredAt");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_PendingServiceDiscoveries_K8sServiceName_K8sNamespace_IsDel~",
|
|
table: "PendingServiceDiscoveries",
|
|
columns: new[] { "K8sServiceName", "K8sNamespace", "IsDeleted" },
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_PendingServiceDiscoveries_Status",
|
|
table: "PendingServiceDiscoveries",
|
|
column: "Status");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "PendingServiceDiscoveries");
|
|
}
|
|
}
|
|
}
|