(secret string)
| 164 | } |
| 165 | |
| 166 | func (d Daemonset) WithPullSecret(secret string) Daemonset { |
| 167 | d.Spec.Template.Spec.ImagePullSecrets = []corev1.LocalObjectReference{{Name: secret}} |
| 168 | return d |
| 169 | } |
| 170 | |
| 171 | func (d Daemonset) WithRuntimeClassName(name string) Daemonset { |
| 172 | d.Spec.Template.Spec.RuntimeClassName = &name |
no outgoing calls
no test coverage detected