# knative-serving **Repository Path**: mirrors_rhuss/knative-serving ## Basic Information - **Project Name**: knative-serving - **Description**: Instantly create and update Knative services on top of your Kubernetes cluster. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # knative-serving Instantly create and update Knative services on top of your Kubernetes cluster with [Serverless Components](https://github.com/serverless/components).   1. [Install](#1-install) 2. [Create](#2-create) 3. [Configure](#3-configure) 4. [Deploy](#4-deploy)   ### 1. Install ```console $ npm install -g serverless ``` ### 2. Create Just create a `serverless.yml` file ```console $ touch serverless.yml ``` Then create a `.env` file ```console $ touch .env ``` Update the `.env` file with information about your Kubernetes setup ``` # .env KUBERNETES_ENDPOINT=https://cluster.example.com KUBERNETES_PORT=6443 KUBERNETES_SERVICE_ACCOUNT_TOKEN=xxxx KUBERNETES_SKIP_TLS_VERIFY=false ``` ### 3. Configure ```yml # serverless.yml org: acme app: todo name: todo-knative-serving component: knative-serving@dev inputs: 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 ```console $ serverless ``` ### New to Components? Checkout the [Serverless Components](https://github.com/serverless/components) repo for more information.