(existing, updated DockerConfigEntry)
| 177 | } |
| 178 | |
| 179 | func hasChanges(existing, updated DockerConfigEntry) bool { |
| 180 | return existing.Auth != updated.Auth || existing.Email != updated.Email |
| 181 | } |
| 182 | |
| 183 | func toPullSecretData(dockerConfig *DockerConfigJSON) (map[string][]byte, error) { |
| 184 | data, err := json.Marshal(dockerConfig) |