add UpdateRuntimeConfig interface

This commit is contained in:
Minhan Xia
2016-10-07 12:32:57 -07:00
parent ead65fc25f
commit 480bcb9760
8 changed files with 329 additions and 183 deletions

View File

@@ -252,3 +252,7 @@ func (r *RemoteRuntimeService) ContainerStatus(containerID string) (*runtimeApi.
func (r *RemoteRuntimeService) Exec(containerID string, cmd []string, tty bool, stdin io.Reader, stdout, stderr io.WriteCloser) error {
return fmt.Errorf("Not implemented")
}
func (r *RemoteRuntimeService) UpdateRuntimeConfig(runtimeConfig *runtimeApi.RuntimeConfig) error {
return nil
}