Added image autopull.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
ssh-key
|
ssh-key
|
||||||
ssh-key.pub
|
ssh-key.pub
|
||||||
ssk-key.tar
|
ssk-key.tar
|
||||||
|
config.json
|
||||||
|
|||||||
@@ -12,9 +12,12 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o /blazena
|
|||||||
|
|
||||||
|
|
||||||
FROM docker.io/library/alpine:3.3
|
FROM docker.io/library/alpine:3.3
|
||||||
|
RUN apk add openssh rsync --no-cache
|
||||||
|
|
||||||
COPY --from=builder /blazena /
|
COPY --from=builder /blazena /
|
||||||
EXPOSE 1234
|
EXPOSE 1234
|
||||||
ENV MODE=invalid
|
ENV MODE=invalid
|
||||||
|
|
||||||
CMD /blazena $MODE
|
WORKDIR /root/.ssh
|
||||||
|
|
||||||
|
CMD ["/blazena", "$MODE"]
|
||||||
|
|||||||
14
config.json
14
config.json
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"Nodes": {
|
|
||||||
"rpi":{
|
|
||||||
"Ip": "192.168.1.175",
|
|
||||||
"DockerVolumePath": "/var/lib/docker/volumes"
|
|
||||||
},
|
|
||||||
"arnost":{
|
|
||||||
"Ip": "192.168.1.9",
|
|
||||||
"DockerVolumePath": "/home/blazena/volumes"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"DockerManagerBaseUrl": "http://localhost:1234",
|
|
||||||
"LocalBasePath": "/archive/@backups"
|
|
||||||
}
|
|
||||||
@@ -7,4 +7,11 @@ type Config struct {
|
|||||||
}
|
}
|
||||||
DockerManagerBaseUrl string
|
DockerManagerBaseUrl string
|
||||||
LocalBasePath string
|
LocalBasePath string
|
||||||
|
BlazenaImageUrl string
|
||||||
|
RegistryAuth RegistryAuth
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type RegistryAuth struct {
|
||||||
|
Username string
|
||||||
|
Password string
|
||||||
|
}
|
||||||
|
|||||||
@@ -16,12 +16,14 @@ import (
|
|||||||
"github.com/docker/docker/api/types/network"
|
"github.com/docker/docker/api/types/network"
|
||||||
"github.com/docker/docker/api/types/swarm"
|
"github.com/docker/docker/api/types/swarm"
|
||||||
"github.com/docker/docker/client"
|
"github.com/docker/docker/client"
|
||||||
|
cfg "github.com/rony5394/blazena/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Add mutex.
|
// Add mutex.
|
||||||
var ApiClient *client.Client;
|
var ApiClient *client.Client;
|
||||||
var scale sync.Map;
|
var scale sync.Map;
|
||||||
var token string = "12345";
|
var token string = "12345";
|
||||||
|
var theConfig cfg.Config;
|
||||||
|
|
||||||
type aService struct{
|
type aService struct{
|
||||||
ServiceId string `json:"serviceId"`;
|
ServiceId string `json:"serviceId"`;
|
||||||
@@ -29,7 +31,8 @@ type aService struct{
|
|||||||
Node string `json:"node"`;
|
Node string `json:"node"`;
|
||||||
}
|
}
|
||||||
|
|
||||||
func Run(){
|
func Run(Config cfg.Config){
|
||||||
|
theConfig = Config;
|
||||||
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM);
|
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM);
|
||||||
|
|
||||||
var err error;
|
var err error;
|
||||||
|
|||||||
@@ -6,10 +6,14 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"encoding/base64"
|
||||||
"time"
|
"time"
|
||||||
|
"os"
|
||||||
|
|
||||||
"github.com/docker/docker/api/types/mount"
|
"github.com/docker/docker/api/types/mount"
|
||||||
"github.com/docker/docker/api/types/swarm"
|
"github.com/docker/docker/api/types/swarm"
|
||||||
|
"github.com/docker/docker/api/types/registry"
|
||||||
|
"github.com/docker/docker/api/types/image"
|
||||||
)
|
)
|
||||||
|
|
||||||
func prepare(w http.ResponseWriter, r *http.Request){
|
func prepare(w http.ResponseWriter, r *http.Request){
|
||||||
@@ -41,6 +45,27 @@ func prepare(w http.ResponseWriter, r *http.Request){
|
|||||||
panic("Failed to inspect service."+ err.Error());
|
panic("Failed to inspect service."+ err.Error());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
authConfig := registry.AuthConfig{
|
||||||
|
Username: theConfig.RegistryAuth.Username,
|
||||||
|
Password: theConfig.RegistryAuth.Password,
|
||||||
|
}
|
||||||
|
|
||||||
|
authJSON, err := json.Marshal(authConfig)
|
||||||
|
if err != nil {
|
||||||
|
panic("Failed to marshal auth config!"+ err.Error());
|
||||||
|
}
|
||||||
|
|
||||||
|
authString := base64.URLEncoding.EncodeToString(authJSON);
|
||||||
|
|
||||||
|
ipc, err := ApiClient.ImagePull(context.Background(), theConfig.BlazenaImageUrl, image.PullOptions{RegistryAuth: authString});
|
||||||
|
if err != nil {
|
||||||
|
panic("Failed to pull blazena image!"+ err.Error());
|
||||||
|
}
|
||||||
|
defer ipc.Close();
|
||||||
|
|
||||||
|
io.Copy(os.Stdout, ipc);
|
||||||
|
|
||||||
|
|
||||||
labels := inspectResoults.Spec.Labels;
|
labels := inspectResoults.Spec.Labels;
|
||||||
|
|
||||||
maxConcurrent := uint64(1);
|
maxConcurrent := uint64(1);
|
||||||
@@ -65,7 +90,7 @@ func prepare(w http.ResponseWriter, r *http.Request){
|
|||||||
},
|
},
|
||||||
TaskTemplate: swarm.TaskSpec{
|
TaskTemplate: swarm.TaskSpec{
|
||||||
ContainerSpec: &swarm.ContainerSpec{
|
ContainerSpec: &swarm.ContainerSpec{
|
||||||
Image: "registry.lan.ronycloud.dev/blazena/helper:latest",
|
Image: theConfig.BlazenaImageUrl,
|
||||||
Command: []string{"sh", "-c", helperCommand},
|
Command: []string{"sh", "-c", helperCommand},
|
||||||
Mounts: []mount.Mount{
|
Mounts: []mount.Mount{
|
||||||
mount.Mount{
|
mount.Mount{
|
||||||
|
|||||||
30
host/host.go
30
host/host.go
@@ -7,13 +7,16 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"encoding/base64"
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/docker/docker/api/types/container"
|
"github.com/docker/docker/api/types/container"
|
||||||
|
"github.com/docker/docker/api/types/image"
|
||||||
"github.com/docker/docker/api/types/mount"
|
"github.com/docker/docker/api/types/mount"
|
||||||
"github.com/docker/docker/api/types/network"
|
"github.com/docker/docker/api/types/network"
|
||||||
"github.com/docker/docker/api/types/strslice"
|
"github.com/docker/docker/api/types/strslice"
|
||||||
|
"github.com/docker/docker/api/types/registry"
|
||||||
"github.com/docker/docker/client"
|
"github.com/docker/docker/client"
|
||||||
v1 "github.com/opencontainers/image-spec/specs-go/v1"
|
v1 "github.com/opencontainers/image-spec/specs-go/v1"
|
||||||
cfg "github.com/rony5394/blazena/config"
|
cfg "github.com/rony5394/blazena/config"
|
||||||
@@ -52,8 +55,7 @@ func Run(Config cfg.Config) {
|
|||||||
fmt.Println("Done!");
|
fmt.Println("Done!");
|
||||||
|
|
||||||
// Skiping Host Key Check is temporary.
|
// Skiping Host Key Check is temporary.
|
||||||
command := `apk add --no-cache rsync openssh-client && \
|
command := `rsync -avz --delete -e "ssh -i /ssh-key -p 2222 -o StrictHostKeyChecking=no" \
|
||||||
rsync -avz --delete -e "ssh -i /ssh-key -p 2222 -o StrictHostKeyChecking=no" \
|
|
||||||
root@tasks.BlazenaHelper:/volume/ /tmp/` + volume;
|
root@tasks.BlazenaHelper:/volume/ /tmp/` + volume;
|
||||||
|
|
||||||
|
|
||||||
@@ -232,12 +234,32 @@ func scale(Config cfg.Config, serviceId string, up bool)bool{
|
|||||||
}
|
}
|
||||||
|
|
||||||
func createStorageContainer(Config cfg.Config, DockerClient *client.Client){
|
func createStorageContainer(Config cfg.Config, DockerClient *client.Client){
|
||||||
|
authConfig := registry.AuthConfig{
|
||||||
|
Username: Config.RegistryAuth.Username,
|
||||||
|
Password: Config.RegistryAuth.Password,
|
||||||
|
}
|
||||||
|
|
||||||
|
authJSON, err := json.Marshal(authConfig)
|
||||||
|
if err != nil {
|
||||||
|
panic("Failed to marshal auth config!"+ err.Error());
|
||||||
|
}
|
||||||
|
|
||||||
|
authString := base64.URLEncoding.EncodeToString(authJSON);
|
||||||
|
|
||||||
|
ipc, err := DockerClient.ImagePull(context.Background(), Config.BlazenaImageUrl, image.PullOptions{RegistryAuth: authString});
|
||||||
|
if err != nil {
|
||||||
|
panic("Failed to pull blazena image!"+ err.Error());
|
||||||
|
}
|
||||||
|
defer ipc.Close();
|
||||||
|
|
||||||
|
io.Copy(os.Stdout, ipc);
|
||||||
|
|
||||||
cr, err := DockerClient.ContainerCreate(context.Background(), &container.Config{
|
cr, err := DockerClient.ContainerCreate(context.Background(), &container.Config{
|
||||||
Image: "docker.io/library/alpine:3.3",
|
Image: Config.BlazenaImageUrl,
|
||||||
Labels: map[string]string{
|
Labels: map[string]string{
|
||||||
"blazena.storage": "true",
|
"blazena.storage": "true",
|
||||||
},
|
},
|
||||||
Cmd: strslice.StrSlice{"sleep", "1h"},
|
Cmd: strslice.StrSlice{"sleep", "3h"},
|
||||||
}, &container.HostConfig{
|
}, &container.HostConfig{
|
||||||
Mounts: []mount.Mount{
|
Mounts: []mount.Mount{
|
||||||
mount.Mount{
|
mount.Mount{
|
||||||
|
|||||||
Reference in New Issue
Block a user