(name string)
| 200 | } |
| 201 | |
| 202 | func APIConfigVolume(name string) kcore.Volume { |
| 203 | return kcore.Volume{ |
| 204 | Name: name, |
| 205 | VolumeSource: kcore.VolumeSource{ |
| 206 | ConfigMap: &kcore.ConfigMapVolumeSource{ |
| 207 | LocalObjectReference: kcore.LocalObjectReference{ |
| 208 | Name: name, |
| 209 | }, |
| 210 | }, |
| 211 | }, |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | func ClientConfigVolume() kcore.Volume { |
| 216 | return kcore.Volume{ |
no outgoing calls
no test coverage detected