You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit makes HTTPS tunnels the default, and a TCP tunnel
can still be created with --tcp.
Tested against digitalocean
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
createCmd.Flags().String("consumer-key", "", "The Consumer Key for using the OVH API")
51
51
52
-
createCmd.Flags().Bool("tcp", true, `Provision an exit-server with inlets running as a TCP server`)
52
+
createCmd.Flags().Bool("tcp", false, `Provision an exit-server with inlets running as a TCP server`)
53
53
createCmd.Flags().String("aws-key-name", "", "The name of an existing SSH key on AWS to be used to access the EC2 instance for maintenance (optional)")
54
54
55
55
createCmd.Flags().StringArray("letsencrypt-domain", []string{}, `Domains you want to get a Let's Encrypt certificate for`)
56
-
createCmd.Flags().String("letsencrypt-issuer", "prod", `The issuer endpoint to use with Let's Encrypt - \"prod\" or \"staging\"`)
56
+
createCmd.Flags().String("letsencrypt-issuer", "prod", `The issuer endpoint to use with Let's Encrypt - "prod" or "staging"`)
57
57
createCmd.Flags().String("letsencrypt-email", "", `The email to register with Let's Encrypt for renewal notices (required)`)
58
58
59
-
createCmd.Flags().Bool("pro", true, `Provision an exit-server with inlets Pro (Deprecated)`)
60
-
_=createCmd.Flags().MarkHidden("pro")
61
59
createCmd.Flags().DurationP("poll", "n", time.Second*2, "poll every N seconds, use a higher value if you encounter rate-limiting")
62
60
63
61
createCmd.Flags().String("inlets-version", inletsProDefaultVersion, `Binary release version for inlets`)
0 commit comments