RevValues tracks Helm values representations.
| 21 | |
| 22 | // RevValues tracks Helm values representations. |
| 23 | type RevValues struct { |
| 24 | gvr *client.GVR |
| 25 | inUpdate int32 |
| 26 | path string |
| 27 | rev string |
| 28 | query string |
| 29 | lines []string |
| 30 | allValues bool |
| 31 | listeners []ResourceViewerListener |
| 32 | options ViewerToggleOpts |
| 33 | } |
| 34 | |
| 35 | // NewRevValues return a new Helm values resource model. |
| 36 | func NewRevValues(gvr *client.GVR, path, rev string) *RevValues { |
nothing calls this directly
no outgoing calls
no test coverage detected