mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-04-04 04:56:06 -04:00
image: add intermediate "image" verb to upload tool
This commit is contained in:
parent
0a7349ca41
commit
b8751f35f9
1
image/.gitignore
vendored
1
image/.gitignore
vendored
@ -2,6 +2,7 @@ mkosi.cache
|
||||
mkosi.extra
|
||||
pki
|
||||
image.*
|
||||
!image.go
|
||||
mkosi.output.*
|
||||
pki_*/*.key
|
||||
pki_*/*.vmgs
|
||||
|
@ -8,6 +8,7 @@ go_library(
|
||||
"azure.go",
|
||||
"flags.go",
|
||||
"gcp.go",
|
||||
"image.go",
|
||||
"must.go",
|
||||
"nop.go",
|
||||
"openstack.go",
|
||||
|
@ -18,8 +18,8 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
// NewAWSCmd returns the command that uploads an OS image to AWS.
|
||||
func NewAWSCmd() *cobra.Command {
|
||||
// newAWSCmd returns the command that uploads an OS image to AWS.
|
||||
func newAWSCmd() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "aws",
|
||||
Short: "Upload OS image to AWS",
|
||||
|
@ -18,8 +18,8 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
// NewAzureCmd returns the command that uploads an OS image to Azure.
|
||||
func NewAzureCmd() *cobra.Command {
|
||||
// newAzureCmd returns the command that uploads an OS image to Azure.
|
||||
func newAzureCmd() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "azure",
|
||||
Short: "Upload OS image to Azure",
|
||||
|
@ -18,8 +18,8 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
// NewGCPCommand returns the command that uploads an OS image to GCP.
|
||||
func NewGCPCommand() *cobra.Command {
|
||||
// newGCPCommand returns the command that uploads an OS image to GCP.
|
||||
func newGCPCommand() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "gcp",
|
||||
Short: "Upload OS image to GCP",
|
||||
|
47
image/upload/internal/cmd/image.go
Normal file
47
image/upload/internal/cmd/image.go
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Copyright (c) Edgeless Systems GmbH
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
// NewImageCmd creates a new image parent command. Image needs another
|
||||
// verb, and does nothing on its own.
|
||||
func NewImageCmd() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "image",
|
||||
Short: "Uploads OS images to supported CSPs",
|
||||
Long: "Uploads OS images to supported CSPs.",
|
||||
Args: cobra.ExactArgs(0),
|
||||
}
|
||||
|
||||
cmd.SetOut(os.Stdout)
|
||||
|
||||
cmd.PersistentFlags().String("raw-image", "", "Path to os image in CSP specific format that should be uploaded.")
|
||||
cmd.PersistentFlags().String("pki", "", "Base path to the PKI (secure boot signing) files.")
|
||||
cmd.PersistentFlags().String("attestation-variant", "", "Attestation variant of the image being uploaded.")
|
||||
cmd.PersistentFlags().String("version", "", "Shortname of the os image version.")
|
||||
cmd.PersistentFlags().String("timestamp", "", "Optional timestamp to use for resource names. Uses format 2006-01-02T15:04:05Z07:00.")
|
||||
cmd.PersistentFlags().String("region", "eu-central-1", "AWS region of the archive S3 bucket")
|
||||
cmd.PersistentFlags().String("bucket", "cdn-constellation-backend", "S3 bucket name of the archive")
|
||||
cmd.PersistentFlags().String("out", "", "Optional path to write the upload result to. If not set, the result is written to stdout.")
|
||||
cmd.PersistentFlags().Bool("verbose", false, "Enable verbose output")
|
||||
must(cmd.MarkPersistentFlagRequired("raw-image"))
|
||||
must(cmd.MarkPersistentFlagRequired("attestation-variant"))
|
||||
must(cmd.MarkPersistentFlagRequired("version"))
|
||||
|
||||
cmd.AddCommand(newAWSCmd())
|
||||
cmd.AddCommand(newAzureCmd())
|
||||
cmd.AddCommand(newGCPCommand())
|
||||
cmd.AddCommand(newOpenStackCmd())
|
||||
cmd.AddCommand(newQEMUCmd())
|
||||
|
||||
return cmd
|
||||
}
|
@ -11,8 +11,8 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
// NewOpenStackCmd returns the command that uploads an OS image to OpenStack.
|
||||
func NewOpenStackCmd() *cobra.Command {
|
||||
// newOpenStackCmd returns the command that uploads an OS image to OpenStack.
|
||||
func newOpenStackCmd() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "openstack",
|
||||
Short: "Upload OS image to OpenStack",
|
||||
|
@ -11,8 +11,8 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
// NewQEMUCmd returns the command that uploads an OS image to QEMU.
|
||||
func NewQEMUCmd() *cobra.Command {
|
||||
// newQEMUCmd returns the command that uploads an OS image to QEMU.
|
||||
func newQEMUCmd() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "qemu",
|
||||
Short: "Upload OS image to QEMU",
|
||||
|
@ -33,31 +33,14 @@ func execute() error {
|
||||
func newRootCmd() *cobra.Command {
|
||||
rootCmd := &cobra.Command{
|
||||
Use: "upload",
|
||||
Short: "Uploads OS images to supported CSPs",
|
||||
Long: "Uploads OS images to supported CSPs.",
|
||||
Short: "Uploads OS image related artifacts",
|
||||
Long: "Uploads OS image related artifacts.",
|
||||
PersistentPreRun: preRunRoot,
|
||||
}
|
||||
|
||||
rootCmd.SetOut(os.Stdout)
|
||||
|
||||
rootCmd.PersistentFlags().String("raw-image", "", "Path to os image in CSP specific format that should be uploaded.")
|
||||
rootCmd.PersistentFlags().String("pki", "", "Base path to the PKI (secure boot signing) files.")
|
||||
rootCmd.PersistentFlags().String("attestation-variant", "", "Attestation variant of the image being uploaded.")
|
||||
rootCmd.PersistentFlags().String("version", "", "Shortname of the os image version.")
|
||||
rootCmd.PersistentFlags().String("timestamp", "", "Optional timestamp to use for resource names. Uses format 2006-01-02T15:04:05Z07:00.")
|
||||
rootCmd.PersistentFlags().String("region", "eu-central-1", "AWS region of the archive S3 bucket")
|
||||
rootCmd.PersistentFlags().String("bucket", "cdn-constellation-backend", "S3 bucket name of the archive")
|
||||
rootCmd.PersistentFlags().String("out", "", "Optional path to write the upload result to. If not set, the result is written to stdout.")
|
||||
rootCmd.PersistentFlags().Bool("verbose", false, "Enable verbose output")
|
||||
must(rootCmd.MarkPersistentFlagRequired("raw-image"))
|
||||
must(rootCmd.MarkPersistentFlagRequired("attestation-variant"))
|
||||
must(rootCmd.MarkPersistentFlagRequired("version"))
|
||||
|
||||
rootCmd.AddCommand(cmd.NewAWSCmd())
|
||||
rootCmd.AddCommand(cmd.NewAzureCmd())
|
||||
rootCmd.AddCommand(cmd.NewGCPCommand())
|
||||
rootCmd.AddCommand(cmd.NewOpenStackCmd())
|
||||
rootCmd.AddCommand(cmd.NewQEMUCmd())
|
||||
rootCmd.AddCommand(cmd.NewImageCmd())
|
||||
|
||||
return rootCmd
|
||||
}
|
||||
@ -92,9 +75,3 @@ func signalContext(ctx context.Context, sig os.Signal) (context.Context, context
|
||||
func preRunRoot(cmd *cobra.Command, _ []string) {
|
||||
cmd.SilenceUsage = true
|
||||
}
|
||||
|
||||
func must(err error) {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ load("//bazel/go:go_test.bzl", "go_test")
|
||||
go_library(
|
||||
name = "imagefetcher",
|
||||
srcs = [
|
||||
"imagegfetcher.go",
|
||||
"imagefetcher.go",
|
||||
"raw.go",
|
||||
],
|
||||
importpath = "github.com/edgelesssys/constellation/v2/internal/imagefetcher",
|
||||
|
Loading…
x
Reference in New Issue
Block a user