| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
IBM Cloud Functions reached end of life and this repository is no longer active.
For Apache OpenWhisk visit: https://github.com/apache/openwhisk.
Some of the python packages are to be used on IBM Cloud:
Docker runtime is based on Debian/Ubuntu
Write a function using Apache OpenWhisk Serverless programming inteface
def main(args):
name = args.get("name", "stranger")
greeting = "Hello " + name + "!"
print(greeting)
return {"greeting": greeting}To use as a python kind action
bx wsk action update helloPython hello.py --kind python:3.11
To use as a docker action
bx wsk action update helloPython hello.py --docker ibmfunctions/action-python-v3.11
This works on any deployment of Apache OpenWhisk or IBM Cloud Functions
Prerequisite: Export OPENWHISK_HOME to point to your openwhisk cloned directory.
./gradlew python3:distDocker
This will produce the image whisk/action-python-v3.11
Build and Push image
docker login ./gradlew python3.11:distDocker -PdockerImagePrefix=$prefix-user -PdockerRegistry=docker.io
Deploy OpenWhisk using ansible environment that adds the new king python:3 Assuming you have OpenWhisk already deploy localy and OPENWHISK_HOME pointing to root directory of OpenWhisk core repository.
Set ROOTDIR to the root directory of this repository.
Redeploy OpenWhisk
cd $OPENWHISK_HOME/ansible
ANSIBLE_CMD="ansible-playbook -i ${ROOTDIR}/ansible/environments/local"
$ANSIBLE_CMD setup.yml
$ANSIBLE_CMD couchdb.yml
$ANSIBLE_CMD initdb.yml
$ANSIBLE_CMD wipe.yml
$ANSIBLE_CMD openwhisk.yml
To use as docker action push to your own dockerhub account
docker tag whisk/action-python-v3 $user_prefix/action-python-v3 docker push $user_prefix/action-python-v3
Then create the action using your the image from dockerhub
wsk action update myAction myAction.py --docker $user_prefix/action-python-v3
The $user_prefix is usually your dockerhub user id.
Install dependencies from the root directory on $OPENWHISK_HOME repository
./gradlew install
Using gradle to run all tests
./gradlew :tests:test
Using gradle to run some tests
./gradlew :tests:test --tests *ActionContainerTests*
Using IntelliJ:
To use as docker action push to your own dockerhub account
docker tag whisk/action-python-v3 $user_prefix/action-python-v3 docker push $user_prefix/action-python-v3
Then create the action using your the image from dockerhub
wsk action update myAction myAction.py --docker $user_prefix/action-python-v3
The $user_prefix is usually your dockerhub user id.
docker run --rm -it ibmfunctions/action-python-v3.11:1.4.0 sh -c "pip list --outdated"
docker run --rm -it ibmfunctions/action-python-v3.9:1.1.0 sh -c "pip list --outdated"
git tag 3.11@<new version> git push upstream 3.11@<new version>
git tag 3.11@latest -f git push upstream 3.11@latest -f
| Back | FazBrowse Home | New Git URL |