Individual volumes

This commit is contained in:
rony5394
2026-02-21 15:48:18 +01:00
parent d8064911da
commit 136bb4c5b8
2 changed files with 107 additions and 53 deletions

View File

@@ -6,7 +6,6 @@ import (
"fmt" "fmt"
"io" "io"
"net/http" "net/http"
"strings"
"time" "time"
"github.com/docker/docker/api/types/mount" "github.com/docker/docker/api/types/mount"
@@ -29,6 +28,7 @@ func prepare(w http.ResponseWriter, r *http.Request){
var bodyDecoded struct{ var bodyDecoded struct{
ServiceId string `json:"serviceId"` ServiceId string `json:"serviceId"`
VolumeId string `json:"volumeId"`
}; };
err = json.Unmarshal(rawBody, &bodyDecoded); err = json.Unmarshal(rawBody, &bodyDecoded);
@@ -50,7 +50,6 @@ func prepare(w http.ResponseWriter, r *http.Request){
maxConcurrent := uint64(1); maxConcurrent := uint64(1);
totalCompletions := uint64(1); totalCompletions := uint64(1);
targetVolumes := strings.Split(labels["blazena.volumes"], ",");
targetNode := labels["blazena.node"]; targetNode := labels["blazena.node"];
helperCommand := `apk add openssh rsync && \ helperCommand := `apk add openssh rsync && \
ssh-keygen -t ed25519 -f /host_key && \ ssh-keygen -t ed25519 -f /host_key && \
@@ -58,9 +57,8 @@ func prepare(w http.ResponseWriter, r *http.Request){
echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIByYbl8vu946LPycSO5pBohq3vMvvl+wX7snu1Bqpd7p test" > /root/.ssh/authorized_keys && \ echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIByYbl8vu946LPycSO5pBohq3vMvvl+wX7snu1Bqpd7p test" > /root/.ssh/authorized_keys && \
/usr/sbin/sshd -h /host_key -p 22 -D`; /usr/sbin/sshd -h /host_key -p 22 -D`;
for _, targetVolume := range targetVolumes{
_, err := ApiClient.ServiceCreate(context.Background(), swarm.ServiceSpec{ _, err = ApiClient.ServiceCreate(context.Background(), swarm.ServiceSpec{
Annotations: swarm.Annotations{ Annotations: swarm.Annotations{
Labels: map[string]string{"blazena.helper": "true"}, Labels: map[string]string{"blazena.helper": "true"},
}, },
@@ -76,7 +74,7 @@ func prepare(w http.ResponseWriter, r *http.Request){
Command: []string{"sh", "-c", helperCommand}, Command: []string{"sh", "-c", helperCommand},
Mounts: []mount.Mount{ Mounts: []mount.Mount{
mount.Mount{ mount.Mount{
Source: targetVolume, Source: bodyDecoded.VolumeId,
Target: "/volume", Target: "/volume",
Type: "volume", Type: "volume",
}, },
@@ -104,4 +102,13 @@ func prepare(w http.ResponseWriter, r *http.Request){
fmt.Fprint(w, bodyDecoded.ServiceId); fmt.Fprint(w, bodyDecoded.ServiceId);
} }
func contains(slice []string, str string) bool {
for _, s := range slice {
if s == str {
return true
} }
}
return false
}

View File

@@ -39,16 +39,22 @@ func Run(Config cfg.Config) {
createStorageContainer(Config, DockerClient); createStorageContainer(Config, DockerClient);
// services := getServices(Config); services := getServices(Config);
//
// for _, service := range services { for _, service := range services {
// if !prepareService(Config, service) {continue} for _, volume := range service.VolumeNames{
// fmt.Println("Preparing: " + service.ServiceId + " volume: " + volume);
// os.Exit(0); if !prepareService(Config, service, volume) {continue}
// fmt.Println("Done!");
// } time.Sleep(5*time.Second);
fmt.Println("Cleaning Up: " + service.ServiceId + " volume: " + volume);
cleanupService(Config, service);
fmt.Println("Done!");
}
}
time.Sleep(30*time.Second);
DockerClient.ContainerRemove(context.Background(), "BlazenaStorage", container.RemoveOptions{ DockerClient.ContainerRemove(context.Background(), "BlazenaStorage", container.RemoveOptions{
Force: true, Force: true,
@@ -79,7 +85,7 @@ func getServices(Config cfg.Config)[]aService{
return services; return services;
} }
func prepareService(Config cfg.Config, service aService) bool{ func prepareService(Config cfg.Config, service aService, targetVolume string) bool{
_, ok := Config.Nodes[service.Node]; _, ok := Config.Nodes[service.Node];
if !ok { if !ok {
fmt.Println("Node", service.Node, "refferenced in", service.ServiceId ,"service does not exists!"); fmt.Println("Node", service.Node, "refferenced in", service.ServiceId ,"service does not exists!");
@@ -88,8 +94,10 @@ func prepareService(Config cfg.Config, service aService) bool{
var body struct{ var body struct{
ServiceId string `json:"serviceId"` ServiceId string `json:"serviceId"`
} = struct{ServiceId string "json:\"serviceId\""}{ VolumeId string `json:"volumeId"`
} = struct{ServiceId string "json:\"serviceId\""; VolumeId string "json:\"volumeId\""}{
ServiceId: service.ServiceId, ServiceId: service.ServiceId,
VolumeId: targetVolume,
} }
bodyEncoded, err := json.Marshal(body); bodyEncoded, err := json.Marshal(body);
@@ -116,9 +124,48 @@ func prepareService(Config cfg.Config, service aService) bool{
return true; return true;
} }
func cleanupService(Config cfg.Config, service aService)bool{
_, ok := Config.Nodes[service.Node];
if !ok {
fmt.Println("Node", service.Node, "refferenced in", service.ServiceId ,"service does not exists!");
return false;
}
var body struct{
ServiceId string `json:"serviceId"`
VolumeId string `json:"volumeId"`
} = struct{ServiceId string "json:\"serviceId\""; VolumeId string "json:\"volumeId\""}{
ServiceId: service.ServiceId,
}
bodyEncoded, err := json.Marshal(body);
if err != nil {
panic("Failed to marshal body."+ err.Error());
}
rq, err := http.NewRequest("POST", Config.DockerManagerBaseUrl + "/cleanup", bytes.NewBuffer(bodyEncoded));
if err != nil{
panic("Failed to create http request"+ err.Error());
}
rq.Header.Set("Authorization", "Bearer "+ token);
rq.Close = true;
rs, err := http.DefaultClient.Do(rq);
defer rs.Body.Close();
if err != nil{
panic("Failed to send http request"+ err.Error());
}
return true;
}
func createStorageContainer(Config cfg.Config, DockerClient *client.Client){ func createStorageContainer(Config cfg.Config, DockerClient *client.Client){
cr, err := DockerClient.ContainerCreate(context.Background(), &container.Config{ cr, err := DockerClient.ContainerCreate(context.Background(), &container.Config{
Image: "docker.io/library/alpine:3", Image: "docker.io/library/alpine:3.3",
Labels: map[string]string{ Labels: map[string]string{
"blazena.storage": "true", "blazena.storage": "true",
}, },