mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-26 14:49:26 +08:00
Fixing annotations
This commit is contained in:
@@ -149,7 +149,7 @@ function getFilePathsConfigs() {
|
||||
const DOCKERFILE_PATH_KEY = 'dockerfilePath';
|
||||
const CONTAINER_REG_KEY = 'containerRegistryServer';
|
||||
let inputManifestFiles = inputParams.manifests || [];
|
||||
filePathsConfig[MANIFEST_PATHS_KEY] = inputManifestFiles;
|
||||
filePathsConfig[MANIFEST_PATHS_KEY] = JSON.stringify(inputManifestFiles);
|
||||
let helmChartPath = process.env.HELM_CHART_PATH || '';
|
||||
filePathsConfig[HELM_CHART_KEY] = helmChartPath;
|
||||
//Fetch labels from each image
|
||||
@@ -200,7 +200,7 @@ function getFilePathsConfigs() {
|
||||
}
|
||||
}
|
||||
}
|
||||
filePathsConfig[BUILD_CONFIG_KEY] = imageToBuildConfigMap;
|
||||
filePathsConfig[BUILD_CONFIG_KEY] = JSON.stringify(imageToBuildConfigMap);
|
||||
return Promise.resolve(filePathsConfig);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user