-
Notifications
You must be signed in to change notification settings - Fork 27
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
[WIP] Network Mounted Volumes - docker based solution #224
base: develop
Are you sure you want to change the base?
Conversation
dockerozed seaweedfs, doesn't change any database behaviour as of now no breaking changes
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.
Few requested changes
Rest L.G.T.M
@@ -98,3 +99,44 @@ func setupDatabaseContainer(serviceName string) { | |||
} | |||
} | |||
} | |||
|
|||
func setupSeaweedfsContainer(serviceName 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.
In this function change serviceName -> seaweedType
utils.LogInfo("No %s instance found in host. Building the instance.", strings.Title(serviceName)) | ||
containerID, err := seaweedfs.SetupSeaweedfsInstance(serviceName) | ||
if err != nil { | ||
utils.Log("There was a problem deploying %s service.", strings.Title(serviceName), utils.ErrorTAG) |
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.
utils.Log("There was a problem deploying %s service.", strings.Title(serviceName), utils.ErrorTAG) | |
utils.Log("There was a problem deploying %s seaweedType", strings.Title(serviceName), utils.ErrorTAG) |
if containerCfg.Name == types.SeaweedFiler { | ||
err := os.MkdirAll("seaweed/seaweed-filer-storage/filerldb2", 0777) | ||
if err != nil { | ||
println(err.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.
Shouldn't here be return statement instead of print
}, | ||
PortBindings: nat.PortMap{ | ||
nat.Port(containerPortRule1): []nat.PortBinding{{ | ||
HostIP: "", |
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.
HostIP: "", | |
HostIP: "0.0.0.0", |
HostIP: "", | ||
HostPort: fmt.Sprintf("%d", containerCfg.ContainerPort1)}}, | ||
nat.Port(containerPortRule2): []nat.PortBinding{{ | ||
HostIP: "", |
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.
HostIP: "", | |
HostIP: "0.0.0.0", |
@@ -92,6 +92,18 @@ func startAppMakerService() error { | |||
} | |||
|
|||
func startMasterService() error { | |||
|
|||
checkAndPullImages("chrislusf/seaweedfs") | |||
err := os.MkdirAll("seaweed/seaweed-filer-storage/filerldb2", 0777) |
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.
What does ldb2 signify in filerldb2 ? and Is it necessary to name it so
//SeaweedCronjob is the cronjob service for Seaweedfs | ||
SeaweedCronjob = "seaweed_cronjob" | ||
|
||
//SeaweedS3 is the Seaweed service that provides support for AmazonS3 |
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.
@supra08 Is support for AmazonS3 required for our use case? In future may be?
Image string | ||
// Port on which a database service is running inside the container | ||
HostPort1 int | ||
// Port on which a database service is running inside the container |
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.
Can you change Comment to distinguish HostPort1
and HostPort2
ContainerPort1 int | ||
// Port of the docker container in the host system | ||
ContainerPort2 int | ||
// Directory inside the docker container for volume mounting purposes |
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.
Similarly for ContainerPort1
and ContainerPort2
Disregard the previous PR. The work for this is mostly completed. Once the next seaweedFS release happens (which usually does every 5-6 days), I'll rebuild the docker images for the databases and then include those images instead of the current ones we are using.