Add support for ScaledJob (#436)

* Added ScaledJob support

* Fixed getReplicaCount error

* Fixed file length error in fileUtils.test.ts

* Adjust scaledJob spec path

* Made updateImagesInK8sObj more concise
This commit is contained in:
benjamin
2025-07-17 13:21:46 -04:00
committed by GitHub
parent 7a954ab84c
commit 4755eabeba
8 changed files with 256 additions and 104 deletions
+2 -2
View File
@@ -49,7 +49,7 @@ describe('File utils', () => {
'test/unit/manifests/basic-test.yml'
]
expect(testSearch).toHaveLength(9)
expect(testSearch).toHaveLength(10)
expectedManifests.forEach((fileName) => {
if (fileName.startsWith('test/unit')) {
expect(testSearch).toContain(fileName)
@@ -95,7 +95,7 @@ describe('File utils', () => {
fileAtOuter,
innerPath
])
).toHaveLength(8)
).toHaveLength(9)
})
it('throws an error for an invalid URL', async () => {