mirror of
https://github.com/linka-cloud/d2vm.git
synced 2024-11-05 00:06:24 +00:00
add verbose flag, deprecate debug false
Dockerfile: add missing ca-certificates run: hetzner: add token env var fix examples Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
This commit is contained in:
parent
506919cbad
commit
dec8c08db0
@ -6,3 +6,4 @@ qemu.sh
|
|||||||
bin
|
bin
|
||||||
dist
|
dist
|
||||||
images
|
images
|
||||||
|
examples/build
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ dist/
|
|||||||
images
|
images
|
||||||
wstation
|
wstation
|
||||||
/d2vm
|
/d2vm
|
||||||
|
/examples/build
|
||||||
|
@ -29,6 +29,7 @@ FROM ubuntu:20.04
|
|||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
|
DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
|
||||||
|
ca-certificates \
|
||||||
util-linux \
|
util-linux \
|
||||||
udev \
|
udev \
|
||||||
parted \
|
parted \
|
||||||
|
10
Makefile
10
Makefile
@ -91,3 +91,13 @@ build: $(BIN) bin
|
|||||||
.PHONY: release
|
.PHONY: release
|
||||||
release: $(BIN) bin
|
release: $(BIN) bin
|
||||||
@VERSION=$(VERSION) IMAGE=$(DOCKER_IMAGE) goreleaser release --rm-dist --parallelism 8
|
@VERSION=$(VERSION) IMAGE=$(DOCKER_IMAGE) goreleaser release --rm-dist --parallelism 8
|
||||||
|
|
||||||
|
.PHONY: examples
|
||||||
|
examples: build-dev
|
||||||
|
@mkdir -p examples/build
|
||||||
|
@for f in $$(find examples -type f -name '*Dockerfile' -maxdepth 1); do \
|
||||||
|
echo "Building $$f"; \
|
||||||
|
./d2vm build -o examples/build/$$(basename $$f|cut -d'.' -f1).qcow2 -f $$f examples; \
|
||||||
|
done
|
||||||
|
@echo "Building examples/full/Dockerfile"
|
||||||
|
@./d2vm build -o examples/build/full.qcow2 --build-arg=USER=adphi --build-arg=PASSWORD=adphi examples/full
|
||||||
|
@ -26,7 +26,6 @@ import (
|
|||||||
|
|
||||||
"go.linka.cloud/d2vm"
|
"go.linka.cloud/d2vm"
|
||||||
"go.linka.cloud/d2vm/pkg/docker"
|
"go.linka.cloud/d2vm/pkg/docker"
|
||||||
"go.linka.cloud/d2vm/pkg/exec"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -47,7 +46,6 @@ var (
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
exec.SetDebug(debug)
|
|
||||||
if file == "" {
|
if file == "" {
|
||||||
file = filepath.Join(args[0], "Dockerfile")
|
file = filepath.Join(args[0], "Dockerfile")
|
||||||
}
|
}
|
||||||
@ -69,7 +67,6 @@ func init() {
|
|||||||
buildCmd.Flags().StringVarP(&output, "output", "o", output, "The output image, the extension determine the image format, raw will be used if none. Supported formats: "+strings.Join(d2vm.OutputFormats(), " "))
|
buildCmd.Flags().StringVarP(&output, "output", "o", output, "The output image, the extension determine the image format, raw will be used if none. Supported formats: "+strings.Join(d2vm.OutputFormats(), " "))
|
||||||
buildCmd.Flags().StringVarP(&password, "password", "p", "root", "Root user password")
|
buildCmd.Flags().StringVarP(&password, "password", "p", "root", "Root user password")
|
||||||
buildCmd.Flags().StringVarP(&size, "size", "s", "10G", "The output image size")
|
buildCmd.Flags().StringVarP(&size, "size", "s", "10G", "The output image size")
|
||||||
buildCmd.Flags().BoolVarP(&debug, "debug", "d", false, "Enable Debug output")
|
|
||||||
buildCmd.Flags().BoolVar(&force, "force", false, "Override output image")
|
buildCmd.Flags().BoolVar(&force, "force", false, "Override output image")
|
||||||
buildCmd.Flags().StringVar(&cmdLineExtra, "append-to-cmdline", "", "Extra kernel cmdline arguments to append to the generated one")
|
buildCmd.Flags().StringVar(&cmdLineExtra, "append-to-cmdline", "", "Extra kernel cmdline arguments to append to the generated one")
|
||||||
buildCmd.Flags().StringVar(&networkManager, "network-manager", "", "Network manager to use for the image: none, netplan, ifupdown")
|
buildCmd.Flags().StringVar(&networkManager, "network-manager", "", "Network manager to use for the image: none, netplan, ifupdown")
|
||||||
|
@ -26,7 +26,6 @@ import (
|
|||||||
|
|
||||||
"go.linka.cloud/d2vm"
|
"go.linka.cloud/d2vm"
|
||||||
"go.linka.cloud/d2vm/pkg/docker"
|
"go.linka.cloud/d2vm/pkg/docker"
|
||||||
"go.linka.cloud/d2vm/pkg/exec"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -56,7 +55,6 @@ var (
|
|||||||
return fmt.Errorf("%s already exists", output)
|
return fmt.Errorf("%s already exists", output)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exec.SetDebug(debug)
|
|
||||||
if _, err := os.Stat(output); err == nil || !os.IsNotExist(err) {
|
if _, err := os.Stat(output); err == nil || !os.IsNotExist(err) {
|
||||||
if !force {
|
if !force {
|
||||||
return fmt.Errorf("%s already exists", output)
|
return fmt.Errorf("%s already exists", output)
|
||||||
@ -97,7 +95,6 @@ func init() {
|
|||||||
convertCmd.Flags().StringVarP(&output, "output", "o", output, "The output image, the extension determine the image format, raw will be used if none. Supported formats: "+strings.Join(d2vm.OutputFormats(), " "))
|
convertCmd.Flags().StringVarP(&output, "output", "o", output, "The output image, the extension determine the image format, raw will be used if none. Supported formats: "+strings.Join(d2vm.OutputFormats(), " "))
|
||||||
convertCmd.Flags().StringVarP(&password, "password", "p", "root", "The Root user password")
|
convertCmd.Flags().StringVarP(&password, "password", "p", "root", "The Root user password")
|
||||||
convertCmd.Flags().StringVarP(&size, "size", "s", "10G", "The output image size")
|
convertCmd.Flags().StringVarP(&size, "size", "s", "10G", "The output image size")
|
||||||
convertCmd.Flags().BoolVarP(&debug, "debug", "d", false, "Enable Debug output")
|
|
||||||
convertCmd.Flags().BoolVarP(&force, "force", "f", false, "Override output qcow2 image")
|
convertCmd.Flags().BoolVarP(&force, "force", "f", false, "Override output qcow2 image")
|
||||||
convertCmd.Flags().StringVar(&cmdLineExtra, "append-to-cmdline", "", "Extra kernel cmdline arguments to append to the generated one")
|
convertCmd.Flags().StringVar(&cmdLineExtra, "append-to-cmdline", "", "Extra kernel cmdline arguments to append to the generated one")
|
||||||
convertCmd.Flags().StringVar(&networkManager, "network-manager", "", "Network manager to use for the image: none, netplan, ifupdown")
|
convertCmd.Flags().StringVar(&networkManager, "network-manager", "", "Network manager to use for the image: none, netplan, ifupdown")
|
||||||
|
@ -20,9 +20,11 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
|
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
"go.linka.cloud/d2vm"
|
"go.linka.cloud/d2vm"
|
||||||
|
"go.linka.cloud/d2vm/pkg/exec"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -30,13 +32,19 @@ var (
|
|||||||
size = "1G"
|
size = "1G"
|
||||||
password = "root"
|
password = "root"
|
||||||
force = false
|
force = false
|
||||||
debug = false
|
verbose = false
|
||||||
format = "qcow2"
|
format = "qcow2"
|
||||||
|
|
||||||
rootCmd = &cobra.Command{
|
rootCmd = &cobra.Command{
|
||||||
Use: "d2vm",
|
Use: "d2vm",
|
||||||
SilenceUsage: true,
|
SilenceUsage: true,
|
||||||
Version: d2vm.Version,
|
Version: d2vm.Version,
|
||||||
|
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
||||||
|
if verbose {
|
||||||
|
logrus.SetLevel(logrus.TraceLevel)
|
||||||
|
}
|
||||||
|
exec.SetDebug(verbose)
|
||||||
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -53,3 +61,9 @@ func main() {
|
|||||||
}()
|
}()
|
||||||
rootCmd.ExecuteContext(ctx)
|
rootCmd.ExecuteContext(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
rootCmd.PersistentFlags().BoolVarP(&verbose, "debug", "d", false, "Enable Debug output")
|
||||||
|
rootCmd.PersistentFlags().MarkDeprecated("debug", "use -v instead")
|
||||||
|
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Enable Verbose output")
|
||||||
|
}
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/sirupsen/logrus"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
"go.linka.cloud/d2vm/cmd/d2vm/run"
|
"go.linka.cloud/d2vm/cmd/d2vm/run"
|
||||||
@ -25,11 +24,6 @@ var (
|
|||||||
runCmd = &cobra.Command{
|
runCmd = &cobra.Command{
|
||||||
Use: "run",
|
Use: "run",
|
||||||
Short: "run the converted virtual machine",
|
Short: "run the converted virtual machine",
|
||||||
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
|
||||||
if debug {
|
|
||||||
logrus.SetLevel(logrus.DebugLevel)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -39,5 +33,4 @@ func init() {
|
|||||||
runCmd.AddCommand(run.VboxCmd)
|
runCmd.AddCommand(run.VboxCmd)
|
||||||
runCmd.AddCommand(run.QemuCmd)
|
runCmd.AddCommand(run.QemuCmd)
|
||||||
runCmd.AddCommand(run.HetznerCmd)
|
runCmd.AddCommand(run.HetznerCmd)
|
||||||
runCmd.PersistentFlags().BoolVarP(&debug, "debug", "d", false, "Enable Debug output")
|
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
hetznerTokenEnv = "HETZNER_TOKEN"
|
||||||
serverImg = "ubuntu-20.04"
|
serverImg = "ubuntu-20.04"
|
||||||
vmBlockPath = "/dev/sda"
|
vmBlockPath = "/dev/sda"
|
||||||
sparsecatPath = "/usr/local/bin/sparsecat"
|
sparsecatPath = "/usr/local/bin/sparsecat"
|
||||||
@ -56,7 +57,7 @@ var (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
HetznerCmd.Flags().StringVarP(&hetznerToken, "token", "t", "", "Hetzner Cloud API token")
|
HetznerCmd.Flags().StringVarP(&hetznerToken, "token", "t", "", "Hetzner Cloud API token [$"+hetznerTokenEnv+"]")
|
||||||
HetznerCmd.Flags().StringVarP(&hetznerSSHUser, "user", "u", "root", "d2vm image ssh user")
|
HetznerCmd.Flags().StringVarP(&hetznerSSHUser, "user", "u", "root", "d2vm image ssh user")
|
||||||
HetznerCmd.Flags().StringVarP(&hetznerSSHKeyPath, "ssh-key", "i", "", "d2vm image identity key")
|
HetznerCmd.Flags().StringVarP(&hetznerSSHKeyPath, "ssh-key", "i", "", "d2vm image identity key")
|
||||||
HetznerCmd.Flags().BoolVar(&hetznerRemove, "rm", false, "remove server when done")
|
HetznerCmd.Flags().BoolVar(&hetznerRemove, "rm", false, "remove server when done")
|
||||||
@ -85,7 +86,7 @@ func runHetzner(ctx context.Context, imgPath string, stdin io.Reader, stderr io.
|
|||||||
}
|
}
|
||||||
defer src.Close()
|
defer src.Close()
|
||||||
|
|
||||||
c := hcloud.NewClient(hcloud.WithToken(hetznerToken))
|
c := hcloud.NewClient(hcloud.WithToken(GetStringValue(hetznerTokenEnv, hetznerToken, "")))
|
||||||
st, _, err := c.ServerType.GetByName(ctx, hetznerVMType)
|
st, _, err := c.ServerType.GetByName(ctx, hetznerVMType)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -205,8 +206,10 @@ func runHetzner(ctx context.Context, imgPath string, stdin io.Reader, stderr io.
|
|||||||
logrus.Infof("%s / %d%% transfered ( %s/s)", humanize.Bytes(uint64(b)), int(float64(b)/float64(i.VirtualSize)*100), humanize.Bytes(uint64(b-last)))
|
logrus.Infof("%s / %d%% transfered ( %s/s)", humanize.Bytes(uint64(b)), int(float64(b)/float64(i.VirtualSize)*100), humanize.Bytes(uint64(b-last)))
|
||||||
last = b
|
last = b
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
|
logrus.Warnf("context cancelled")
|
||||||
return
|
return
|
||||||
case <-done:
|
case <-done:
|
||||||
|
logrus.Infof("transfer finished")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
FROM alpine
|
FROM alpine
|
||||||
|
|
||||||
RUN apk add --no-cache openssh-server && \
|
RUN apk add --no-cache openrc openssh-server && \
|
||||||
|
rc-update add sshd default && \
|
||||||
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
FROM debian
|
FROM debian
|
||||||
|
|
||||||
RUN apt update && apt install -y openssh-server && \
|
RUN apt update && apt install -y openssh-server systemctl && \
|
||||||
|
systemctl enable ssh && \
|
||||||
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
network:
|
|
||||||
version: 2
|
|
||||||
renderer: networkd
|
|
||||||
ethernets:
|
|
||||||
eth0:
|
|
||||||
dhcp4: true
|
|
||||||
nameservers:
|
|
||||||
addresses:
|
|
||||||
- 8.8.8.8
|
|
||||||
- 8.8.4.4
|
|
@ -3,14 +3,11 @@ FROM ubuntu
|
|||||||
# Install some system packages
|
# Install some system packages
|
||||||
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
|
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
|
||||||
qemu-guest-agent \
|
qemu-guest-agent \
|
||||||
netplan.io \
|
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
dnsutils \
|
dnsutils \
|
||||||
sudo \
|
sudo \
|
||||||
openssh-server
|
openssh-server
|
||||||
|
|
||||||
# Setup default network config
|
|
||||||
COPY 00-netconf.yaml /etc/netplan/
|
|
||||||
# Add a utility script to resize serial terminal
|
# Add a utility script to resize serial terminal
|
||||||
COPY resize /usr/local/bin/
|
COPY resize /usr/local/bin/
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
FROM ubuntu
|
FROM ubuntu
|
||||||
|
|
||||||
RUN apt update && apt install -y openssh-server && \
|
RUN apt update && apt install -y openssh-server systemctl && \
|
||||||
|
systemctl enable ssh && \
|
||||||
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
||||||
|
@ -11,7 +11,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|||||||
systemd \
|
systemd \
|
||||||
dbus \
|
dbus \
|
||||||
iproute2 \
|
iproute2 \
|
||||||
udhcpc \
|
isc-dhcp-client \
|
||||||
iputils-ping
|
iputils-ping
|
||||||
|
|
||||||
RUN systemctl preset-all
|
RUN systemctl preset-all
|
||||||
|
@ -9,7 +9,7 @@ RUN apt-get update -y && \
|
|||||||
systemd-sysv \
|
systemd-sysv \
|
||||||
systemd \
|
systemd \
|
||||||
dbus \
|
dbus \
|
||||||
udhcpc \
|
isc-dhcp-client \
|
||||||
iproute2 \
|
iproute2 \
|
||||||
iputils-ping
|
iputils-ping
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user