KustomizeAnalyzer¶
-
class
neophile.analysis.kustomize.
KustomizeAnalyzer
(scanner: KustomizeScanner, inventory: GitHubInventory)¶ Bases:
neophile.analysis.base.BaseAnalyzer
Analyze a tree for needed Kustomize updates.
Parameters: - scanner (
neophile.scanner.kustomize.KustomizeScanner
) – Scanner for Kustomize dependencies. - inventory (
neophile.inventory.github.GitHubInventory
) – Inventory for GitHub tags.
Methods Summary
analyze
(update)Analyze a tree and return a list of needed Kustomize changes. name
()The name of the analyzer type. Methods Documentation
-
analyze
(update: bool = False) → List[Update]¶ Analyze a tree and return a list of needed Kustomize changes.
Parameters: update ( bool
, optional) – Ignored for this analyzer.Returns: results – A list of updates. Return type: List[ neophile.update.base.Update
]
- scanner (