(namespace, name string)
| 186 | } |
| 187 | |
| 188 | func getName(namespace, name string) string { |
| 189 | if namespace != "" { |
| 190 | name = fmt.Sprintf("%s/%s", namespace, name) |
| 191 | } |
| 192 | return name |
| 193 | } |
| 194 | |
| 195 | func (c Client) DoRolloutWait(ctx context.Context, key types.NamespacedName) error { |
| 196 | onceNotFound := sync.Once{} |