-
Notifications
You must be signed in to change notification settings - Fork 9
/
gcloud.go
34 lines (29 loc) · 969 Bytes
/
gcloud.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package sdk
import (
"context"
"github.com/spf13/cobra"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/console"
"namespacelabs.dev/foundation/internal/runtime/rtypes"
"namespacelabs.dev/foundation/internal/sdk/gcloud"
"namespacelabs.dev/foundation/std/tasks/idtypes"
)
func newGcloudCmd() *cobra.Command {
return fncobra.Cmd(
&cobra.Command{
Use: "gcloud -- ...",
Short: "Run gcloud.",
Hidden: true,
DisableFlagParsing: true,
}).
DoWithArgs(func(ctx context.Context, args []string) error {
stdout := console.TypedOutput(ctx, "gcloud", idtypes.CatOutputTool)
return gcloud.Run(ctx, rtypes.IO{
Stdout: stdout,
Stderr: stdout,
}, args...)
})
}