Dependency holds the dependency config and has an id
| 10 | |
| 11 | // Dependency holds the dependency config and has an id |
| 12 | type Dependency struct { |
| 13 | name string |
| 14 | absolutePath string |
| 15 | root bool |
| 16 | localConfig config.Config |
| 17 | |
| 18 | children []types.Dependency |
| 19 | |
| 20 | dependencyConfig *latest.DependencyConfig |
| 21 | dependencyCache localcache.Cache |
| 22 | |
| 23 | kubeClient kubectl.Client |
| 24 | } |
| 25 | |
| 26 | // Implement Interface Methods |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected