Push is the action for uploading a chart. It provides the implementation of 'helm push'.
| 30 | // |
| 31 | // It provides the implementation of 'helm push'. |
| 32 | type Push struct { |
| 33 | Settings *cli.EnvSettings |
| 34 | cfg *Configuration |
| 35 | certFile string |
| 36 | keyFile string |
| 37 | caFile string |
| 38 | insecureSkipTLSVerify bool |
| 39 | plainHTTP bool |
| 40 | out io.Writer |
| 41 | } |
| 42 | |
| 43 | // PushOpt is a type of function that sets options for a push action. |
| 44 | type PushOpt func(*Push) |
nothing calls this directly
no outgoing calls
no test coverage detected