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
{{ message }}
This repository was archived by the owner on Dec 15, 2021. It is now read-only.
deployCmd.Flags().Bool("headless", false, "Deploy http-based function without a single service IP and load balancing support from Kubernetes. See: https://kubernetes.io/docs/concepts/services-networking/service/#headless-services")
278
286
deployCmd.Flags().Bool("dryrun", false, "Output JSON manifest of the function without creating it")
279
287
deployCmd.Flags().Int32("port", 8080, "Deploy http-based function with a custom port")
288
+
deployCmd.Flags().Int32("servicePort", 0, "Deploy http-based function with a custom service port. If not provided the value of 'port' will be used")
updateCmd.Flags().StringP("timeout", "", "180", "Maximum timeout (in seconds) for the function to complete its execution")
219
226
updateCmd.Flags().Bool("headless", false, "Deploy http-based function without a single service IP and load balancing support from Kubernetes. See: https://kubernetes.io/docs/concepts/services-networking/service/#headless-services")
220
227
updateCmd.Flags().Int32("port", 8080, "Deploy http-based function with a custom port")
228
+
updateCmd.Flags().Int32("servicePort", 0, "Deploy http-based function with a custom service port")
221
229
updateCmd.Flags().Bool("dryrun", false, "Output JSON manifest of the function without creating it")
0 commit comments