In this tutorial, you use an Oracle Cloud Infrastructure account to set up Oracle
Functions development. Then, you create a function application and a function.
Create a registry project name to store your function images in OCI Registry (OCIR).
When you publish a function, a Docker image is created in OCIR. Your OCIR
project name is prepended to your function images to make them easy to find. For
example, given:
Registry project name: my-func-prj
Function name: node-func
Your function image would be stored on OCIR under:
my-func-prj/node-func
Click the Oracle Cloud icon to go to the main landing
page.
Scroll down to Launch Resources.
Select Set up a network with a wizard.
In the Start VCN Wizard workflow, select Create VCN with Internet
Connectivity and then click Start VCN Wizard .
In the configuration dialog, fill in the VCN Name for your VCN. Your
Compartment is already set to the last compartment you were working in, or
defaults to your <your-tenancy> (root).
In the Configure VCN and Subnets section, keep the default values for the
CIDR blocks:
VCN CIDR BLOCK: 10.0.0.0/16
PUBLIC SUBNET CIDR BLOCK: 10.0.0.0/24
PRIVATE SUBNET CIDR BLOCK: 10.0.1.0/24
Note
Notice the public and private subnets have different network
addresses.
For DNS Resolution, uncheck Use DNS hostnames in this VCN.
Click Next.
The Create a VCN with Internet
Connectivity configuration dialog is displayed (not shown here)
confirming all the values you just entered.
To create your VCN, click Create.
The Creating
Resources dialog is displayed (not shown here) showing all VCN
components being created.
Click View Virtual Cloud Network to view your new VCN.
Your new VCN is displayed. Now you need to add a security rule to allow
HTTP connections on port 80, the default port for your applications.
With your new VCN displayed, click your Public subnet link.
The public
subnet information is displayed with the Security Lists at the bottom of the
page. A link to the Default Security List for your VCN is
displayed.
Click the Default Security List link.
The default
Ingress Rules for your VCN are displayed.
Click Add Ingress Rules.
An Add Ingress Rules
dialog is displayed.
Fill in the ingress rule with the following information. After all the data is
entered, click Add Ingress Rules
Fill in the ingress rule as follows:
Stateless: Checked
Source Type: CIDR
Source CIDR: 0.0.0.0/0
IP Protocol: TCP
Source Port Range: (leave-blank)
Destination Port Range: 80
Description: VCN for applications
After you click Add Ingress Rule, HTTP connections are
allowed to your public subnet.
Note
To open a different port, replace 80 in the last step with the port number.
You have successfully created a VCN that makes your applications available from the
internet.
3. Set up OCI Command Line Interface 🔗
To develop functions on your local machine, you must set up the OCI Command Line
Interface (CLI). This section assumes you have already installed Docker and Python 3.6+ and
pip3.
Complete the following three sections to enable Oracle Functions development on your
local machine with the CLI. For a detailed explanation of each step, see Set up Oracle Functions in a Local Dev
Environment.
Setting up the CLI allows you to deploy your functions and function application to
OCI Registry from your machine. First, install the CLI using Python's virtual environment
feature.
Install virtualenv:
With a virtual environment, you can manage dependencies for your project.
Every project can be in its own virtual environment to host independent
groups of Python libraries. You install virtualenv and
virtualenvwrapper.
Oracle Linux: If you are using an OCI Oracle Linux 7.8 image, Python 3.6
and pip3 are included by default. In case you are using a different
Oracle Linux image, the commands to install the Oracle Linux developer
repo along with Python 3.6 follow. If your image already has Python 3.6
installed, skip the first two commands down to the pip3
command.
MacOS: When you install Python 3 for MacOS, pip3 is installed, so you
are ready to install modules with
pip3.
Copy
brew install python3
pip3 install pipenv
Note
You might need to type "y" a few times to accept the packages that are
installed to the VM.
Create a directory to store your virtual environments. For example,
mkdir ~/envs creates an envs directory
under your home directory.
Set up your virtual environment wrapper in .bashrc.
Update the file:
Copy
sudo vi .bashrc
Note
The path to the Python executable and virtualwrapper.sh
could be different depending on the Linux distro or operating system. Ensure
you use the correct path with the which command.
In the file, append the following text and save the file:
Copy
# set up Python env
export WORKON_HOME=~/envs
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS=' -p /usr/bin/python3 '
source /usr/local/bin/virtualenvwrapper.sh
Activate the preceding commands in the current window.
Copy
source ~/.bashrc
Start a virtual environment.
Copy
mkvirtualenv cli-app
You see something similar to: (cli-app)
ubuntu@<ubuntu-instance-name>:~$
To do function development on your local machine, you need to install the Fn client.
Fn allows you to create functions, create applications, and deploy functions to the OCI
Registry.
Install the Fn client.
The Fn client is used to create, manage, and deploy Oracle Functions. To
install the client:
Command line option for Linux, MacOS, and Windows 10 Update 2004 (WSL
2.0):
Enter:
Copy
curl -LSs https://raw.githubusercontent.com/fnproject/cli/master/install | sh
Note
Regularly, rerun the installation command to upgrade to the latest version of Fn.
MacOS using Homebrew:
Enter:
Copy
brew install fn
Note
Fn is updated as part of normal Homebrew upgrades: brew upgrade.
Test your Fn installation.
Enter: fn version
The command returns text similar to:
Copy
Client version is latest version: 0.6.3
Server version: ?
Note
The response indicates you have installed the current version and do not have
the Fn Project server running on your local machine.
4. Prepare the OCI Registry for Functions 🔗
Next, you log Docker into the OCI Registry (OCIR).
You are prompted for your login name and password.
Username:<tenancy-name>/<user-name>
Password:<auth-token>
You have logged your instance into OCIR.
5. Configure Functions 🔗
To use Oracle Functions, you must configure the Fn application context. The context stores the values needed to connect to the Oracle Functions service.
You have configured Fn to connect to the Oracle Functions service.
Note
View/Edit your Context
Your Fn context files are in the ~/.fn/contexts
directory. Each context is stored in a .yaml file. For example,
your us-phoenix-1.yaml file might look similar to:
An Application is the main storage container for functions. Each function must have
an application for deployment. To create application, follow these steps.
Open the navigation menu and click Developer Services. Under Functions, click Applications.
Click Create Application.
Fill in the form data.
Name:<your-app-name>
VCN:<your-VCN>
Subnets:<your-public-subnet> or
<your-private-subnet>
Note
A public or private subnet may be used, select one.
If you want to connect to your function from the net, you need to get the
function's invoke endpoint. To find your invoke endpoint use the
inspect command.
Copy
fn inspect function your-app-name my-func-name
Examine the results of the inspect command. Notice the invoke
endpoint URL is included in the annotatins section of the
returned JSON data.
Copy
{
"annotations": {
"fnproject.io/fn/invokeEndpoint": "https://aaaaaaaaa.us-ashburn-1.functions.oci.oraclecloud.com/1111111/functions/ocid1.fnfunc.oc1.iad.aaaaaaaaa.../actions/invoke",
"oracle.com/oci/compartmentId": "ocid1.compartment.oc1..aaaaaaaa...",
"__comment":"Remaining output left out for brevity",
Use the URL returned from inspect to invoke the function.
Because functions require requests to be digitally signed, the oci
raw-request command is used for this example.
oci raw-request --http-method POST --request-body "" --target-uri https://https://aaaaaaaaa.us-ashburn-1.functions.oci.oraclecloud.com/1111111/functions/ocid1.fnfunc.oc1.iad.aaaaaaaaa.../actions/invoke
If you want to connect to your function from the net, you need to get the
function's invoke endpoint. To find your invoke endpoint use the
inspect command.
Copy
fn inspect function your-app-name my-func-name
Examine the results of the inspect command. Notice the invoke
endpoint URL is included in the annotatins section of the
returned JSON data.
Copy
{
"annotations": {
"fnproject.io/fn/invokeEndpoint": "https://aaaaaaaaa.us-ashburn-1.functions.oci.oraclecloud.com/1111111/functions/ocid1.fnfunc.oc1.iad.aaaaaaaaa.../actions/invoke",
"oracle.com/oci/compartmentId": "ocid1.compartment.oc1..aaaaaaaa...",
"__comment":"Remaining output left out for brevity",
Use the URL returned from inspect to invoke the function.
Because functions require requests to be digitally signed, the oci
raw-request command is used for this example.
oci raw-request --http-method POST --request-body "" --target-uri https://aaaaaaaaa.us-ashburn-1.functions.oci.oraclecloud.com/1111111/functions/ocid1.fnfunc.oc1.iad.aaaaaaaaa.../actions/invoke
If you want to connect to your function from the net, you need to get the
function's invoke endpoint. To find your invoke endpoint use the
inspect command.
Copy
fn inspect function your-app-name my-func-name
Examine the results of the inspect command. Notice the invoke
endpoint URL is included in the annotatins section of the
returned JSON data.
Copy
{
"annotations": {
"fnproject.io/fn/invokeEndpoint": "https://aaaaaaaaa.us-ashburn-1.functions.oci.oraclecloud.com/1111111/functions/ocid1.fnfunc.oc1.iad.aaaaaaaaa.../actions/invoke",
"oracle.com/oci/compartmentId": "ocid1.compartment.oc1..aaaaaaaa...",
"__comment":"Remaining output left out for brevity",
Use the URL returned from inspect to invoke the function.
Because functions require requests to be digitally signed, the oci
raw-request command is used for this example.
oci raw-request --http-method POST --request-body "" --target-uri https://https://aaaaaaaaa.us-ashburn-1.functions.oci.oraclecloud.com/1111111/functions/ocid1.fnfunc.oc1.iad.aaaaaaaaa.../actions/invoke