@@ -230,24 +230,28 @@ func FillLayoutsWithBasicDeckhouseImages(
230
230
layouts .DeckhouseImages [pullParams .DeckhouseRegistryRepo + ":early-access" ] = struct {}{}
231
231
layouts .DeckhouseImages [pullParams .DeckhouseRegistryRepo + ":stable" ] = struct {}{}
232
232
layouts .DeckhouseImages [pullParams .DeckhouseRegistryRepo + ":rock-solid" ] = struct {}{}
233
+ layouts .DeckhouseImages [pullParams .DeckhouseRegistryRepo + ":lts" ] = struct {}{}
233
234
234
235
layouts .InstallImages [pullParams .DeckhouseRegistryRepo + "/install:alpha" ] = struct {}{}
235
236
layouts .InstallImages [pullParams .DeckhouseRegistryRepo + "/install:beta" ] = struct {}{}
236
237
layouts .InstallImages [pullParams .DeckhouseRegistryRepo + "/install:early-access" ] = struct {}{}
237
238
layouts .InstallImages [pullParams .DeckhouseRegistryRepo + "/install:stable" ] = struct {}{}
238
239
layouts .InstallImages [pullParams .DeckhouseRegistryRepo + "/install:rock-solid" ] = struct {}{}
240
+ layouts .InstallImages [pullParams .DeckhouseRegistryRepo + "/install:lts" ] = struct {}{}
239
241
240
242
layouts .InstallStandaloneImages [pullParams .DeckhouseRegistryRepo + "/install-standalone:alpha" ] = struct {}{}
241
243
layouts .InstallStandaloneImages [pullParams .DeckhouseRegistryRepo + "/install-standalone:beta" ] = struct {}{}
242
244
layouts .InstallStandaloneImages [pullParams .DeckhouseRegistryRepo + "/install-standalone:early-access" ] = struct {}{}
243
245
layouts .InstallStandaloneImages [pullParams .DeckhouseRegistryRepo + "/install-standalone:stable" ] = struct {}{}
244
246
layouts .InstallStandaloneImages [pullParams .DeckhouseRegistryRepo + "/install-standalone:rock-solid" ] = struct {}{}
247
+ layouts .InstallStandaloneImages [pullParams .DeckhouseRegistryRepo + "/install-standalone:lts" ] = struct {}{}
245
248
246
249
layouts .ReleaseChannelImages [pullParams .DeckhouseRegistryRepo + "/release-channel:alpha" ] = struct {}{}
247
250
layouts .ReleaseChannelImages [pullParams .DeckhouseRegistryRepo + "/release-channel:beta" ] = struct {}{}
248
251
layouts .ReleaseChannelImages [pullParams .DeckhouseRegistryRepo + "/release-channel:early-access" ] = struct {}{}
249
252
layouts .ReleaseChannelImages [pullParams .DeckhouseRegistryRepo + "/release-channel:stable" ] = struct {}{}
250
253
layouts .ReleaseChannelImages [pullParams .DeckhouseRegistryRepo + "/release-channel:rock-solid" ] = struct {}{}
254
+ layouts .ReleaseChannelImages [pullParams .DeckhouseRegistryRepo + "/release-channel:lts" ] = struct {}{}
251
255
}
252
256
253
257
func FindDeckhouseModulesImages (
@@ -270,6 +274,7 @@ func FindDeckhouseModulesImages(
270
274
path .Join (params .DeckhouseRegistryRepo , params .ModulesPathSuffix , module .Name , "release" ) + ":early-access" : {},
271
275
path .Join (params .DeckhouseRegistryRepo , params .ModulesPathSuffix , module .Name , "release" ) + ":stable" : {},
272
276
path .Join (params .DeckhouseRegistryRepo , params .ModulesPathSuffix , module .Name , "release" ) + ":rock-solid" : {},
277
+ path .Join (params .DeckhouseRegistryRepo , params .ModulesPathSuffix , module .Name , "release" ) + ":lts" : {},
273
278
}
274
279
}
275
280
0 commit comments