Install Knative and Deploy an App on IBM Cloud
3 min read
Install Knative with Istio on IBM Cloud Kubernetes Service
In this post, I’m going to show you how easy it is to install Knative with Istio on IBM Cloud Kubernetes Service, build and push an image to IBM Cloud Container Registry, and deploy an app.
Before jumping into the instructions, let’s quickly understand what Knative is and look at its key components.
Knative
Knative extends Kubernetes to provide the missing building blocks that developers need to create modern, source-centric, container-based, cloud-native applications.
Each of the components under the Knative project attempt to identify common patterns and codify the best practices shared by successful real-world Kubernetes-based frameworks and applications. These best practices include the following:
-
Orchestrating source-to-container workflows
-
Routing and managing traffic during deployment
-
Scaling and sizing resources based on demand
-
Binding running services to eventing ecosystems
Knative focuses on the “boring but difficult” parts that everyone needs, but no one benefits from doing over again on their own. This, in turn, frees developers to spend more time writing application code, not worrying about how they are going to build, deploy, monitor, and debug it. To learn more about the basics of Knative, please see our lightboarding video, “What is Knative?“
What are the Knative components?
Currently, Knative consists of the following top-level repositories:
-
Build and build-templates—automatic, repeatable server-side container builds
-
Serving—scale to zero, request-driven compute
-
Eventing—management and delivery of events
We expect this list to grow as more areas are identified.
Install Knative with Istio on IBM Cloud Kubernetes Service
Prerequisites
Set up CLI
If you already have ibmcloud CLI installed with the ibmcloud plugins, you can skip these steps.
-
Install the cs (container-service) and cr (container-registry) plugins
-
Authorize ibmcloud:
Create a Kubernetes cluster and set up Istio
In this section, you will provision a Kubernetes cluster on the IBM Cloud Kubernetes Service and install Istio and Knative components.
-
Set up environment variables
-
Follow the steps to create a Kubernetes cluster
-
As Knative depends on Istio, install the latest version of Istio:
-
Label the default namespace with istio-injection=enabled:
kubectl label namespace default istio-injection=enabled
-
Monitor the Istio components until all of the components show a STATUS of Running or Completed:
kubectl get pods --namespace istio-system
-
Follow the instructions for installing Knative components on an IBM Cloud Kubernetes Service cluster
-
To check Knative installation, run the following command (this requires kubectl client version 1.11 or above):
Build and deploy the app
This section uses a nodejs app. For code samples in other programming languages (Go, Python, C#, Java, etc.,), please refer to Knative serving sample applications.
-
Clone the repo and
cd
into the folder:
-
Install dependencies:
-
Build and push the Docker image to IBM Cloud Container Registry by replacing
<region>
and<namespace>
values:
Note: To check your region, run
ibmcloud cr region
, and to set up a new namespace, please refer to this link.
-
In
service.yaml
, replaceimage
value and run the below command:
-
To find the IP address for your service, use
kubectl get svc knative-ingressgateway -n istio-system
to get the ingress IP for your cluster. If your cluster is new, it may take some time for the service to get assigned an external IP address:
-
To find the URL for your service, use
kubectl get services.serving.knative.dev knative-node-app --output jsonpath='{.status.domain}'
-
Now you can make a request to your app to see the result:
Response: Knative Node App running on IBM Cloud
Cleanup
-
Run the below command to remove the sample app from your cluster:
-
To delete the cluster (removes everything), enter the following command:
Questions or concerns? Please don’t hesitate to reach out to me on Twitter: VidyasagarMSC