knative-serving
Instantly create and update Knative services on top of your Kubernetes cluster with Serverless Components.
1. Install
$ npm install -g serverless
2. Create
Just create a serverless.yml
file
$ touch serverless.yml
Make sure that you have generated your Kubeconfig
file via kubectl
.
3. Configure
# serverless.yml
myKnativeService:
component: '@serverless/knative-serving'
inputs:
kubeConfigPath: ../kubeconfig # default is `~/.kube/config`
knativeGroup: serving.knative.dev # default is `serving.knative.dev`
knativeVersion: v1alpha1 # default is `v1alpha1`
registryAddress: 'https://container-registry.acme.com' # default is `'https://index.docker.io/v1'`
namespace: 'default' # default is `'default'`
name: my-knative-service
repository: acme/some-func
tag: latest
4. Deploy
$ serverless
New to Components?
Checkout the Serverless Components repo for more information.