-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Son <[email protected]>
- Loading branch information
Showing
12 changed files
with
271 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
Copyright The Soci Snapshotter Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
/* | ||
Copyright The containerd Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package internal | ||
|
||
import ( | ||
gocontext "context" | ||
|
||
"github.com/containerd/containerd" | ||
"github.com/containerd/containerd/namespaces" | ||
"github.com/containerd/containerd/pkg/epoch" | ||
"github.com/containerd/log" | ||
"github.com/urfave/cli" | ||
) | ||
|
||
// Largely taken from containerd/cmd/ctr/commands/client.go | ||
|
||
// AppContext returns the context for a command. Should only be called once per | ||
// command, near the start. | ||
// | ||
// This will ensure the namespace is picked up and set the timeout, if one is | ||
// defined. | ||
func AppContext(context *cli.Context) (gocontext.Context, gocontext.CancelFunc) { | ||
var ( | ||
ctx = gocontext.Background() | ||
timeout = context.GlobalDuration("timeout") | ||
namespace = context.GlobalString("namespace") | ||
cancel gocontext.CancelFunc | ||
) | ||
ctx = namespaces.WithNamespace(ctx, namespace) | ||
if timeout > 0 { | ||
ctx, cancel = gocontext.WithTimeout(ctx, timeout) | ||
} else { | ||
ctx, cancel = gocontext.WithCancel(ctx) | ||
} | ||
if tm, err := epoch.SourceDateEpoch(); err != nil { | ||
log.L.WithError(err).Warn("Failed to read SOURCE_DATE_EPOCH") | ||
} else if tm != nil { | ||
log.L.Debugf("Using SOURCE_DATE_EPOCH: %v", tm) | ||
ctx = epoch.WithSourceDateEpoch(ctx, tm) | ||
} | ||
return ctx, cancel | ||
} | ||
|
||
// NewClient returns a new containerd client | ||
func NewClient(context *cli.Context, opts ...containerd.ClientOpt) (*containerd.Client, gocontext.Context, gocontext.CancelFunc, error) { | ||
timeoutOpt := containerd.WithTimeout(context.GlobalDuration("connect-timeout")) | ||
opts = append(opts, timeoutOpt) | ||
client, err := containerd.New(context.GlobalString("address"), opts...) | ||
if err != nil { | ||
return nil, nil, nil, err | ||
} | ||
ctx, cancel := AppContext(context) | ||
return client, ctx, cancel, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
Copyright The Soci Snapshotter Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
/* | ||
Copyright The containerd Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package internal | ||
|
||
import ( | ||
"github.com/urfave/cli" | ||
) | ||
|
||
var LabelFlag = cli.StringSliceFlag{ | ||
Name: "label", | ||
Usage: "Labels to attach to the image", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
Copyright The Soci Snapshotter Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
/* | ||
Copyright The containerd Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package internal | ||
|
||
import ( | ||
"github.com/urfave/cli" | ||
) | ||
|
||
var RegistryFlags = []cli.Flag{ | ||
cli.BoolFlag{ | ||
Name: "skip-verify,k", | ||
Usage: "Skip SSL certificate validation", | ||
}, | ||
cli.BoolFlag{ | ||
Name: "plain-http", | ||
Usage: "Allow connections using plain HTTP", | ||
}, | ||
cli.StringFlag{ | ||
Name: "user,u", | ||
Usage: "User[:password] Registry user and password", | ||
}, | ||
cli.StringFlag{ | ||
Name: "refresh", | ||
Usage: "Refresh token for authorization server", | ||
}, | ||
cli.StringFlag{ | ||
Name: "hosts-dir", | ||
// compatible with "/etc/docker/certs.d" | ||
Usage: "Custom hosts configuration directory", | ||
}, | ||
cli.StringFlag{ | ||
Name: "tlscacert", | ||
Usage: "Path to TLS root CA", | ||
}, | ||
cli.StringFlag{ | ||
Name: "tlscert", | ||
Usage: "Path to TLS client certificate", | ||
}, | ||
cli.StringFlag{ | ||
Name: "tlskey", | ||
Usage: "Path to TLS client key", | ||
}, | ||
cli.BoolFlag{ | ||
Name: "http-dump", | ||
Usage: "Dump all HTTP request/responses when interacting with container registry", | ||
}, | ||
cli.BoolFlag{ | ||
Name: "http-trace", | ||
Usage: "Enable HTTP tracing for registry interactions", | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
Copyright The Soci Snapshotter Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
/* | ||
Copyright The containerd Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package internal | ||
|
||
import ( | ||
"github.com/urfave/cli" | ||
) | ||
|
||
var SnapshotterFlags = []cli.Flag{ | ||
cli.StringFlag{ | ||
Name: "snapshotter", | ||
Usage: "Snapshotter name. Empty value stands for the default value.", | ||
EnvVar: "CONTAINERD_SNAPSHOTTER", | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.