refactor: variableize yaml lane node naming
This commit is contained in:
@@ -20,7 +20,7 @@ import {
|
||||
type DeployJsonExecutorMirror,
|
||||
type DeployJsonServiceContract,
|
||||
} from "../deploy-json-contract";
|
||||
import { d601K3sGuardShellLines } from "../d601-k3s-guard";
|
||||
import { k3sGuardShellLines } from "../k3s-target-guard";
|
||||
import { composeRuntimeEnvValue } from "../runtime-env";
|
||||
|
||||
import type { ArtifactRegistryOptions, RenderedBundle, RenderedFile } from "./types";
|
||||
@@ -33,8 +33,8 @@ export function shellQuote(value: string): string {
|
||||
return `'${value.replace(/'/g, `'\\''`)}'`;
|
||||
}
|
||||
|
||||
export function d601K3sGuardScript(): string {
|
||||
return d601K3sGuardShellLines().join("\n");
|
||||
export function k3sTargetGuardScript(): string {
|
||||
return k3sGuardShellLines().join("\n");
|
||||
}
|
||||
|
||||
export function base64(value: string): string {
|
||||
|
||||
Reference in New Issue
Block a user