Knative Operator installation

Knative provides a Kubernetes Operator to install, configure and manage Knative. You can install the Serving component, Eventing component, or both on your cluster.

NOTE: The Knative Operator is still in Alpha phase. It has not been tested in a production environment, and should be used for development or test purposes only.

Prerequisites

  • You have a cluster that uses Kubernetes v1.18 or newer.
  • You have installed the kubectl CLI.
  • If you have only one node in your cluster, you will need at least 6 CPUs, 6 GB of memory, and 30 GB of disk storage.
  • If you have multiple nodes in your cluster, for each node you will need at least 2 CPUs, 4 GB of memory, and 20 GB of disk storage.
  • Your Kubernetes cluster must have access to the internet, since Kubernetes needs to be able to fetch images, such as gcr.io/knative-releases/knative.dev/operator/cmd/operator:<version>.

  • You have installed Istio.

Installing the latest release

You can find information about the different released versions of the Knative Operator on the Releases page.

Install the latest stable Operator release:

  1. kubectl apply -f https://github.com/knative/operator/releases/download/v0.22.0/operator.yaml

Verify your installation

Verify your installation:

  1. kubectl get deployment knative-operator

If the operator is installed correctly, the deployment shows a Ready status:

  1. NAME READY UP-TO-DATE AVAILABLE AGE
  2. knative-operator 1/1 1 1 19h

Track the log

Track the log of the operator:

  1. kubectl logs -f deploy/knative-operator

Installing the Knative Serving component

  1. Create and apply the Knative Serving CR:

    You can install the latest available Knative Serving in the operator by applying a YAML file containing the following:

    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-serving
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeServing
    8. metadata:
    9. name: knative-serving
    10. namespace: knative-serving

    If you do not specify a version by using spec.version, the operator defaults to the latest available version.

    You do not need to upgrade the operator to a newer version to install new releases of Knative Serving. If Knative Serving launches a new version, e.g. {{spec.version}}, you can install it by applying a YAML file containing the following:

    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-serving
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeServing
    8. metadata:
    9. name: knative-serving
    10. namespace: knative-serving
    11. spec:
    12. version: {{spec.version}}
    13. manifests:
    14. - URL: https://github.com/knative/serving/releases/download/v${VERSION}/serving-core.yaml
    15. - URL: https://github.com/knative/serving/releases/download/v${VERSION}/serving-hpa.yaml
    16. - URL: https://github.com/knative/serving/releases/download/v${VERSION}/serving-post-install-jobs.yaml
    17. - URL: https://github.com/knative/net-istio/releases/download/v${VERSION}/net-istio.yaml

    The field spec.version is used to set the version of Knative Serving. Replace {{spec.version}} with the correct version number. The tag ${VERSION} is automatically replaced with the version number from spec.version by the operator.

    The field spec.manifests is used to specify one or multiple URL links of Knative Serving component. Do not forget to add the valid URL of the Knative network ingress plugin. Knative Serving component is still tightly-coupled with a network ingress plugin in the operator. As in the above example, you can use net-istio. The ordering of the URLs is critical. Put the manifest you want to apply first on the top.

    The operator provides you the flexibility to install customized Knative Serving based your own requirements. As long as the manifests of customized Knative Serving are accessible to the operator, they can be installed.

    There are two modes available for you to install the customized manifests: overwrite mode and append mode. With the overwrite mode, you need to define all the manifests for Knative Serving to install, because the operator will no long install any available default manifests. With the append mode, you only need to define your customized manifests, and the customized manifests are installed, after default manifests are applied.

    1. You can use the overwrite mode to customize all the Knative Serving manifests. For example, the version of the customized Knative Serving is {{spec.version}}, and it is available at https://my-serving/serving.yaml. You choose net-istio as the ingress plugin, which is available at https://my-net-istio/net-istio.yaml. You can create the content of Serving CR as below to install your Knative Serving and the istio ingress:
    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-serving
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeServing
    8. metadata:
    9. name: knative-serving
    10. namespace: knative-serving
    11. spec:
    12. version: {{spec.version}}
    13. manifests:
    14. - URL: https://my-serving/serving.yaml
    15. - URL: https://my-net-istio/net-istio.yaml

    You can make the customized Knative Serving available in one or multiple links, as the spec.manifests supports a list of links. The ordering of the URLs is critical. Put the manifest you want to apply first on the top. We strongly recommend you to specify the version and the valid links to the customized Knative Serving, by leveraging both spec.version and spec.manifests. Do not skip either field.

    1. You can use the append mode to add your customized manifests into the default manifests. For example, you only customize a few resources, and make them available at https://my-serving/serving-custom.yaml. You still need to install the default Knative Serving. In this case, you can create the content of Serving CR as below:
    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-serving
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeServing
    8. metadata:
    9. name: knative-serving
    10. namespace: knative-serving
    11. spec:
    12. version: {{spec.version}}
    13. additionalManifests:
    14. - URL: https://my-serving/serving-custom.yaml

    Knative operator will install the default manifests of Knative Serving at the version {{spec.version}}, and then install your customized manifests based on them.

  2. Verify the Knative Serving deployment:

  1. kubectl get deployment -n knative-serving

If Knative Serving has been successfully deployed, all deployments of the Knative Serving will show READY status. Here is a sample output:

  1. NAME READY UP-TO-DATE AVAILABLE AGE
  2. activator 1/1 1 1 18s
  3. autoscaler 1/1 1 1 18s
  4. autoscaler-hpa 1/1 1 1 14s
  5. controller 1/1 1 1 18s
  6. istio-webhook 1/1 1 1 12s
  7. networking-istio 1/1 1 1 12s
  8. webhook 1/1 1 1 17s
  1. Check the status of Knative Serving Custom Resource:
  1. kubectl get KnativeServing knative-serving -n knative-serving

If Knative Serving is successfully installed, you should see:

  1. NAME VERSION READY REASON
  2. knative-serving <version number> True

Installing the Knative Serving component with different network layers

Knative Operator can configure Knative Serving component with different network layer options. Istio is the default network layer, if the ingress is not specified in the Knative Serving CR. Click on each tab below to see how you can configure Knative Serving with different ingresses:

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, apply the content of the Serving CR as below:

    1. cat <<-EOF | kubectl apply -f -
    2. apiVersion: operator.knative.dev/v1alpha1
    3. kind: KnativeServing
    4. metadata:
    5. name: knative-serving
    6. namespace: knative-serving
    7. spec:
    8. config:
    9. network:
    10. ingress.class: "ambassador.ingress.networking.knative.dev"
    11. EOF
  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.22.0/contour.yaml
  2. To configure Knative Serving to use Contour, apply the content of the Serving CR as below:

    1. cat <<-EOF | kubectl apply -f -
    2. apiVersion: operator.knative.dev/v1alpha1
    3. kind: KnativeServing
    4. metadata:
    5. name: knative-serving
    6. namespace: knative-serving
    7. spec:
    8. ingress:
    9. contour:
    10. enabled: true
    11. config:
    12. network:
    13. ingress.class: "contour.ingress.networking.knative.dev"
    14. EOF
  3. 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. To configure Knative Serving to use Gloo, apply the content of the Serving CR as below:

    1. cat <<-EOF | kubectl apply -f -
    2. apiVersion: operator.knative.dev/v1alpha1
    3. kind: KnativeServing
    4. metadata:
    5. name: knative-serving
    6. namespace: knative-serving
    7. EOF

    There is no need to configure the ingress class to use the gloo.

  4. Fetch the External IP or CNAME:

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

    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, apply the content of the Serving CR as below:

    1. cat <<-EOF | kubectl apply -f -
    2. apiVersion: operator.knative.dev/v1alpha1
    3. kind: KnativeServing
    4. metadata:
    5. name: knative-serving
    6. namespace: knative-serving
    7. spec:
    8. config:
    9. network:
    10. ingress.class: "kong"
    11. EOF
  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. To configure Knative Serving to use Kourier, apply the content of the Serving CR as below:

    1. cat <<-EOF | kubectl apply -f -
    2. apiVersion: operator.knative.dev/v1alpha1
    3. kind: KnativeServing
    4. metadata:
    5. name: knative-serving
    6. namespace: knative-serving
    7. spec:
    8. ingress:
    9. kourier:
    10. enabled: true
    11. config:
    12. network:
    13. ingress.class: "kourier.ingress.networking.knative.dev"
    14. EOF
  2. Fetch the External IP or CNAME:

    1. kubectl --namespace knative-serving get service kourier

    Save this for configuring DNS below.

  3. 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.22.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, add the following section into your existing Serving CR, and apply it:

    1. # Replace knative.example.com with your domain suffix
    2. apiVersion: operator.knative.dev/v1alpha1
    3. kind: KnativeServing
    4. metadata:
    5. name: knative-serving
    6. namespace: knative-serving
    7. spec:
    8. config:
    9. domain:
    10. "knative.example.com": ""
    11. ...

    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, using the default configuration, the output should be:

      1. Hello Go Sample v1!

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

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

    1. kubectl get pods --namespace knative-serving

Installing the Knative Eventing component

  1. Create and apply the Knative Eventing CR:

    You can install the latest available Knative Eventing in the operator by applying a YAML file containing the following:

    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-eventing
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeEventing
    8. metadata:
    9. name: knative-eventing
    10. namespace: knative-eventing

    If you do not specify a version by using spec.version, the operator defaults to the latest available version.

    You do not need to upgrade the operator to a newer version to install new releases of Knative Eventing. If Knative Eventing launches a new version, e.g. {{spec.version}}, you can install it by applying a YAML file containing the following:

    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-eventing
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeEventing
    8. metadata:
    9. name: knative-eventing
    10. namespace: knative-eventing
    11. spec:
    12. version: {{spec.version}}
    13. manifests:
    14. - URL: https://github.com/knative/eventing/releases/download/v${VERSION}/eventing.yaml
    15. - URL: https://github.com/knative/eventing/releases/download/v${VERSION}/eventing-post-install-jobs.yaml

    The field spec.version is used to set the version of Knative Eventing. Replace {{spec.version}} with the correct version number. The tag ${VERSION} is automatically replaced with the version number from spec.version by the operator.

    The field spec.manifests is used to specify one or multiple URL links of Knative Eventing component. Do not forget to add the valid URL of the Knative network ingress plugin. The ordering of the URLs is critical. Put the manifest you want to apply first on the top.

    The operator provides you the flexibility to install customized Knative Eventing based your own requirements. As long as the manifests of customized Knative Eventing are accessible to the operator, they can be installed.

    There are two modes available for you to install the customized manifests: overwrite mode and append mode. With the overwrite mode, you need to define all the manifests for Knative Eventing to install, because the operator will no long install any available default manifests. With the append mode, you only need to define your customized manifests, and the customized manifests are installed, after default manifests are applied.

    1. You can use the overwrite mode to customize all the Knative Eventing manifests. For example, the version of the customized Knative Eventing is {{spec.version}}, and it is available at https://my-eventing/eventing.yaml. You can create the content of Eventing CR as below to install your Knative Eventing:
    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-eventing
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeEventing
    8. metadata:
    9. name: knative-eventing
    10. namespace: knative-eventing
    11. spec:
    12. version: {{spec.version}}
    13. manifests:
    14. - URL: https://my-eventing/eventing.yaml

    You can make the customized Knative Eventing available in one or multiple links, as the spec.manifests supports a list of links. The ordering of the URLs is critical. Put the manifest you want to apply first on the top. We strongly recommend you to specify the version and the valid links to the customized Knative Eventing, by leveraging both spec.version and spec.manifests. Do not skip either field.

    1. You can use the append mode to add your customized manifests into the default manifests. For example, you only customize a few resources, and make them available at https://my-eventing/eventing-custom.yaml. You still need to install the default Knative eventing. In this case, you can create the content of Eventing CR as below:
    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: knative-eventing
    5. ---
    6. apiVersion: operator.knative.dev/v1alpha1
    7. kind: KnativeEventing
    8. metadata:
    9. name: knative-eventing
    10. namespace: knative-eventing
    11. spec:
    12. version: {{spec.version}}
    13. additionalManifests:
    14. - URL: https://my-eventing/eventing-custom.yaml

    Knative operator will install the default manifests of Knative Eventing at the version {{spec.version}}, and then install your customized manifests based on them.

  2. Verify the Knative Eventing deployment:

  1. kubectl get deployment -n knative-eventing

If Knative Eventing has been successfully deployed, all deployments of the Knative Eventing will show READY status. Here is a sample output:

  1. NAME READY UP-TO-DATE AVAILABLE AGE
  2. broker-controller 1/1 1 1 63s
  3. broker-filter 1/1 1 1 62s
  4. broker-ingress 1/1 1 1 62s
  5. eventing-controller 1/1 1 1 67s
  6. eventing-webhook 1/1 1 1 67s
  7. imc-controller 1/1 1 1 59s
  8. imc-dispatcher 1/1 1 1 59s
  9. mt-broker-controller 1/1 1 1 62s
  1. Check the status of Knative Eventing Custom Resource:
  1. kubectl get KnativeEventing knative-eventing -n knative-eventing

If Knative Eventing is successfully installed, you should see:

  1. NAME VERSION READY REASON
  2. knative-eventing <version number> True

Uninstall Knative

Removing the Knative Serving component

Remove the Knative Serving CR:

  1. kubectl delete KnativeServing knative-serving -n knative-serving

Removing Knative Eventing component

Remove the Knative Eventing CR:

  1. kubectl delete KnativeEventing knative-eventing -n knative-eventing

Knative operator prevents unsafe removal of Knative resources. Even if the Knative Serving and Knative Eventing CRs are successfully removed, all the CRDs in Knative are still kept in the cluster. All your resources relying on Knative CRDs can still work.

Removing the Knative Operator:

If you have installed Knative using the Release page, remove the operator using the following command:

  1. kubectl delete -f https://github.com/knative/operator/releases/download/v0.22.0/operator.yaml

If you have installed Knative from source, uninstall it using the following command while in the root directory for the source:

  1. ko delete -f config/

What’s next