Add comment around default network of docker on getIpAddr of docker.go#511
Open
0405ysj wants to merge 1 commit intogoogle:mainfrom
Open
Add comment around default network of docker on getIpAddr of docker.go#5110405ysj wants to merge 1 commit intogoogle:mainfrom
0405ysj wants to merge 1 commit intogoogle:mainfrom
Conversation
3405691582
requested changes
Feb 25, 2026
ser-io
requested changes
Feb 25, 2026
e9d516c to
807de99
Compare
ser-io
requested changes
Feb 26, 2026
ser-io
approved these changes
Feb 26, 2026
3405691582
reviewed
Feb 26, 2026
5e913a2 to
d8e5449
Compare
3405691582
reviewed
Feb 27, 2026
Collaborator
Author
|
@3405691582 Gentle ping, would this be good to merge or I need more modifications? |
Collaborator
|
Sorry, I forgot to submit the comment. |
3405691582
reviewed
Mar 5, 2026
Comment on lines
+43
to
53
| // A DockerIMConfig contains configuration needs for Docker instance manager. | ||
| type DockerIMConfig struct { | ||
| DockerImageName string | ||
| // DockerImageName is the name and tag of docker image to use. For example, | ||
| // `cuttlefish-orchestration:latest`. | ||
| // We don't intend to support any customized docker images except | ||
| // `cuttlefish-orchestration`, which contains Host Orchestrator in it. | ||
| DockerImageName string | ||
| // HostOrchestratorPort is the port number of Host Orchestrator running on | ||
| // the docker instance. | ||
| HostOrchestratorPort int | ||
| } |
Collaborator
There was a problem hiding this comment.
The internal commentary is unnecessary. I think this should be enough:
Suggested change
| // A DockerIMConfig contains configuration needs for Docker instance manager. | |
| type DockerIMConfig struct { | |
| DockerImageName string | |
| // DockerImageName is the name and tag of docker image to use. For example, | |
| // `cuttlefish-orchestration:latest`. | |
| // We don't intend to support any customized docker images except | |
| // `cuttlefish-orchestration`, which contains Host Orchestrator in it. | |
| DockerImageName string | |
| // HostOrchestratorPort is the port number of Host Orchestrator running on | |
| // the docker instance. | |
| HostOrchestratorPort int | |
| } | |
| // A DockerIMConfig contains configuration needs for Docker instance manager. | |
| // | |
| // While the container image name is configurable, we do not intend or want | |
| // to support other containers or alternative command execution in | |
| // the `cuttlefish-orchestration` container. | |
| type DockerIMConfig struct { | |
| DockerImageName string | |
| HostOrchestratorPort int | |
| } |
3405691582
approved these changes
Mar 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.