ClusterRuntimeInfo holds cluster runtime information
| 38 | |
| 39 | // ClusterRuntimeInfo holds cluster runtime information |
| 40 | type ClusterRuntimeInfo interface { |
| 41 | // GetApiVersions returns supported api versions |
| 42 | GetApiVersions() []string |
| 43 | // GetKubeVersion returns cluster API version |
| 44 | GetKubeVersion() string |
| 45 | } |
| 46 | |
| 47 | // CachedManifestResponse represents a cached result of a previous manifest generation operation, including the caching |
| 48 | // of a manifest generation error, plus additional information on previous failures |
no outgoing calls
no test coverage detected