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
fmt.Sprintf("Type of deployment to use: '%s' for Knative Service (default) or '%s' for Kubernetes Deployment ($FUNC_DEPLOY_TYPE)", knative.KnativeDeployerName, k8s.KubernetesDeployerName))
197
197
// Static Flags:
198
198
// Options which have static defaults only (not globally configurable nor
@@ -567,8 +567,8 @@ type deployConfig struct {
567
567
//Service account to be used in deployed function
568
568
ServiceAccountNamestring
569
569
570
-
// DeployType specifies the type of deployment: "knative" or "deployment"
571
-
DeployTypestring
570
+
// Deployer specifies the type of deployment: "knative" or "raw"
571
+
Deployerstring
572
572
573
573
// Remote indicates the deployment (and possibly build) process are to
574
574
// be triggered in a remote environment rather than run locally.
Copy file name to clipboardExpand all lines: docs/reference/func_deploy.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ func deploy
119
119
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
120
120
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
121
121
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
122
-
--deploy-type string Type of deployment to use: 'knative' for Knative Service (default) or 'raw' for Kubernetes Deployment ($FUNC_DEPLOY_TYPE)
122
+
--deployer string Type of deployment to use: 'knative' for Knative Service (default) or 'raw' for Kubernetes Deployment ($FUNC_DEPLOY_TYPE)
123
123
--domain string Domain to use for the function's route. Cluster must be configured with domain matching for the given domain (ignored if unrecognized) ($FUNC_DOMAIN)
124
124
-e, --env stringArray Environment variable to set in the form NAME=VALUE. You may provide this flag multiple times for setting multiple environment variables. To unset, specify the environment variable name followed by a "-" (e.g., NAME-).
125
125
-t, --git-branch string Git revision (branch) to be used when deploying via the Git repository ($FUNC_GIT_BRANCH)
0 commit comments