Installing Knative

This guide walks you through the installation of the latest version of Knative. Note if you are upgrading an existing installation, follow the instructions here.

Knative has two components, which can be installed and used independently or together. To help you pick and choose the pieces that are right for you, here is a brief description of each:

  • Serving provides an abstraction for stateless request-based scale-to-zero services.
  • Eventing provides abstractions to enable binding event sources (e.g. Github Webhooks, Kafka) and consumers (e.g. Kubernetes or Knative Services).

Before you begin

This guide assumes that you want to install an upstream Knative release on a Kubernetes cluster. A growing number of vendors have managed Knative offerings; see the Knative Offerings page for a full list.

Knative v0.21.0 requires a Kubernetes cluster v1.17 or newer, as well as a compatible kubectl. This guide assumes that you’ve already created a Kubernetes cluster, and that you are using bash in a Mac or Linux environment; some commands will need to be adjusted for use in a Windows environment.

Installing the Serving component

  1. Install the Custom Resource Definitions (aka CRDs):

    1. kubectl apply --filename https://github.com/knative/serving/releases/download/v0.21.0/serving-crds.yaml
  2. Install the core components of Serving (see below for optional extensions):

    1. kubectl apply --filename https://github.com/knative/serving/releases/download/v0.21.0/serving-core.yaml
  3. Pick a networking layer (alphabetical):

    The following commands install Ambassador and enable its Knative integration.

    1. Create a namespace to install Ambassador in:

      1. kubectl create namespace ambassador
    2. Install Ambassador:

      1. kubectl apply --namespace ambassador \
      2. --filename https://getambassador.io/yaml/ambassador/ambassador-crds.yaml \
      3. --filename https://getambassador.io/yaml/ambassador/ambassador-rbac.yaml \
      4. --filename https://getambassador.io/yaml/ambassador/ambassador-service.yaml
    3. Give Ambassador the required permissions:

      1. kubectl patch clusterrolebinding ambassador -p '{"subjects":[{"kind": "ServiceAccount", "name": "ambassador", "namespace": "ambassador"}]}'
    4. Enable Knative support in Ambassador:

      1. kubectl set env --namespace ambassador deployments/ambassador AMBASSADOR_KNATIVE_SUPPORT=true
    5. To configure Knative Serving to use Ambassador by default:

      1. kubectl patch configmap/config-network \
      2. --namespace knative-serving \
      3. --type merge \
      4. --patch '{"data":{"ingress.class":"ambassador.ingress.networking.knative.dev"}}'
    6. Fetch the External IP or CNAME:

      1. kubectl --namespace ambassador get service ambassador

      Save this for configuring DNS below.

    The following commands install Contour and enable its Knative integration.

    1. Install a properly configured Contour:

      1. kubectl apply --filename https://github.com/knative/net-contour/releases/download/v0.21.0/contour.yaml
    2. Install the Knative Contour controller:

      1. kubectl apply --filename https://github.com/knative/net-contour/releases/download/v0.21.0/net-contour.yaml
    3. To configure Knative Serving to use Contour by default:

      1. kubectl patch configmap/config-network \
      2. --namespace knative-serving \
      3. --type merge \
      4. --patch '{"data":{"ingress.class":"contour.ingress.networking.knative.dev"}}'
    4. Fetch the External IP or CNAME:

      1. kubectl --namespace contour-external get service envoy

      Save this for configuring DNS below.

    For a detailed guide on Gloo integration, see Installing Gloo for Knative in the Gloo documentation.

    The following commands install Gloo and enable its Knative integration.

    1. Make sure glooctl is installed (version 1.3.x and higher recommended):

      1. glooctl version

      If it is not installed, you can install the latest version using:

      1. curl -sL https://run.solo.io/gloo/install | sh
      2. export PATH=$HOME/.gloo/bin:$PATH

      Or following the Gloo CLI install instructions.

    2. Install Gloo and the Knative integration:

      1. glooctl install knative --install-knative=false
    3. Fetch the External IP or CNAME:

      1. glooctl proxy url --name knative-external-proxy

      Save this for configuring DNS below.

    The following commands install Istio and enable its Knative integration.

    1. Install a properly configured Istio (Advanced installation)

      1. kubectl apply --filename https://github.com/knative/net-istio/releases/download/v0.21.0/istio.yaml
    2. Install the Knative Istio controller:

      1. kubectl apply --filename https://github.com/knative/net-istio/releases/download/v0.21.0/net-istio.yaml
    3. Fetch the External IP or CNAME:

      1. kubectl --namespace istio-system get service istio-ingressgateway

      Save this for configuring DNS below.

    The following commands install Kong and enable its Knative integration.

    1. Install Kong Ingress Controller:

      1. kubectl apply --filename https://raw.githubusercontent.com/Kong/kubernetes-ingress-controller/0.9.x/deploy/single/all-in-one-dbless.yaml
    2. To configure Knative Serving to use Kong by default:

      1. kubectl patch configmap/config-network \
      2. --namespace knative-serving \
      3. --type merge \
      4. --patch '{"data":{"ingress.class":"kong"}}'
    3. Fetch the External IP or CNAME:

      1. kubectl --namespace kong get service kong-proxy

      Save this for configuring DNS below.

    The following commands install Kourier and enable its Knative integration.

    1. Install the Knative Kourier controller:

      1. kubectl apply --filename https://github.com/knative/net-kourier/releases/download/v0.21.0/kourier.yaml
    2. To configure Knative Serving to use Kourier by default:

      1. kubectl patch configmap/config-network \
      2. --namespace knative-serving \
      3. --type merge \
      4. --patch '{"data":{"ingress.class":"kourier.ingress.networking.knative.dev"}}'
    3. Fetch the External IP or CNAME:

      1. kubectl --namespace kourier-system get service kourier

      Save this for configuring DNS below.

  4. Configure DNS

    We ship a simple Kubernetes Job called “default domain” that will (see caveats) configure Knative Serving to use xip.io as the default DNS suffix.

    1. kubectl apply --filename https://github.com/knative/serving/releases/download/v0.21.0/serving-default-domain.yaml

    Caveat: This will only work if the cluster LoadBalancer service exposes an IPv4 address or hostname, so it will not work with IPv6 clusters or local setups like Minikube. For these, see “Real DNS” or “Temporary DNS”.

    To configure DNS for Knative, take the External IP or CNAME from setting up networking, and configure it with your DNS provider as follows:

    • If the networking layer produced an External IP address, then configure a wildcard A record for the domain:

      1. # Here knative.example.com is the domain suffix for your cluster
      2. *.knative.example.com == A 35.233.41.212
    • If the networking layer produced a CNAME, then configure a CNAME record for the domain:

      1. # Here knative.example.com is the domain suffix for your cluster
      2. *.knative.example.com == CNAME a317a278525d111e89f272a164fd35fb-1510370581.eu-central-1.elb.amazonaws.com

    Once your DNS provider has been configured, direct Knative to use that domain:

    1. # Replace knative.example.com with your domain suffix
    2. kubectl patch configmap/config-domain \
    3. --namespace knative-serving \
    4. --type merge \
    5. --patch '{"data":{"knative.example.com":""}}'

    If you are using curl to access the sample applications, or your own Knative app, and are unable to use the “Magic DNS (xip.io)” or “Real DNS” methods, there is a temporary approach. This is useful for those who wish to evaluate Knative without altering their DNS configuration, as per the “Real DNS” method, or cannot use the “Magic DNS” method due to using, for example, minikube locally or IPv6 clusters.

    To access your application using curl using this method:

    1. After starting your application, get the URL of your application:

      1. kubectl get ksvc

      The output should be similar to:

      1. NAME URL LATESTCREATED LATESTREADY READY REASON
      2. helloworld-go http://helloworld-go.default.example.com helloworld-go-vqjlf helloworld-go-vqjlf True
    2. Instruct curl to connect to the External IP or CNAME defined by the networking layer in section 3 above, and use the -H "Host:" command-line option to specify the Knative application’s host name. For example, if the networking layer defines your External IP and port to be http://192.168.39.228:32198 and you wish to access the above helloworld-go application, use:

      1. curl -H "Host: helloworld-go.default.example.com" http://192.168.39.228:32198

      In the case of the provided helloworld-go sample application, the output should, using the default configuration, be:

      1. Hello Go Sample v1!

    Refer to the “Real DNS” method for a permanent solution.

  5. Monitor the Knative components until all of the components show a STATUS of Running or Completed:

    1. kubectl get pods --namespace knative-serving

At this point, you have a basic installation of Knative Serving!

Optional Serving extensions

Knative also supports the use of the Kubernetes Horizontal Pod Autoscaler (HPA) for driving autoscaling decisions. The following command will install the components needed to support HPA-class autoscaling:

  1. kubectl apply --filename https://github.com/knative/serving/releases/download/v0.21.0/serving-hpa.yaml

Knative supports automatically provisioning TLS certificates via cert-manager. The following commands will install the components needed to support the provisioning of TLS certificates via cert-manager.

  1. First, install cert-manager version 0.12.0 or higher

  2. Next, install the component that integrates Knative with cert-manager:

    1. kubectl apply --filename https://github.com/knative/net-certmanager/releases/download/v0.21.0/release.yaml
  3. Now configure Knative to automatically configure TLS certificates.

Knative supports automatically provisioning TLS certificates using Let’s Encrypt HTTP01 challenges. The following commands will install the components needed to support that.

  1. First, install the net-http01 controller:

    1. kubectl apply --filename https://github.com/knative/net-http01/releases/download/v0.21.0/release.yaml
  2. Next, configure the certificate.class to use this certificate type.

    1. kubectl patch configmap/config-network \
    2. --namespace knative-serving \
    3. --type merge \
    4. --patch '{"data":{"certificate.class":"net-http01.certificate.networking.knative.dev"}}'
  3. Lastly, enable auto-TLS.

    1. kubectl patch configmap/config-network \
    2. --namespace knative-serving \
    3. --type merge \
    4. --patch '{"data":{"autoTLS":"Enabled"}}'

If you are using a Certificate implementation that supports provisioning wildcard certificates (e.g. cert-manager with a DNS01 issuer), then the most efficient way to provision certificates is with the namespace wildcard certificate controller. The following command will install the components needed to provision wildcard certificates in each namespace:

  1. kubectl apply --filename https://github.com/knative/serving/releases/download/v0.21.0/serving-nscert.yaml

Note this will not work with HTTP01 either via cert-manager or the net-http01 options.

The DomainMapping CRD allows a user to map a Domain Name that they own to a specific Knative Service.

  1. kubectl apply --filename https://github.com/knative/serving/releases/download/v0.21.0/serving-domainmapping-crds.yaml
  2. kubectl wait --for=condition=Established --all crd
  3. kubectl apply --filename https://github.com/knative/serving/releases/download/v0.21.0/serving-domainmapping.yaml

Getting started with Serving

Deploy your first app with the getting started with Knative app deployment guide. You can also find a number of samples for Knative Serving here.

Installing the Eventing component

  1. Install the Custom Resource Definitions (aka CRDs):

    1. kubectl apply --filename https://github.com/knative/eventing/releases/download/v0.21.0/eventing-crds.yaml
  2. Install the core components of Eventing (see below for optional extensions):

    1. kubectl apply --filename https://github.com/knative/eventing/releases/download/v0.21.0/eventing-core.yaml
  3. Install a default Channel (messaging) layer (alphabetical).

    1. First, Install Apache Kafka for Kubernetes

    2. Then install the Apache Kafka Channel:

      1. curl -L "https://github.com/knative-sandbox/eventing-kafka/releases/download/v0.21.0/channel-consolidated.yaml" \
      2. | sed 's/REPLACE_WITH_CLUSTER_URL/my-cluster-kafka-bootstrap.kafka:9092/' \
      3. | kubectl apply --filename -

    To learn more about the Apache Kafka channel, try our sample

    1. Install the Google Cloud Pub/Sub Channel:

      1. # This installs both the Channel and the GCP Sources.
      2. kubectl apply --filename https://github.com/google/knative-gcp/releases/download/v0.21.0/cloud-run-events.yaml

    To learn more about the Google Cloud Pub/Sub Channel, try our sample

    The following command installs an implementation of Channel that runs in-memory. This implementation is nice because it is simple and standalone, but it is unsuitable for production use cases.

    1. kubectl apply --filename https://github.com/knative/eventing/releases/download/v0.21.0/in-memory-channel.yaml
    1. First, Install NATS Streaming for Kubernetes

    2. Then install the NATS Streaming Channel:

      1. kubectl apply --filename https://github.com/knative-sandbox/eventing-natss/releases/download/v0.21.0/300-natss-channel.yaml
  4. Install a Broker (eventing) layer:

    The following commands install the Apache Kafka broker, and run event routing in a system namespace, knative-eventing, by default.

    1. Install the Kafka controller by entering the following command:

      1. kubectl apply --filename https://github.com/knative-sandbox/eventing-kafka-broker/releases/download/v0.21.0/eventing-kafka-controller.yaml
    2. Install the Kafka Broker data plane by entering the following command:

      1. kubectl apply --filename https://github.com/knative-sandbox/eventing-kafka-broker/releases/download/v0.21.0/eventing-kafka-broker.yaml

    For more information, see the Kafka Broker documentation.

    The following command installs an implementation of Broker that utilizes Channels and runs event routing components in a System Namespace, providing a smaller and simpler installation.

    1. kubectl apply --filename https://github.com/knative/eventing/releases/download/v0.21.0/mt-channel-broker.yaml

    To customize which broker channel implementation is used, update the following ConfigMap to specify which configurations are used for which namespaces:

    1. apiVersion: v1
    2. kind: ConfigMap
    3. metadata:
    4. name: config-br-defaults
    5. namespace: knative-eventing
    6. data:
    7. default-br-config: |
    8. # This is the cluster-wide default broker channel.
    9. clusterDefault:
    10. brokerClass: MTChannelBasedBroker
    11. apiVersion: v1
    12. kind: ConfigMap
    13. name: imc-channel
    14. namespace: knative-eventing
    15. # This allows you to specify different defaults per-namespace,
    16. # in this case the "some-namespace" namespace will use the Kafka
    17. # channel ConfigMap by default (only for example, you will need
    18. # to install kafka also to make use of this).
    19. namespaceDefaults:
    20. some-namespace:
    21. brokerClass: MTChannelBasedBroker
    22. apiVersion: v1
    23. kind: ConfigMap
    24. name: kafka-channel
    25. namespace: knative-eventing

    The referenced imc-channel and kafka-channel example ConfigMaps would look like:

    1. apiVersion: v1
    2. kind: ConfigMap
    3. metadata:
    4. name: imc-channel
    5. namespace: knative-eventing
    6. data:
    7. channelTemplateSpec: |
    8. apiVersion: messaging.knative.dev/v1
    9. kind: InMemoryChannel
    10. ---
    11. apiVersion: v1
    12. kind: ConfigMap
    13. metadata:
    14. name: kafka-channel
    15. namespace: knative-eventing
    16. data:
    17. channelTemplateSpec: |
    18. apiVersion: messaging.knative.dev/v1alpha1
    19. kind: KafkaChannel
    20. spec:
    21. numPartitions: 3
    22. replicationFactor: 1

    In order to use the KafkaChannel make sure it is installed on the cluster as discussed above.

  5. Monitor the Knative components until all of the components show a STATUS of Running:

    1. kubectl get pods --namespace knative-eventing

At this point, you have a basic installation of Knative Eventing!

Optional Eventing extensions

  1. Install the Kafka controller:

    1. kubectl apply --filename https://github.com/knative-sandbox/eventing-kafka-broker/releases/download/v0.21.0/eventing-kafka-controller.yaml
  2. Install the Kafka Sink data plane:

    1. kubectl apply --filename https://github.com/knative-sandbox/eventing-kafka-broker/releases/download/v0.21.0/eventing-kafka-sink.yaml

For more information, see the Kafka Sink documentation.

The following command installs the Eventing Sugar Controller:

  1. kubectl apply --filename https://github.com/knative/eventing/releases/download/v0.21.0/eventing-sugar-controller.yaml

The Knative Eventing Sugar Controller will react to special labels and annotations and produce Eventing resources. For example:

  • When a Namespace is labeled with eventing.knative.dev/injection=enabled, the controller will create a default broker in that namespace.
  • When a Trigger is annotated with eventing.knative.dev/injection=enabled, the controller will create a Broker named by that Trigger in the Trigger’s Namespace.

The following command enables the default Broker on a namespace (here default):

  1. kubectl label namespace default eventing.knative.dev/injection=enabled

The following command installs the single-tenant Github source:

  1. kubectl apply --filename https://github.com/knative-sandbox/eventing-github/releases/download/v0.21.0/github.yaml

The single-tenant GitHub source creates one Knative service per GitHub source.

The following command installs the multi-tenant GitHub source:

  1. kubectl apply --filename https://github.com/knative-sandbox/eventing-github/releases/download/v0.21.0/mt-github.yaml

The multi-tenant GitHub source creates only one Knative service handling all GitHub sources in the cluster. This source does not support logging or tracing configuration yet.

To learn more about the Github source, try our sample

The following command installs the Apache Camel-K Source:

  1. kubectl apply --filename https://github.com/knative-sandbox/eventing-camel/releases/download/v0.21.0/camel.yaml

To learn more about the Apache Camel-K source, try our sample

The following command installs the Apache Kafka Source:

  1. kubectl apply --filename https://github.com/knative-sandbox/eventing-kafka/releases/download/v0.21.0/source.yaml

To learn more about the Apache Kafka source, try our sample

The following command installs the GCP Sources:

  1. # This installs both the Sources and the Channel.
  2. kubectl apply --filename https://github.com/google/knative-gcp/releases/download/v0.21.0/cloud-run-events.yaml

To learn more about the Cloud Pub/Sub source, try our sample.

To learn more about the Cloud Storage source, try our sample.

To learn more about the Cloud Scheduler source, try our sample.

To learn more about the Cloud Audit Logs source, try our sample.

The following command installs the Apache CouchDB Source:

  1. kubectl apply --filename https://github.com/knative-sandbox/eventing-couchdb/releases/download/v0.21.0/couchdb.yaml

To learn more about the Apache CouchDB source, read the documentation.

The following command installs the VMware Sources and Bindings:

  1. kubectl apply --filename https://github.com/vmware-tanzu/sources-for-knative/releases/download/v0.21.0/release.yaml

To learn more about the VMware sources and bindings, try our samples.

Getting started with Eventing

You can find a number of samples for Knative Eventing here. A quick-start guide is available here.

Feedback

Was this page helpful?

Glad to hear it! Please tell us how we can improve.

Sorry to hear that. Please tell us how we can improve.