(v string)
| 206 | } |
| 207 | |
| 208 | func compactValue(v string) string { |
| 209 | var compact bytes.Buffer |
| 210 | if err := json.Compact(&compact, []byte(v)); err != nil { |
| 211 | panic("Hard coded json strings broken!") |
| 212 | } |
| 213 | return compact.String() |
| 214 | } |
| 215 | |
| 216 | func (c *Controller) initPodServiceAccount() { |
| 217 |
no test coverage detected