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
* Add Keda Deployer
* Run hack/update-codegen.sh
* Fix linter issues
* Scale down keda-http-add-on to only one replica in CI to save resources
* Allow to specify the cluster-domain
* Remove outdated comment
* Update comment
* Remove port section in external name service
* Rename interceptor-proxy service to interceptor-bridge service
* Fix: add owner reference in bridge service too
* Run `make schema-generate`
* Update component-versions via component-versions.json
* Remove cluster-domain flag and use cluster.local instead for now
* Fix: add "keda" to deployer enum for jsonschema
* Remove unneeded blank import
* Remove custom roundtripper for keda integration tests
* Run `./hack/update-codegen.sh`
* Fix linter issue
* Fix unit test for component version script
* Update to Keda HTTP Add-on 1.12
* Address review comments
"Service account to be used in the deployed function ($FUNC_SERVICE_ACCOUNT)")
197
198
cmd.Flags().String("deployer", f.Deploy.Deployer,
198
-
fmt.Sprintf("Type of deployment to use: '%s' for Knative Service (default) or '%s' for Kubernetes Deployment ($FUNC_DEPLOY_TYPE)", knative.KnativeDeployerName, k8s.KubernetesDeployerName))
199
+
fmt.Sprintf("Type of deployment to use: '%s' for Knative Service (default), '%s' for Kubernetes Deployment or '%s' for Deployment with a Keda HTTP scaler ($FUNC_DEPLOY_TYPE)", knative.KnativeDeployerName, k8s.KubernetesDeployerName, keda.KedaDeployerName))
199
200
// Static Flags:
200
201
// Options which have static defaults only (not globally configurable nor
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
-
--deployer 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), 'raw' for Kubernetes Deployment or 'keda' for Deployment with a Keda HTTP scaler ($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