@@ -143,6 +143,7 @@ ProcessApplicationResult ProcessApplication(ArgoCDApplicationDto application,
143143 return result ;
144144 }
145145
146+ /// <returns>Images that were updated</returns>
146147 HashSet < string > ProcessSource ( ApplicationSourceWithMetadata sourceWithMetadata ,
147148 Application applicationFromYaml ,
148149 bool containsMultipleSources ,
@@ -204,6 +205,7 @@ HashSet<string> ProcessSource(ApplicationSourceWithMetadata sourceWithMetadata,
204205 }
205206 }
206207
208+ /// <returns>Images that were updated</returns>
207209 HashSet < string > ProcessKustomize ( Dictionary < string , GitCredentialDto > gitCredentials ,
208210 RepositoryFactory repositoryFactory ,
209211 UpdateArgoCDAppDeploymentConfig deploymentConfig ,
@@ -241,6 +243,7 @@ HashSet<string> ProcessKustomize(Dictionary<string, GitCredentialDto> gitCredent
241243 return new HashSet < string > ( ) ;
242244 }
243245
246+ /// <returns>Images that were updated</returns>
244247 HashSet < string > ProcessRef ( Application applicationFromYaml ,
245248 Dictionary < string , GitCredentialDto > gitCredentials ,
246249 RepositoryFactory repositoryFactory ,
@@ -268,7 +271,8 @@ HashSet<string> ProcessRef(Application applicationFromYaml,
268271
269272 return updatedImages ;
270273 }
271-
274+
275+ /// <returns>Images that were updated</returns>
272276 HashSet < string > ProcessDirectory ( Dictionary < string , GitCredentialDto > gitCredentials ,
273277 RepositoryFactory repositoryFactory ,
274278 UpdateArgoCDAppDeploymentConfig deploymentConfig ,
@@ -301,6 +305,7 @@ HashSet<string> ProcessDirectory(Dictionary<string, GitCredentialDto> gitCredent
301305 return new HashSet < string > ( ) ;
302306 }
303307
308+ /// <returns>Images that were updated</returns>
304309 HashSet < string > ProcessHelm ( Application applicationFromYaml ,
305310 ApplicationSourceWithMetadata sourceWithMetadata ,
306311 Dictionary < string , GitCredentialDto > gitCredentials ,
@@ -347,6 +352,7 @@ HashSet<string> ProcessHelm(Application applicationFromYaml,
347352 valuesFilesToUpdate ) ;
348353 }
349354
355+ /// <returns>Images that were updated</returns>
350356 HashSet < string > ProcessHelmUpdateTargets ( RepositoryWrapper repository ,
351357 UpdateArgoCDAppDeploymentConfig deploymentConfig ,
352358 ApplicationSource source ,
0 commit comments