gke-deploy/cmd/run/run.go (147 lines of code) (raw):

// Package run contains the logic for `gke-deploy run` subcommand. package run import ( "context" "fmt" "strings" "time" "github.com/google/go-containerregistry/pkg/name" "github.com/spf13/cobra" "github.com/GoogleCloudPlatform/cloud-builders/gke-deploy/cmd/common" ) const ( short = "Execute both prepare and apply phase" long = `Deploy to GKE in two phases, which will do the following: Prepare Phase: - Expand Kubernetes configuration files: - Set the digest of images that match the [--image|-i] flag, if provided. - Add app.kubernetes.io/name=[--app|-a] label, if provided. - Add app.kubernetes.io/version=[--version|-v] label, if provided. Apply Phase: - Apply Kubernetes configuration files to the target cluster with the provided namespace. - Wait for deployed Kubernetes configuration files to be ready before exiting. ` example = ` # Expand Kubernetes configuration files and deploy to GKE cluster. gke-deploy run -f configs -i gcr.io/my-project/my-app:1.0.0 -a my-app -v 1.0.0 -o expanded -n my-namespace -c my-cluster -l us-east1-b # Deploy to GKE cluster that kubectl is currently targeting. gke-deploy run -f configs # Deploy to GKE cluster that kubectl is currently targeting without supplying any Kubernetes configuration files. Have gke-deploy generate suggested Kubernetes configuration files for your application using an image, app name, and service port. gke-deploy run -i nginx -a nginx -x 80 # Pipe output from another templating engine to gke-deploy run. kustomize build overlays/staging | gke-deploy run -f - -a my-app -c my-cluster -l us-east1-b helm template charts/prometheus | gke-deploy run -f - -a prometheus -c my-cluster -l us-east1-b # No need to run Tiller in cluster` ) type options struct { appName string appVersion string filename string clusterLocation string clusterName string clusterProject string image string labels []string annotations []string namespace string output string exposePort int createApplicationCR bool applicationLinks []string verbose bool waitTimeout time.Duration recursive bool serverDryRun bool } // NewRunCommand creates the `gke-deploy run` subcommand. func NewRunCommand() *cobra.Command { options := &options{} cmd := &cobra.Command{ Use: "run", Aliases: []string{"r", "deploy", "d"}, Short: short, Long: long, Example: example, RunE: func(cmd *cobra.Command, _ []string) error { return run(cmd, options) }, SilenceUsage: true, } cmd.Flags().StringVarP(&options.appName, "app", "a", "", "Application name of the Kubernetes deployment.") cmd.Flags().StringVarP(&options.appVersion, "version", "v", "", "Version of the Kubernetes deployment.") cmd.Flags().StringVarP(&options.filename, "filename", "f", "", "Local or GCS path to configuration file or directory of configuration files to use to create Kubernetes objects (file or files in directory must end in \".yml\" or \".yaml\"). Prefix this value with \"gs://\" to indicate a GCS path. If this field is not provided, a Deployment (with image provided by --image) and a HorizontalPodAutoscaler are created as suggested based configs. The application's name is inferred from the image name's suffix.") cmd.Flags().StringVarP(&options.clusterLocation, "location", "l", "", "Region/zone of GKE cluster to deploy to.") cmd.Flags().StringVarP(&options.clusterName, "cluster", "c", "", "Name of GKE cluster to deploy to.") cmd.Flags().StringVarP(&options.clusterProject, "project", "p", "", "Project of GKE cluster to deploy to. If this field is not provided, the current set GCP project is used.") cmd.Flags().StringVarP(&options.image, "image", "i", "", "Image to be deployed.") cmd.Flags().StringSliceVarP(&options.labels, "label", "L", nil, "Label(s) to add to Kubernetes configuration files (k1=v1). Labels can be set comma-delimited or as separate flags. If two or more labels with the same key are listed, the last one is used.") cmd.Flags().StringVarP(&options.namespace, "namespace", "n", "", "Namespace of GKE cluster to deploy to. If omitted, the namespace(s) specified in each Kubernetes configuration file is used.") cmd.Flags().StringSliceVarP(&options.annotations, "annotation", "A", nil, "Annotation(s) to add to Kubernetes configuration files (k1=v1). Annotations can be set comma-delimited or as separate flags. If two or more annotations with the same key are listed, the last one is used.") cmd.Flags().StringVarP(&options.output, "output", "o", "./output", "Target directory or GCS path to store suggested and expanded Kubernetes configuration files. Prefix this value with \"gs://\" to indicate a GCS path. Suggested files will be stored in \"<output>/suggested\" and expanded files will be stored in \"<output>/expanded\".") cmd.Flags().IntVarP(&options.exposePort, "expose", "x", 0, "Creates a Service object that connects to a deployed workload object using a selector that matches the label with key as 'app.kubernetes.io/name' and value specified by --app. The port provided will be used to expose the deployed workload object (i.e., port and targetPort will be set to the value provided in this flag).") cmd.Flags().BoolVarP(&options.verbose, "verbose", "V", false, "Prints underlying commands being called to stdout.") cmd.Flags().DurationVarP(&options.waitTimeout, "timeout", "t", 5*time.Minute, "Timeout limit for waiting for Kubernetes objects to finish applying.") cmd.Flags().BoolVarP(&options.recursive, "recursive", "R", false, "Recursively search through the provided path in --filename for all YAML files.") cmd.Flags().BoolVar(&options.createApplicationCR, "create-application-cr", false, "Creates an Application CR object with the name provided by --app and connects to deployed objects using a selector that matches the label with key as 'app.kubernetes.io/name' and value specified by --app.") cmd.Flags().StringSliceVar(&options.applicationLinks, "links", nil, "Links(s) to add to the spec.descriptor.links field of an Application CR generated with the --create-application-cr flag or provided via the --filename flag (description=URL). Links can be set comma-delimited or as separate flags.") cmd.Flags().BoolVarP(&options.serverDryRun, "server-dry-run", "D", false, "Perform kubectl apply server dry run to validate configurations without persisting resources.") return cmd } func run(_ *cobra.Command, options *options) error { ctx := context.Background() var im name.Reference if options.image != "" { ref, err := name.ParseReference(options.image) if err != nil { return err } im = ref } if options.filename == "" && options.image == "" { return fmt.Errorf("omitting -f|--filename requires -i|--image to be set") } if options.output == "" { return fmt.Errorf("value of -o|--output cannot be empty") } if options.clusterName != "" && options.clusterLocation == "" { return fmt.Errorf("you must set -l|--location flag because -c|--cluster flag is set") } if options.clusterLocation != "" && options.clusterName == "" { return fmt.Errorf("you must set -c|--cluster flag because -l|--location flag is set") } useGcloud := common.GcloudInPath() if options.exposePort < 0 { return fmt.Errorf("value of -x|--expose must be > 0") } if options.exposePort > 0 && options.appName == "" { return fmt.Errorf("exposing a deployed workload object requires -a|--app to be set") } if options.createApplicationCR && options.appName == "" { return fmt.Errorf("creating an Application CR requires -a|--app to be set") } labelsMap, err := common.CreateMapFromEqualDelimitedStrings(options.labels) if err != nil { return err } annotationsMap, err := common.CreateMapFromEqualDelimitedStrings(options.annotations) if err != nil { return err } applicationLinks, err := common.CreateApplicationLinksListFromEqualDelimitedStrings(options.applicationLinks) if err != nil { return err } useGsutil := common.UseGsutil(options.filename, options.output) d, err := common.CreateDeployer(ctx, useGsutil, useGcloud, options.verbose, options.serverDryRun) if err != nil { return err } expandedOutput := common.ExpandedOutputPath(options.output) if err := d.Prepare(ctx, im, options.appName, options.appVersion, options.filename, common.SuggestedOutputPath(options.output), expandedOutput, options.namespace, labelsMap, annotationsMap, options.exposePort, options.recursive, options.createApplicationCR, applicationLinks); err != nil { return fmt.Errorf("failed to prepare deployment: %v", err) } applyConfig := expandedOutput if strings.HasPrefix(options.output, "gs://") { // Without this, gsutil copies the entire expanded output directory, rather than just the files in the directory, which fails applying the deployment if the --recursive flag isn't set. applyConfig = applyConfig + "/*" } if err := d.Apply(ctx, options.clusterName, options.clusterLocation, options.clusterProject, applyConfig, options.namespace, options.waitTimeout, options.recursive); err != nil { return fmt.Errorf("failed to apply deployment: %v", err) } return nil }