Serverless applications are created and deployed as Kubernetes services, defined by a route and a configuration, and contained in a YAML file. To deploy a serverless application using {ServerlessProductName}, you must create a Knative Service
object.
Example Knative
Service
object YAML fileapiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: hello (1)
namespace: default (2)
spec:
template:
spec:
containers:
- image: docker.io/openshift/hello-openshift (3)
env:
- name: RESPONSE (4)
value: "Hello Serverless!"
-
The name of the application.
-
The namespace the application uses.
-
The image of the application.
-
The environment variable printed out by the sample application.