-
Notifications
You must be signed in to change notification settings - Fork 180
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
Epif cleanup #16
Epif cleanup #16
Conversation
@@ -85,8 +85,6 @@ type EndpointDriver interface { | |||
CreateEndpoint(id string) error | |||
DeleteEndpoint(value string) error | |||
MakeEndpointAddress() (*Address, error) | |||
GetEndpointContainerContext(id string) (*ContainerEpContext, error) | |||
GetContainerEpContextByContName(contName string) ([]ContainerEpContext, error) | |||
UpdateContainerId(id string, contId string) error |
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.
Suggest to move the UpdateContainerId() out as well? Please ignore, if you were planning it for later.
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.
Update ContainerID is just a name of the function, there is nothing specific to container runtime there. I was hoping to not do updates to Ep record from oustide drivers code.
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.
hmm, it does imply that Endpoint driver Interface has something to do with containers, which is not the case.
Looks like this API updates the container-id in the EP oper-state in current implementation, should we just do it as part of attach/detach endpoint in the crt's logic? this looks more like some config meta for container runtime than network programming driver.
remove client dependency on modeldb
@mapuri - can you please review these changes; this moves container runtime out of netplugin. This is one of the target code cleanup work we identified. Please ignore the request from contiv account.