fix: return new error when no ncs found in nnc crd (#2061)

Co-authored-by: Jaeryn <tsch@microsoft.com>
This commit is contained in:
Jaeryn 2023-07-17 10:29:48 -07:00 коммит произвёл GitHub
Родитель 8f5a2b20c4
Коммит dc37cef19e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1032,9 +1032,11 @@ func reconcileInitialCNSState(ctx context.Context, cli nodeNetworkConfigGetter,
return errors.Wrap(err, "failed to init CNS state: failed to get NNC CRD")
}
logger.Printf("Retrieved NNC: %+v", nnc)
// If there are no NCs, we can't initialize our state and we should fail out.
if len(nnc.Status.NetworkContainers) == 0 {
return errors.Wrap(err, "failed to init CNS state: no NCs found in NNC CRD")
return errors.New("failed to init CNS state: no NCs found in NNC CRD")
}
// For each NC, we need to create a CreateNetworkContainerRequest and use it to rebuild our state.