-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libnetwork: extend API to support NetworkUpdate
#1249
libnetwork: extend API to support NetworkUpdate
#1249
Conversation
094d3ef
to
5c77d6c
Compare
@Luap99 PTAL |
03f9b1e
to
ea17a7e
Compare
ea17a7e
to
f714653
Compare
f714653
to
db42c65
Compare
Needs a rebase. |
f69f85c
to
b62be2b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: flouthoc, Luap99 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@containers/podman-maintainers PTAL |
New features in netavark/aardvark allows users to update network dns servers and all the containers attached to those networks uses updated resolvers. Following PR adds support in `libnetwork` to support * Add support for higher level `NetworkUpdate` API * Add support for `Update` exec call which can invoke netavark with a new update option added here: containers/netavark#503 Signed-off-by: Aditya R <arajan@redhat.com>
b62be2b
to
403bec6
Compare
Weird network errors in CI |
@containers/podman-maintainers PTAL and merge. |
@@ -19,6 +20,65 @@ import ( | |||
"github.com/containers/storage/pkg/stringid" | |||
) | |||
|
|||
func sliceRemoveDuplicates(strList []string) []string { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function might be more useful in pkg/util.
Not blocking
/lgtm |
New features in netavark/aardvark allows users to update network dns servers and all the containers attached to those networks uses updated resolvers.
Following PR adds support in
libnetwork
to supportNetworkUpdate
APIUpdate
exec call which can invoke netavark with a new update option added here: update: add support fornetavark update
command netavark#503