fix(cli): clarify tty err on non-tty git bootstrap

Fixes #5660

Signed-off-by: Carlos Nunez <13461447+carlosonunez@users.noreply.github.com>
pull/5661/head
Carlos Nunez 3 days ago
parent 6c58ea576e
commit e3c98d6ab9
No known key found for this signature in database
GPG Key ID: E1FE98BBFDCADE05

@ -18,6 +18,7 @@ package main
import (
"context"
"errors"
"fmt"
"net/url"
"os"
@ -38,6 +39,7 @@ import (
"github.com/fluxcd/flux2/v2/pkg/manifestgen/install"
"github.com/fluxcd/flux2/v2/pkg/manifestgen/sourcesecret"
"github.com/fluxcd/flux2/v2/pkg/manifestgen/sync"
"github.com/mattn/go-isatty"
)
var bootstrapGitCmd = &cobra.Command{
@ -382,6 +384,7 @@ func getAuthOpts(u *url.URL, caBundle []byte) (*git.AuthOptions, error) {
}
func promptPublicKey(ctx context.Context, secret corev1.Secret, _ sourcesecret.Options) error {
logger.Actionf("requesting to grant key access to repository")
ppk, ok := secret.StringData[sourcesecret.PublicKeySecretKey]
if !ok {
return nil
@ -390,6 +393,9 @@ func promptPublicKey(ctx context.Context, secret corev1.Secret, _ sourcesecret.O
logger.Successf("public key: %s", strings.TrimSpace(ppk))
if !gitArgs.silent {
if !isatty.IsTerminal(os.Stdout.Fd()) {
return errors.New("aborting; not a terminal (use --silent)")
}
prompt := promptui.Prompt{
Label: "Please give the key access to your repository",
IsConfirm: true,

Loading…
Cancel
Save