@@ -58,14 +58,16 @@ type OptsKey struct{}
58
58
59
59
// Opts are context options associated with the shim invocation.
60
60
type Opts struct {
61
- Debug bool
61
+ BundlePath string
62
+ Debug bool
62
63
}
63
64
64
65
var (
65
66
debugFlag bool
66
67
idFlag string
67
68
namespaceFlag string
68
69
socketFlag string
70
+ bundlePath string
69
71
addressFlag string
70
72
containerdBinaryFlag string
71
73
action string
@@ -76,6 +78,7 @@ func parseFlags() {
76
78
flag .StringVar (& namespaceFlag , "namespace" , "" , "namespace that owns the shim" )
77
79
flag .StringVar (& idFlag , "id" , "" , "id of the task" )
78
80
flag .StringVar (& socketFlag , "socket" , "" , "abstract socket path to serve" )
81
+ flag .StringVar (& bundlePath , "bundle" , "" , "path to the bundle if not workdir" )
79
82
80
83
flag .StringVar (& addressFlag , "address" , "" , "grpc address back to main containerd" )
81
84
flag .StringVar (& containerdBinaryFlag , "publish-binary" , "containerd" , "path to publish binary (used for publishing events)" )
@@ -141,7 +144,7 @@ func run(id string, initFunc Init) error {
141
144
return fmt .Errorf ("shim namespace cannot be empty" )
142
145
}
143
146
ctx := namespaces .WithNamespace (context .Background (), namespaceFlag )
144
- ctx = context .WithValue (ctx , OptsKey {}, Opts {Debug : debugFlag })
147
+ ctx = context .WithValue (ctx , OptsKey {}, Opts {BundlePath : bundlePath , Debug : debugFlag })
145
148
ctx = log .WithLogger (ctx , log .G (ctx ).WithField ("runtime" , id ))
146
149
147
150
service , err := initFunc (ctx , idFlag , publisher )
0 commit comments