Skip to content

Commit

Permalink
feat(cloud): Move to versioned images
Browse files Browse the repository at this point in the history
This allows for the tunnel and volimport images to still be present
for a while, while the switched to versioned images happens.

Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
  • Loading branch information
craciunoiuc committed Dec 18, 2024
1 parent 307c72e commit b85f094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/cli/kraft/cloud/tunnel/tunnel.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
type TunnelOptions struct {
TunnelProxyPorts []string `local:"true" long:"tunnel-proxy-port" short:"p" usage:"Remote port exposed by the tunnelling service(s). (default start port is 4444)"`
ProxyControlPort uint `local:"true" long:"tunnel-control-port" short:"P" usage:"Command-and-control port used by the tunneling service(s)." default:"4443"`
TunnelServiceImage string `local:"true" long:"tunnel-image" usage:"Tunnel service image" default:"official/utils/tunnel:latest"`
TunnelServiceImage string `local:"true" long:"tunnel-image" usage:"Tunnel service image" default:"official/utils/tunnel-1.0:latest"`
Token string `noattribute:"true"`
Metro string `noattribute:"true"`

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/kraft/cloud/volume/import/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type ImportOptions struct {
Token string `noattribute:"true"`
Metro string `noattribute:"true"`

VolimportImage string `local:"true" long:"image" usage:"Volume import image to use" default:"official/utils/volimport:latest"`
VolimportImage string `local:"true" long:"image" usage:"Volume import image to use" default:"official/utils/volimport-1.0:latest"`
Force bool `local:"true" long:"force" short:"f" usage:"Force import, even if it might fail"`
Source string `local:"true" long:"source" short:"s" usage:"Path to the data source (directory, Dockerfile, Docker link, cpio file)" default:"."`
Timeout uint64 `local:"true" long:"timeout" short:"t" usage:"Timeout for the import process in seconds when unresponsive" default:"10"`
Expand Down

0 comments on commit b85f094

Please sign in to comment.