fix: preinstall 71freq hwpod runtime config
This commit is contained in:
@@ -932,6 +932,33 @@ function applyDeployEnv(envList, deployService, namespace, profile = "dev") {
|
||||
}
|
||||
}
|
||||
|
||||
function applyDeployConfigMapMounts(podSpec, container, deployService) {
|
||||
const mounts = Array.isArray(deployService?.configMapMounts) ? deployService.configMapMounts : [];
|
||||
if (mounts.length === 0 || !podSpec || !container) return;
|
||||
podSpec.volumes ??= [];
|
||||
container.volumeMounts ??= [];
|
||||
for (const mount of mounts) {
|
||||
const name = String(mount?.name ?? "").trim();
|
||||
const configMapName = String(mount?.configMapName ?? "").trim();
|
||||
const mountPath = String(mount?.mountPath ?? "").trim();
|
||||
if (!name || !configMapName || !mountPath) continue;
|
||||
const items = Array.isArray(mount.items)
|
||||
? mount.items
|
||||
.map((item) => ({ key: String(item?.key ?? "").trim(), path: String(item?.path ?? "").trim() }))
|
||||
.filter((item) => item.key && item.path)
|
||||
: [];
|
||||
const volume = { name, configMap: { name: configMapName } };
|
||||
if (items.length > 0) volume.configMap.items = items;
|
||||
const existingVolume = podSpec.volumes.find((entry) => entry?.name === name);
|
||||
if (existingVolume) Object.assign(existingVolume, volume);
|
||||
else podSpec.volumes.push(volume);
|
||||
const volumeMount = { name, mountPath, readOnly: mount.readOnly !== false };
|
||||
const existingMount = container.volumeMounts.find((entry) => entry?.name === name);
|
||||
if (existingMount) Object.assign(existingMount, volumeMount);
|
||||
else container.volumeMounts.push(volumeMount);
|
||||
}
|
||||
}
|
||||
|
||||
function removeV02LegacySimulatorEnv(envList) {
|
||||
if (!Array.isArray(envList)) return envList;
|
||||
return envList.filter((entry) => !v02RemovedServiceEnvNames.has(entry?.name));
|
||||
@@ -1327,6 +1354,7 @@ function transformWorkloads({ workloads, deploy, catalog, source, sourceBranch =
|
||||
if (Object.hasOwn(entry, "value")) entry.value = namespaceScopedHost(entry.value, namespace);
|
||||
}
|
||||
applyDeployEnv(container.env, deployService, namespace, profile);
|
||||
applyDeployConfigMapMounts(podTemplate.spec, container, deployService);
|
||||
if (runtimeLane) container.env = removeV02LegacySimulatorEnv(container.env);
|
||||
upsertEnv(container.env, "HWLAB_ENVIRONMENT", profileLabel);
|
||||
upsertEnv(container.env, "HWLAB_COMMIT_ID", runtimeCommit);
|
||||
@@ -5368,9 +5396,37 @@ function workbenchRuntimeRedisManifest({ profile = "v03", config, source }) {
|
||||
};
|
||||
}
|
||||
|
||||
function runtimeKustomization({ profile = "dev", includeDeviceAgent = profile === "dev", externalPostgres = false, workbenchRedis = false } = {}) {
|
||||
function runtimeConfigMapsForProfile(deploy, profile) {
|
||||
if (!isRuntimeLane(profile)) return [];
|
||||
const configMaps = deploy?.lanes?.[profile]?.configMaps;
|
||||
if (!Array.isArray(configMaps)) return [];
|
||||
return configMaps
|
||||
.map((configMap) => cloneJson(configMap))
|
||||
.filter((configMap) => typeof configMap?.name === "string" && configMap.name.trim() && configMap.data && typeof configMap.data === "object" && !Array.isArray(configMap.data));
|
||||
}
|
||||
|
||||
function runtimeConfigMapsManifest({ configMaps, namespace, labels, annotations }) {
|
||||
return {
|
||||
apiVersion: "v1",
|
||||
kind: "List",
|
||||
items: configMaps.map((configMap) => ({
|
||||
apiVersion: "v1",
|
||||
kind: "ConfigMap",
|
||||
metadata: {
|
||||
name: configMap.name,
|
||||
namespace,
|
||||
labels: { ...labels, ...(configMap.labels ?? {}) },
|
||||
annotations: { ...annotations, ...(configMap.annotations ?? {}) }
|
||||
},
|
||||
data: Object.fromEntries(Object.entries(configMap.data).map(([key, value]) => [key, String(value)]))
|
||||
}))
|
||||
};
|
||||
}
|
||||
|
||||
function runtimeKustomization({ profile = "dev", includeDeviceAgent = profile === "dev", externalPostgres = false, workbenchRedis = false, runtimeConfigMaps = false } = {}) {
|
||||
const resources = ["namespace.yaml", "services.yaml", "health-contract.yaml", "workloads.yaml", "deepseek-proxy.yaml"];
|
||||
if (!isRuntimeLane(profile)) resources.splice(1, 0, "code-agent-codex-config.yaml");
|
||||
if (runtimeConfigMaps) resources.splice(3, 0, "configmaps.yaml");
|
||||
if (isRuntimeLane(profile)) {
|
||||
if (externalPostgres) resources.push("external-postgres.yaml");
|
||||
else resources.push("postgres.yaml");
|
||||
@@ -5510,6 +5566,7 @@ async function plannedFiles(args) {
|
||||
const includeDeviceAgent = profile === "dev";
|
||||
const externalPostgres = externalPostgresConfigForLane(deploy, profile);
|
||||
const workbenchRedis = workbenchRuntimeRedisConfigForProfile(deploy, profile);
|
||||
const runtimeConfigMaps = runtimeConfigMapsForProfile(deploy, profile);
|
||||
const profileLabels = { ...baseLabels, "hwlab.pikastech.local/environment": runtimeLabelForProfile(profile), "hwlab.pikastech.local/profile": runtimeLabelForProfile(profile) };
|
||||
const runtimeNamespace = cloneJson(namespaceTemplate);
|
||||
runtimeNamespace.metadata.name = namespace;
|
||||
@@ -5517,11 +5574,12 @@ async function plannedFiles(args) {
|
||||
annotate(runtimeNamespace.metadata, annotations);
|
||||
const runtimePath = runtimePathForProfile(profile);
|
||||
const endpoints = profileEndpoint(args, profile);
|
||||
putJson(`${runtimePath}/kustomization.yaml`, runtimeKustomization({ profile, includeDeviceAgent, externalPostgres: Boolean(externalPostgres), workbenchRedis: Boolean(workbenchRedis) }));
|
||||
putJson(`${runtimePath}/kustomization.yaml`, runtimeKustomization({ profile, includeDeviceAgent, externalPostgres: Boolean(externalPostgres), workbenchRedis: Boolean(workbenchRedis), runtimeConfigMaps: runtimeConfigMaps.length > 0 }));
|
||||
putJson(`${runtimePath}/namespace.yaml`, runtimeNamespace);
|
||||
if (!isRuntimeLane(profile)) putJson(`${runtimePath}/code-agent-codex-config.yaml`, transformListNamespace(config, namespace, profileLabels, annotations));
|
||||
putJson(`${runtimePath}/services.yaml`, transformServices({ services, namespace, labels: profileLabels, annotations, profile, deploy }));
|
||||
putJson(`${runtimePath}/health-contract.yaml`, transformHealthContract(health, namespace, profileLabels, annotations, endpoints.runtimeEndpoint, endpoints.webEndpoint, profile));
|
||||
if (runtimeConfigMaps.length > 0) putJson(`${runtimePath}/configmaps.yaml`, runtimeConfigMapsManifest({ configMaps: runtimeConfigMaps, namespace, labels: profileLabels, annotations }));
|
||||
putJson(`${runtimePath}/workloads.yaml`, transformWorkloads({ workloads, deploy, catalog: artifactCatalog, source, sourceBranch: args.sourceBranch, gitReadUrl: args.gitReadUrl, registryPrefix: args.registryPrefix, runtimeEndpoint: endpoints.runtimeEndpoint, webEndpoint: endpoints.webEndpoint, profile, useDeployImages: args.useDeployImages, metricsSidecarSha256 }));
|
||||
putJson(`${runtimePath}/deepseek-proxy.yaml`, deepSeekProxyManifest({ profile, source, sourceBranch: args.sourceBranch, sourceRepo: args.sourceRepo, gitReadUrl: args.gitReadUrl, deploy, registryPrefix: args.registryPrefix, catalog: artifactCatalog, useDeployImages: args.useDeployImages, metricsSidecarSha256 }));
|
||||
if (isRuntimeLane(profile) && externalPostgres) putJson(`${runtimePath}/external-postgres.yaml`, externalPostgresManifest({ profile, config: externalPostgres, source }));
|
||||
|
||||
Reference in New Issue
Block a user