| 17 | ) |
| 18 | |
| 19 | type diffConfig struct { |
| 20 | args string |
| 21 | values []string |
| 22 | retainValuesFiles bool |
| 23 | set []string |
| 24 | validate bool |
| 25 | skipCRDs bool |
| 26 | skipDeps bool |
| 27 | includeTests bool |
| 28 | includeNeeds bool |
| 29 | skipNeeds bool |
| 30 | suppress []string |
| 31 | suppressSecrets bool |
| 32 | showSecrets bool |
| 33 | suppressDiff bool |
| 34 | noColor bool |
| 35 | context int |
| 36 | diffOutput string |
| 37 | concurrency int |
| 38 | detailedExitcode bool |
| 39 | interactive bool |
| 40 | skipDiffOnInstall bool |
| 41 | logger *zap.SugaredLogger |
| 42 | } |
| 43 | |
| 44 | func (a diffConfig) Args() string { |
| 45 | return a.args |
nothing calls this directly
no outgoing calls
no test coverage detected