Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python Middleware v2 Scaffolding #2685

Merged
merged 47 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
4619287
refactor python http template
lkingland Oct 30, 2024
0403fea
python http scaffolding
lkingland Oct 30, 2024
a1aab62
add python to make update-runtimes
lkingland Nov 8, 2024
d692f71
integrate python scaffolding with func run
lkingland Nov 8, 2024
cb452cd
python http template
lkingland Nov 8, 2024
515665e
reorganize python scaffolding
lkingland Nov 8, 2024
bd7d351
cancellation stopgap
lkingland Nov 19, 2024
2fd5e2b
documentation and logging cleanup
lkingland Nov 19, 2024
1dfe6e3
Python Middleware v2 - Scaffolding
lkingland Feb 4, 2025
bfed624
base layer cache
lkingland Feb 6, 2025
18030cd
remove wsgi and flask templates
lkingland Mar 3, 2025
edf2149
update python cloudevents runtime in makefile
lkingland Mar 3, 2025
3a1e1d9
python cloudevents middleware
lkingland Mar 4, 2025
4ef6184
add python .venvs to gitignore
lkingland Mar 5, 2025
8f59f72
clean up venvs on make
lkingland Mar 5, 2025
bbb3c46
add missing dependencies to python http tempklate
lkingland Mar 5, 2025
76c1560
set python cloudevents manifest
lkingland Mar 6, 2025
269a8b2
further cleanup of repository impl
lkingland Mar 6, 2025
7cd0cc6
cleanup
lkingland Mar 7, 2025
ae508a2
ignore venv when building runtime container
lkingland Mar 7, 2025
18f9c83
set listen address on python container
lkingland Mar 7, 2025
c438936
remove unnecessary python runtime update from makefile
lkingland Mar 11, 2025
9922480
remove debug statements and improved comments
lkingland Mar 11, 2025
7367359
enable scaffolding python funcs in s2i builder
lkingland Mar 11, 2025
337000e
set listen address on all containers built by s2i
lkingland Mar 11, 2025
6f6580b
python s2i integration
lkingland Mar 11, 2025
b961205
regen fs
lkingland Mar 11, 2025
21c1ca7
cleanup
lkingland Mar 13, 2025
840b09f
enable host builder
lkingland Mar 13, 2025
b8cbc06
fix manifest inheritance
lkingland Mar 14, 2025
8f2711a
regen fs
lkingland Mar 17, 2025
19fcd73
bug fixes
lkingland Mar 17, 2025
04e2740
Merge remote-tracking branch 'upstream/main' into scaffolding-python
lkingland Mar 17, 2025
12aeace
regen docs
lkingland Mar 17, 2025
fbe6a67
cleanup and linter error fixes
lkingland Mar 24, 2025
5af24e9
conditional python host builder test
lkingland Mar 24, 2025
4c670d0
Merge remote-tracking branch 'upstream/main' into scaffolding-python
lkingland Mar 24, 2025
fd9174b
misspellings
lkingland Mar 24, 2025
6f5890c
disable python E2E
lkingland Mar 24, 2025
0a6d252
install python for presubmit tests
lkingland Mar 24, 2025
6220725
use linux for test builder runs
lkingland Mar 24, 2025
8d82333
fix ineffasign
lkingland Mar 24, 2025
86b72ea
set python ce template to python 3.9
lkingland Mar 24, 2025
e225c69
regen fs
lkingland Mar 24, 2025
9ecb85c
windows python tests
lkingland Mar 25, 2025
d60a588
Merge remote-tracking branch 'upstream/main' into scaffolding-python
lkingland Apr 1, 2025
727d1dd
python templates README
lkingland Apr 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
/func
/func_*
/cmd/func.yaml
/templates/typescript/cloudevents/build
/templates/typescript/http/build
/coverage.out
/coverage.txt
/.coverage
Expand All @@ -17,11 +15,15 @@

/pkg/functions/testdata/migrations/*/.gitignore

# Nodejs
# JS
node_modules
/templates/typescript/cloudevents/build
/templates/typescript/http/build

# Python
__pycache__
/templates/python/cloudevents/.venv
/templates/python/http/.venv

# VSCode
.vscode
Expand Down
46 changes: 33 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,27 @@ generate/zz_filesystem_generated.go: clean_templates
.PHONY: clean_templates
clean_templates:
# Removing temporary template files
@rm -rf templates/**/.DS_Store
@rm -rf templates/node/cloudevents/node_modules
@rm -rf templates/node/http/node_modules
@rm -rf templates/python/cloudevents/__pycache__
@rm -rf templates/python/http/__pycache__
@rm -rf templates/typescript/cloudevents/node_modules
@rm -rf templates/typescript/http/node_modules
@rm -rf templates/typescript/cloudevents/build
@rm -rf templates/typescript/http/build
@rm -rf templates/rust/cloudevents/target
@rm -rf templates/rust/http/target
@rm -rf templates/python/cloudevents/.venv
@rm -rf templates/python/cloudevents/.pytest_cache
@rm -rf templates/python/cloudevents/function/__pycache__
@rm -rf templates/python/cloudevents/tests/__pycache__
@rm -rf templates/python/http/.venv
@rm -rf templates/python/http/.pytest_cache
@rm -rf templates/python/http/function/__pycache__
@rm -rf templates/python/http/tests/__pycache__
@rm -rf templates/quarkus/cloudevents/target
@rm -rf templates/quarkus/http/target
@rm -rf templates/rust/cloudevents/target
@rm -rf templates/rust/http/target
@rm -rf templates/springboot/cloudevents/target
@rm -rf templates/springboot/http/target
@rm -f templates/**/.DS_Store
@rm -rf templates/typescript/cloudevents/build
@rm -rf templates/typescript/cloudevents/node_modules
@rm -rf templates/typescript/http/build
@rm -rf templates/typescript/http/node_modules

.PHONY: clean
clean: clean_templates ## Remove generated artifacts such as binaries and schemas
Expand Down Expand Up @@ -152,8 +158,17 @@ test-node: ## Test Node templates
cd templates/node/http && npm ci && npm test && rm -rf node_modules

test-python: ## Test Python templates
cd templates/python/cloudevents && pip3 install -r requirements.txt && python3 test_func.py && rm -rf __pycache__
cd templates/python/http && python3 test_func.py && rm -rf __pycache__
# Python HTTP template tests
cd templates/python/http && \
python -m venv .venv && \
./.venv/bin/pip install . && \
./.venv/bin/python -m pytest ./tests

# Python CloudEvent template tests
cd templates/python/cloudevents && \
python -m venv .venv && \
./.venv/bin/pip install . && \
./.venv/bin/python -m pytest ./tests

test-quarkus: ## Test Quarkus templates
cd templates/quarkus/cloudevents && ./mvnw -q test && ./mvnw clean && rm .mvn/wrapper/maven-wrapper.jar
Expand All @@ -176,14 +191,19 @@ test-typescript: ## Test Typescript templates
###############

# Pulls runtimes then rebuilds the embedded filesystem
update-runtimes: pull-runtimes generate/zz_filesystem_generated.go ## Update Scaffolding Runtimes
update-runtimes: update-runtime-go update-runtime-python generate/zz_filesystem_generated.go ## Update Scaffolding Runtimes

pull-runtimes:
update-runtime-go:
cd templates/go/scaffolding/instanced-http && go get -u knative.dev/func-go/http
cd templates/go/scaffolding/static-http && go get -u knative.dev/func-go/http
cd templates/go/scaffolding/instanced-cloudevents && go get -u knative.dev/func-go/cloudevents
cd templates/go/scaffolding/static-cloudevents && go get -u knative.dev/func-go/cloudevents

update-runtime-python:
# Python runtime dependencies are updated on-demand



.PHONY: cert
certs: templates/certs/ca-certificates.crt ## Update root certificates

Expand Down
11 changes: 4 additions & 7 deletions cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,7 @@ EXAMPLES

// Temporarily Hidden Basic Auth Flags
// Username, Password and Token flags, which plumb through basic auth, are
// currently only available on the experimental "host" builder, which is
// itself behind a feature flag FUNC_ENABLE_HOST_BUILDER. So set these
// flags to hidden until it's out of preview and they are plumbed through
// the docker pusher as well.
// currently only available on the "host" builder.
_ = cmd.Flags().MarkHidden("username")
_ = cmd.Flags().MarkHidden("password")
_ = cmd.Flags().MarkHidden("token")
Expand Down Expand Up @@ -165,13 +162,13 @@ func runBuild(cmd *cobra.Command, _ []string, newClient ClientFactory) (err erro
if err = cfg.Validate(); err != nil { // Perform any pre-validation
return
}
if f, err = fn.NewFunction(cfg.Path); err != nil {
if f, err = fn.NewFunction(cfg.Path); err != nil { // Read in the Function
return
}
if !f.Initialized() {
return fn.NewErrNotInitialized(f.Root)
}
f = cfg.Configure(f) // Updates f at path to include build request values
f = cfg.Configure(f) // Returns an f updated with values from the config (flags, envs, etc)

cmd.SetContext(cfg.WithValues(cmd.Context())) // Some optional settings are passed via context

Expand All @@ -184,7 +181,7 @@ func runBuild(cmd *cobra.Command, _ []string, newClient ClientFactory) (err erro
defer done()

// Build
buildOptions, err := cfg.buildOptions()
buildOptions, err := cfg.buildOptions() // build-specific options from the finalized cfg
if err != nil {
return
}
Expand Down
19 changes: 2 additions & 17 deletions cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"errors"
"fmt"
"io"
"os"
"strconv"
"strings"

Expand Down Expand Up @@ -207,10 +206,7 @@ EXAMPLES

// Temporarily Hidden Basic Auth Flags
// Username, Password and Token flags, which plumb through basic auth, are
// currently only available on the experimental "host" builder, which is
// itself behind a feature flag FUNC_ENABLE_HOST_BUILDER. So set these
// flags to hidden until it's out of preview and they are plumbed through
// the docker pusher as well.
// currently only available on "host" builder.
_ = cmd.Flags().MarkHidden("username")
_ = cmd.Flags().MarkHidden("password")
_ = cmd.Flags().MarkHidden("token")
Expand Down Expand Up @@ -433,18 +429,7 @@ func KnownBuilders() builders.Known {
// However, future third-party integrations may support less than, or more
// builders, and certain environmental considerations may alter this list.

// Also a good place to stick feature-flags; to wit:
enable_host, _ := strconv.ParseBool(os.Getenv("FUNC_ENABLE_HOST_BUILDER"))
if !enable_host {
bb := []string{}
for _, b := range builders.All() {
if b != builders.Host {
bb = append(bb, b)
}
}
return bb
}

// Also a good place to stick feature-flags.
return builders.All()
}

Expand Down
1 change: 0 additions & 1 deletion cmd/deploy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1531,7 +1531,6 @@ func testAuthentication(cmdFn commandConstructor, t *testing.T) {
}

cmd := cmdFn(NewTestClient(fn.WithPusher(pusher)))
t.Setenv("FUNC_ENABLE_HOST_BUILDER", "true") // host builder is currently behind this feature flag
cmd.SetArgs([]string{"--builder", "host", "--username", testUser, "--password", testPass})
if err := cmd.Execute(); err != nil {
t.Fatal(err)
Expand Down
36 changes: 19 additions & 17 deletions cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"knative.dev/func/pkg/config"
"knative.dev/func/pkg/docker"
fn "knative.dev/func/pkg/functions"
"knative.dev/func/pkg/oci"
)

func NewRunCmd(newClient ClientFactory) *cobra.Command {
Expand All @@ -38,9 +39,14 @@
The --container flag indicates that the function's container should be
run rather than running the source code directly. This may require that
the function's container first be rebuilt. Building the container on or
off can be altered using the --build flag. The default value --build=auto
indicates the system should automatically build the container only if
necessary.
off can be altered using the --build flag. The value --build=auto
can be used to indicate the function should be run in a container, with
the container automatically built if necessary.

The --container flag deafults to true if the builder defined for the

Check failure on line 46 in cmd/run.go

View workflow job for this annotation

GitHub Actions / style / Golang / Lint

"deafults" is a misspelling of "defaults"

Check failure on line 46 in cmd/run.go

View workflow job for this annotation

GitHub Actions / style / Golang / Lint

[github.com/client9/misspell] reported by reviewdog 🐶 "deafults" is a misspelling of "defaults" Raw Output: cmd/run.go:46:24: "deafults" is a misspelling of "defaults"
function is a containerized builder such as Pack or S2I, and in the case
where the function's runtime requires containerized builds (is not yet
supported by the Host builder.

Process Scaffolding
This is an Experimental Feature currently available only to Go projects.
Expand Down Expand Up @@ -103,6 +109,8 @@
"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-).")
cmd.Flags().Duration("start-timeout", f.Run.StartTimeout, fmt.Sprintf("time this function needs in order to start. If not provided, the client default %v will be in effect. ($FUNC_START_TIMEOUT)", fn.DefaultStartTimeout))
cmd.Flags().BoolP("container", "t", runContainerizedByDefault(f),
"Run the function in a container. ($FUNC_CONTAINER)")

// TODO: Without the "Host" builder enabled, this code-path is unreachable,
// so remove hidden flag when either the Host builder path is available,
Expand All @@ -116,8 +124,6 @@
cmd.Flags().String("build", "auto",
"Build the function. [auto|true|false]. ($FUNC_BUILD)")
cmd.Flags().Lookup("build").NoOptDefVal = "true" // register `--build` as equivalient to `--build=true`
cmd.Flags().BoolP("container", "t", true,
"Run the function in a container. ($FUNC_CONTAINER)")

// Oft-shared flags:
addConfirmFlag(cmd, cfg.Confirm)
Expand All @@ -136,14 +142,17 @@
return cmd
}

func runContainerizedByDefault(f fn.Function) bool {
return f.Build.Builder == "pack" || f.Build.Builder == "s2i" || !oci.IsSupported(f.Runtime)
}

func runRun(cmd *cobra.Command, newClient ClientFactory) (err error) {
var (
cfg runConfig
f fn.Function
)
if cfg, err = newRunConfig(cmd).Prompt(); err != nil {
return
}
cfg = newRunConfig(cmd) // Will add Prompt on upcoming UX refactor

if f, err = fn.NewFunction(cfg.Path); err != nil {
return
}
Expand Down Expand Up @@ -340,15 +349,8 @@
}
}

// There is currently no local host runner implemented, so specifying
// --container=false should return an informative error for runtimes other
// than Go that is more helpful than the cryptic, though correct, error
// from the Client that it was instantated without a runner.
// TODO: modify this check when the local host runner is available to
// only generate this error when --container==false && the --language is
// not yet implemented.
if !c.Container && f.Runtime != "go" {
return errors.New("the ability to run functions outside of a container via 'func run' is coming soon.")
if !c.Container && !oci.IsSupported(f.Runtime) {
return fmt.Errorf("The %q runtime currently requires being run in a container", f.Runtime)
}

// When the docker runner respects the StartTimeout, this validation check
Expand Down
6 changes: 1 addition & 5 deletions cmd/templates_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ go http
node cloudevents
node http
python cloudevents
python flask
python http
python wsgi
quarkus cloudevents
quarkus http
rust cloudevents
Expand Down Expand Up @@ -67,9 +65,7 @@ func TestTemplates_JSON(t *testing.T) {
],
"python": [
"cloudevents",
"flask",
"http",
"wsgi"
"http"
],
"quarkus": [
"cloudevents",
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/func_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func build

```
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "pack" and "s2i". ($FUNC_BUILDER) (default "pack")
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". ($FUNC_BUILDER) (default "pack")
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
-h, --help help for build
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/func_config_git_set.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func config git set
### Options

```
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "pack" and "s2i". (default "pack")
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
--config-cluster Configure cluster resources (credentials and config on the cluster).
--config-local Configure local resources (pipeline templates).
Expand Down
2 changes: 0 additions & 2 deletions docs/reference/func_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ DESCRIPTION
node cloudevents
node http
python cloudevents
python flask
python http
python wsgi
quarkus cloudevents
quarkus http
rust cloudevents
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/func_deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func deploy
```
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "pack" and "s2i". (default "pack")
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
--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)
Expand Down
13 changes: 9 additions & 4 deletions docs/reference/func_run.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@
The --container flag indicates that the function's container should be
run rather than running the source code directly. This may require that
the function's container first be rebuilt. Building the container on or
off can be altered using the --build flag. The default value --build=auto
indicates the system should automatically build the container only if
necessary.
off can be altered using the --build flag. The value --build=auto
can be used to indicate the function should be run in a container, with
the container automatically built if necessary.

The --container flag deafults to true if the builder defined for the

Check failure on line 29 in docs/reference/func_run.md

View workflow job for this annotation

GitHub Actions / style / Golang / Lint

[github.com/client9/misspell] reported by reviewdog 🐶 "deafults" is a misspelling of "defaults" Raw Output: docs/reference/func_run.md:29:24: "deafults" is a misspelling of "defaults"
function is a containerized builder such as Pack or S2I, and in the case
where the function's runtime requires containerized builds (is not yet
supported by the Host builder.

Process Scaffolding
This is an Experimental Feature currently available only to Go projects.
Expand Down Expand Up @@ -56,7 +61,7 @@

```
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "pack" and "s2i". (default "pack")
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
-t, --container Run the function in a container. ($FUNC_CONTAINER) (default true)
Expand Down
Loading
Loading