{"id":19053986,"url":"https://github.com/openfunction/charts","last_synced_at":"2025-06-21T22:34:44.138Z","repository":{"id":37723009,"uuid":"497479298","full_name":"OpenFunction/charts","owner":"OpenFunction","description":"The Helm charts for OpenFunction on Kubernetes","archived":false,"fork":false,"pushed_at":"2024-03-28T09:05:50.000Z","size":13695,"stargazers_count":6,"open_issues_count":10,"forks_count":15,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-01-02T11:09:17.774Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Mustache","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OpenFunction.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-29T03:21:28.000Z","updated_at":"2024-09-12T17:07:32.000Z","dependencies_parsed_at":"2024-11-08T23:36:15.193Z","dependency_job_id":null,"html_url":"https://github.com/OpenFunction/charts","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenFunction%2Fcharts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenFunction%2Fcharts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenFunction%2Fcharts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenFunction%2Fcharts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenFunction","download_url":"https://codeload.github.com/OpenFunction/charts/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240109714,"owners_count":19749182,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T23:36:10.970Z","updated_at":"2025-02-22T01:17:51.028Z","avatar_url":"https://github.com/OpenFunction.png","language":"Mustache","funding_links":[],"categories":[],"sub_categories":[],"readme":"# openfunction\n\n![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.0](https://img.shields.io/badge/AppVersion-1.2.0-informational?style=flat-square)\n\nA Helm chart for OpenFunction on Kubernetes\n\n## Maintainers\n\n| Name      | Email                     | Url |\n|-----------|---------------------------|-----|\n| wangyifei | \u003cwangyifei@kubesphere.io\u003e |     |\n\n## Source Code\n\n* \u003chttps://github.com/OpenFunction/OpenFunction\u003e\n\n## Requirements\n\nKubernetes: `\u003e=v1.23.0-0`\n\n| Repository                          | Name             | Version | AppVersion |\n|-------------------------------------|------------------|---------|------------|\n| file://charts/knative-serving       | knative-serving  | 1.3.2   | 1.3.2      |\n| file://charts/shipwright-build      | shipwright-build | 0.10.0  | 0.10.0     |\n| file://charts/tekton-pipelines      | tekton-pipelines | 0.37.2  | 0.37.2     |\n| https://charts.bitnami.com/bitnami  | contour          | 10.2.2  | 1.23.3     |\n| https://dapr.github.io/helm-charts/ | dapr             | 1.11.3  | 1.11.3     |\n| https://kedacore.github.io/charts   | keda             | 2.11.2  | 2.11.2     |\n\n## Install the Chart\n\nEnsure Helm is initialized in your Kubernetes cluster.\n\nFor more details on initializing Helm, [read the Helm docs](https://helm.sh/docs/)\n\n1. Run the following command to add the OpenFunction chart repository first:\n   ```shell\n   helm repo add openfunction https://openfunction.github.io/charts/\n   helm repo update\n   ```\n\n2. Then you have several options to setup OpenFunction, you can choose to:\n\n    - Install all components:\n       ```shell\n       kubectl create namespace openfunction\n       helm install openfunction openfunction/openfunction -n openfunction\n       ```\n\n    - Install Serving only (without build):\n       ```shell\n       kubectl create namespace openfunction\n       helm install openfunction --set global.ShipwrightBuild.enabled=false --set global.TektonPipelines.enabled=false openfunction/openfunction -n openfunction\n       ```\n\n    - Install Knative sync runtime only:\n       ```shell\n       kubectl create namespace openfunction\n       helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction\n       ```\n    - Install KedaHttp sync runtime only:\n       ```shell\n       kubectl create namespace openfunction\n       helm install openfunction --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction\n       ```\n\n       ```shell\n       helm repo add kedacore https://kedacore.github.io/charts\n       helm repo update\n       helm install http-add-on kedacore/keda-add-ons-http --create-namespace -n keda\n       ```\n\n    - Install OpenFunction async runtime only:\n       ```shell\n       kubectl create namespace openfunction\n       helm install openfunction --set global.Contour.enabled=false  --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction\n       ```\n\n## Verify installation\n\n```\nkubectl get po -n openfunction\n```\n\n## Uninstall the Chart\n\nTo uninstall/delete the `openfunction` release:\n\n```\nhelm uninstall openfunction -n openfunction\n```\n\n## Upgrading Chart\n\n```shell\nhelm upgrade [RELEASE_NAME] openfunction/openfunction -n openfunction --no-hooks\n```\n\nWith Helm v3, CRDs created by this chart are not updated by default and should be manually updated.\nConsult also the [Helm Documentation on CRDs](https://helm.sh/docs/chart_best_practices/custom_resource_definitions).\n\n_See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documentation._\n\n### Upgrading an existing Release to a new version\n\n### From OpenFunction v1.1.x to OpenFunction v1.2.x\n\n#### Uninstall the Chart\n\nFirst, you'll need to uninstall the old `openfunction` release:\n\n```shell\nhelm uninstall openfunction -n openfunction\n```\n\n#### Upgrade OpenFunction CRDs\n\nThen you'll need to upgrade the new OpenFunction CRDs\n\n```shell\nkubectl apply -f https://openfunction.sh1a.qingstor.com/crds/v1.2.0/openfunction.yaml\n```\n\n#### Install new chart\n\n```shell\nhelm repo update\nhelm install openfunction openfunction/openfunction -n openfunction\n```\n\n### From OpenFunction v1.0.x to OpenFunction v1.1.x\n\n#### Uninstall the Chart\n\nFirst, you'll need to uninstall the old `openfunction` release:\n\n```shell\nhelm uninstall openfunction -n openfunction\n```\n\n#### Upgrade OpenFunction CRDs\n\nThen you'll need to upgrade the new OpenFunction CRDs\n\n```shell\nkubectl apply -f https://openfunction.sh1a.qingstor.com/crds/v1.1.0/openfunction.yaml\n```\n\n#### Install new chart\n\n```shell\nhelm repo update\nhelm install openfunction openfunction/openfunction -n openfunction\n```\n\n### From OpenFunction v0.8.x to OpenFunction v1.0.x\n\n#### Uninstall the Chart\n\nFirst, you'll need to uninstall the old `openfunction` release:\n\n```shell\nhelm uninstall openfunction -n openfunction\n```\n\n#### Upgrade OpenFunction CRDs\n\nThen you'll need to upgrade the new OpenFunction CRDs\n\n```shell\nkubectl apply -f https://openfunction.sh1a.qingstor.com/crds/v1.0.0/openfunction.yaml\n```\n\n#### Install new chart\n\n```shell\nhelm repo update\nhelm install openfunction openfunction/openfunction -n openfunction\n```\n\n### From OpenFunction v0.7.x to OpenFunction v0.8.x\n\n```shell\nhelm upgrade openfunction openfunction/openfunction -n openfunction --no-hooks\n```\n\n### From OpenFunction v0.6.0 to OpenFunction v0.7.x\n\nThere is a breaking change when upgrading from v0.6.0 to 0.7.x which requires additional manual operations.\n\n#### Uninstall the Chart\n\nFirst, you'll need to uninstall the old `openfunction` release:\n\n```shell\nhelm uninstall openfunction -n openfunction\n```\n\nConfirm that the component namespaces have been deleted, it will take a while:\n\n```shell\nkubectl get ns -o=jsonpath='{range .items[?(@.metadata.annotations.meta\\.helm\\.sh/release-name==\"openfunction\")]}{.metadata.name}: {.status.phase}{\"\\n\"}{end}'\n```\n\n\u003e If the knative-serving namespace is in the terminating state for a long time, try running the following command and\n\u003e remove finalizers:\n\n```shell\nkubectl edit ingresses.networking.internal.knative.dev -n knative-serving\n```\n\n#### Upgrade OpenFunction CRDs\n\nThen you'll need to upgrade the new OpenFunction CRDs\n\n```shell\nkubectl apply -f https://openfunction.sh1a.qingstor.com/crds/v0.7.0/openfunction.yaml\n```\n\n#### Upgrade dependent components CRDs\n\nYou also need to upgrade the dependent components' CRDs\n\u003e You only need to deal with the components included in the existing Release.\n\n- knative-serving CRDs\n    ```shell\n    kubectl apply -f https://openfunction.sh1a.qingstor.com/crds/v0.7.0/knative-serving.yaml\n    ```\n- shipwright-build CRDs\n    ```shell\n    kubectl apply -f https://openfunction.sh1a.qingstor.com/crds/v0.7.0/shipwright-build.yaml\n    ```\n- tekton-pipelines CRDs\n    ```shell\n    kubectl apply -f https://openfunction.sh1a.qingstor.com/crds/v0.7.0/tekton-pipelines.yaml\n    ```\n\n#### Install new chart\n\n```shell\nhelm repo update\nhelm install openfunction openfunction/openfunction -n openfunction\n```\n\n## Values\n\n| Key                                                                                                | Type   | Default                                                                                                                                                                                                                                                                                                        | Description                                                       |\n|----------------------------------------------------------------------------------------------------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|\n| config.daprProxyImage                                                                              | string | `\"openfunction/dapr-proxy:v0.1.1\"`                                                                                                                                                                                                                                                                             |                                                                   |\n| config.eventsourceHandlerImage                                                                     | string | `\"openfunction/eventsource-handler:v4\"`                                                                                                                                                                                                                                                                        |                                                                   |\n| config.knativeServingConfigFeaturesName                                                            | string | `\"config-features\"`                                                                                                                                                                                                                                                                                            |                                                                   |\n| config.knativeServingNamespace                                                                     | string | `\"knative-serving\"`                                                                                                                                                                                                                                                                                            |                                                                   |\n| config.tracing                                                                                     | string | `\"enabled: false\\nprovider:\\n  name: \\\"skywalking\\\"\\n  oapServer: \\\"localhost:xxx\\\"\\ntags:\\n  func: function-with-tracing\\n  layer: faas\\n  tag1: value1\\n  tag2: value2\\nbaggage:\\n  key: sw8-correlation\\n  value: \\\"base64(string key):base64(string value),base64(string key2):base64(string value2)\\\"\\n\"` |                                                                   |\n| config.triggerHandlerImage                                                                         | string | `\"openfunction/trigger-handler:v4\"`                                                                                                                                                                                                                                                                            |                                                                   |\n| contour.configInline.gateway.controllerName                                                        | string | `\"projectcontour.io/projectcontour/contour\"`                                                                                                                                                                                                                                                                   |                                                                   |\n| contour.contour.ingressClass.name                                                                  | string | `\"contour\"`                                                                                                                                                                                                                                                                                                    |                                                                   |\n| contour.fullnameOverride                                                                           | string | `\"contour\"`                                                                                                                                                                                                                                                                                                    |                                                                   |\n| contour.namespaceOverride                                                                          | string | `\"projectcontour\"`                                                                                                                                                                                                                                                                                             |                                                                   |\n| controllerManager.kubeRbacProxy.image.repository                                                   | string | `\"openfunction/kube-rbac-proxy\"`                                                                                                                                                                                                                                                                               |                                                                   |\n| controllerManager.kubeRbacProxy.image.tag                                                          | string | `\"v0.8.0\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| controllerManager.openfunction.image.repository                                                    | string | `\"openfunction/openfunction\"`                                                                                                                                                                                                                                                                                  |                                                                   |\n| controllerManager.openfunction.image.tag                                                           | string | `\"v1.2.0\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| controllerManager.openfunction.resources.limits.cpu                                                | string | `\"500m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| controllerManager.openfunction.resources.limits.memory                                             | string | `\"500Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| controllerManager.openfunction.resources.requests.cpu                                              | string | `\"100m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| controllerManager.openfunction.resources.requests.memory                                           | string | `\"20Mi\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| controllerManager.replicas                                                                         | int    | `1`                                                                                                                                                                                                                                                                                                            |                                                                   |\n| global.Contour.enabled                                                                             | bool   | `true`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| global.Dapr.enabled                                                                                | bool   | `true`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| global.Keda.enabled                                                                                | bool   | `true`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| global.KnativeServing.enabled                                                                      | bool   | `true`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| global.ShipwrightBuild.enabled                                                                     | bool   | `true`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| global.TektonPipelines.enabled                                                                     | bool   | `true`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| keda.image.keda.repository                                                                         | string | `\"openfunction/keda\"`                                                                                                                                                                                                                                                                                          |                                                                   |\n| keda.image.keda.tag                                                                                | string | `\"2.11.2\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| keda.image.metricsApiServer.repository                                                             | string | `\"openfunction/keda-metrics-apiserver\"`                                                                                                                                                                                                                                                                        |                                                                   |\n| keda.image.metricsApiServer.tag                                                                    | string | `\"2.11.2\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| keda.image.webhooks.repository                                                                     | string | `\"openfunction/keda-admission-webhooks\"`                                                                                                                                                                                                                                                                       |                                                                   |\n| keda.image.webhooks.tag                                                                            | string | `\"2.11.2\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| keda.resources.metricServer                                                                        | object | `{\"limits\":{\"cpu\":1,\"memory\":\"1000Mi\"},\"requests\":{\"cpu\":\"100m\",\"memory\":\"100Mi\"}}`                                                                                                                                                                                                                            | Manage [resource request \u0026 limits] of KEDA metrics apiserver pod  |\n| keda.resources.operator                                                                            | object | `{\"limits\":{\"cpu\":1,\"memory\":\"1000Mi\"},\"requests\":{\"cpu\":\"100m\",\"memory\":\"100Mi\"}}`                                                                                                                                                                                                                            | Manage [resource request \u0026 limits] of KEDA operator pod           |\n| keda.resources.webhooks                                                                            | object | `{\"limits\":{\"cpu\":\"50m\",\"memory\":\"100Mi\"},\"requests\":{\"cpu\":\"10m\",\"memory\":\"10Mi\"}}`                                                                                                                                                                                                                           | Manage [resource request \u0026 limits] of KEDA admission webhooks pod |\n| knative-serving.activator.activator.image.repository                                               | string | `\"openfunction/knative.dev-serving-cmd-activator\"`                                                                                                                                                                                                                                                             |                                                                   |\n| knative-serving.activator.activator.resources.limits.cpu                                           | string | `\"1\"`                                                                                                                                                                                                                                                                                                          |                                                                   |\n| knative-serving.activator.activator.resources.limits.memory                                        | string | `\"600Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.activator.activator.resources.requests.cpu                                         | string | `\"300m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.activator.activator.resources.requests.memory                                      | string | `\"60Mi\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.autoscaler.autoscaler.image.repository                                             | string | `\"openfunction/knative.dev-serving-cmd-autoscaler\"`                                                                                                                                                                                                                                                            |                                                                   |\n| knative-serving.autoscaler.autoscaler.resources.limits.cpu                                         | string | `\"1\"`                                                                                                                                                                                                                                                                                                          |                                                                   |\n| knative-serving.autoscaler.autoscaler.resources.limits.memory                                      | string | `\"1000Mi\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| knative-serving.autoscaler.autoscaler.resources.requests.cpu                                       | string | `\"100m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.autoscaler.autoscaler.resources.requests.memory                                    | string | `\"100Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.configDeployment.queueSidecarImage.repository                                      | string | `\"openfunction/knative.dev-serving-cmd-queue\"`                                                                                                                                                                                                                                                                 |                                                                   |\n| knative-serving.controller.controller.image.repository                                             | string | `\"openfunction/knative.dev-serving-cmd-controller\"`                                                                                                                                                                                                                                                            |                                                                   |\n| knative-serving.controller.controller.resources.limits.cpu                                         | string | `\"1\"`                                                                                                                                                                                                                                                                                                          |                                                                   |\n| knative-serving.controller.controller.resources.limits.memory                                      | string | `\"1000Mi\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| knative-serving.controller.controller.resources.requests.cpu                                       | string | `\"100m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.controller.controller.resources.requests.memory                                    | string | `\"100Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.defaultDomain.job.image.repository                                                 | string | `\"openfunction/knative.dev-serving-cmd-default-domain\"`                                                                                                                                                                                                                                                        |                                                                   |\n| knative-serving.domainMapping.domainMapping.image.repository                                       | string | `\"openfunction/knative.dev-serving-cmd-domain-mapping\"`                                                                                                                                                                                                                                                        |                                                                   |\n| knative-serving.domainMapping.domainMapping.resources.limits.cpu                                   | string | `\"300m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.domainMapping.domainMapping.resources.limits.memory                                | string | `\"400Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.domainMapping.domainMapping.resources.requests.cpu                                 | string | `\"30m\"`                                                                                                                                                                                                                                                                                                        |                                                                   |\n| knative-serving.domainMapping.domainMapping.resources.requests.memory                              | string | `\"40Mi\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.domainmappingWebhook.domainmappingWebhook.image.repository                         | string | `\"openfunction/knative.dev-serving-cmd-domain-mapping-webhook\"`                                                                                                                                                                                                                                                |                                                                   |\n| knative-serving.domainmappingWebhook.domainmappingWebhook.resources.limits.cpu                     | string | `\"500m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.domainmappingWebhook.domainmappingWebhook.resources.limits.memory                  | string | `\"500Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.domainmappingWebhook.domainmappingWebhook.resources.requests.cpu                   | string | `\"100m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.domainmappingWebhook.domainmappingWebhook.resources.requests.memory                | string | `\"100Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.netContourController.controller.image.repository                                   | string | `\"openfunction/knative.dev-net-contour-cmd-controller\"`                                                                                                                                                                                                                                                        |                                                                   |\n| knative-serving.netContourController.controller.resources.limits.cpu                               | string | `\"400m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.netContourController.controller.resources.limits.memory                            | string | `\"400Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.netContourController.controller.resources.requests.cpu                             | string | `\"40m\"`                                                                                                                                                                                                                                                                                                        |                                                                   |\n| knative-serving.netContourController.controller.resources.requests.memory                          | string | `\"40Mi\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.webhook.webhook.image.repository                                                   | string | `\"openfunction/knative.dev-serving-cmd-webhook\"`                                                                                                                                                                                                                                                               |                                                                   |\n| knative-serving.webhook.webhook.resources.limits.cpu                                               | string | `\"500m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.webhook.webhook.resources.limits.memory                                            | string | `\"500Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| knative-serving.webhook.webhook.resources.requests.cpu                                             | string | `\"100m\"`                                                                                                                                                                                                                                                                                                       |                                                                   |\n| knative-serving.webhook.webhook.resources.requests.memory                                          | string | `\"100Mi\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| kubernetesClusterDomain                                                                            | string | `\"cluster.local\"`                                                                                                                                                                                                                                                                                              |                                                                   |\n| managerConfig.controllerManagerConfigYaml.health.healthProbeBindAddress                            | string | `\":8081\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| managerConfig.controllerManagerConfigYaml.leaderElection.leaderElect                               | bool   | `true`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| managerConfig.controllerManagerConfigYaml.leaderElection.resourceName                              | string | `\"79f0111e.openfunction.io\"`                                                                                                                                                                                                                                                                                   |                                                                   |\n| managerConfig.controllerManagerConfigYaml.metrics.bindAddress                                      | string | `\"127.0.0.1:8080\"`                                                                                                                                                                                                                                                                                             |                                                                   |\n| managerConfig.controllerManagerConfigYaml.webhook.port                                             | int    | `9443`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| metricsService.ports[0].name                                                                       | string | `\"https\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| metricsService.ports[0].port                                                                       | int    | `8443`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| metricsService.ports[0].targetPort                                                                 | string | `\"https\"`                                                                                                                                                                                                                                                                                                      |                                                                   |\n| metricsService.type                                                                                | string | `\"ClusterIP\"`                                                                                                                                                                                                                                                                                                  |                                                                   |\n| revisionController.enable                                                                          | bool   | `false`                                                                                                                                                                                                                                                                                                        |                                                                   |\n| revisionController.image.pullPolicy                                                                | string | `\"IfNotPresent\"`                                                                                                                                                                                                                                                                                               |                                                                   |\n| revisionController.image.repository                                                                | string | `\"openfunction/revision-controller\"`                                                                                                                                                                                                                                                                           |                                                                   |\n| revisionController.image.tag                                                                       | string | `\"v1.0.0\"`                                                                                                                                                                                                                                                                                                     |                                                                   |\n| shipwright-build.shipwrightBuildController.shipwrightBuild.BUNDLE_CONTAINER_IMAGE.repository       | string | `\"openfunction/shipwright-bundle\"`                                                                                                                                                                                                                                                                             |                                                                   |\n| shipwright-build.shipwrightBuildController.shipwrightBuild.GIT_CONTAINER_IMAGE.repository          | string | `\"openfunction/shipwright-io-build-git\"`                                                                                                                                                                                                                                                                       |                                                                   |\n| shipwright-build.shipwrightBuildController.shipwrightBuild.MUTATE_IMAGE_CONTAINER_IMAGE.repository | string | `\"openfunction/shipwright-mutate-image\"`                                                                                                                                                                                                                                                                       |                                                                   |\n| shipwright-build.shipwrightBuildController.shipwrightBuild.WAITER_CONTAINER_IMAGE.repository       | string | `\"openfunction/shipwright-waiter\"`                                                                                                                                                                                                                                                                             |                                                                   |\n| shipwright-build.shipwrightBuildController.shipwrightBuild.image.repository                        | string | `\"openfunction/shipwright-shipwright-build-controller\"`                                                                                                                                                                                                                                                        |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.entrypointImage.repository                   | string | `\"openfunction/tektoncd-pipeline-cmd-entrypoint\"`                                                                                                                                                                                                                                                              |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.gitImage.repository                          | string | `\"openfunction/tektoncd-pipeline-cmd-git-init\"`                                                                                                                                                                                                                                                                |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.gsutilImage.digest                           | string | `\"sha256:27b2c22bf259d9bc1a291e99c63791ba0c27a04d2db0a43241ba0f1f20f4067f\"`                                                                                                                                                                                                                                    |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.gsutilImage.repository                       | string | `\"openfunction/cloudsdktool-cloud-sdk\"`                                                                                                                                                                                                                                                                        |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.image.repository                             | string | `\"openfunction/tektoncd-pipeline-cmd-controller\"`                                                                                                                                                                                                                                                              |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.imagedigestExporterImage.repository          | string | `\"openfunction/tektoncd-pipeline-cmd-imagedigestexporter\"`                                                                                                                                                                                                                                                     |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.kubeconfigWriterImage.repository             | string | `\"openfunction/tektoncd-pipeline-cmd-kubeconfigwriter\"`                                                                                                                                                                                                                                                        |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.nopImage.repository                          | string | `\"openfunction/tektoncd-pipeline-cmd-nop\"`                                                                                                                                                                                                                                                                     |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.prImage.repository                           | string | `\"openfunction/tektoncd-pipeline-cmd-pullrequest-init\"`                                                                                                                                                                                                                                                        |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.shellImage.digest                            | string | `\"sha256:b16b57be9160a122ef048333c68ba205ae4fe1a7b7cc6a5b289956292ebf45cc\"`                                                                                                                                                                                                                                    |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.shellImage.repository                        | string | `\"openfunction/distroless-base\"`                                                                                                                                                                                                                                                                               |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.shellImageWin.digest                         | string | `\"sha256:b6d5ff841b78bdf2dfed7550000fd4f3437385b8fa686ec0f010be24777654d6\"`                                                                                                                                                                                                                                    |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.shellImageWin.repository                     | string | `\"mcr.microsoft.com/powershell:nanoserver\"`                                                                                                                                                                                                                                                                    |                                                                   |\n| tekton-pipelines.controller.tektonPipelinesController.workingdirinitImage.repository               | string | `\"openfunction/tektoncd-pipeline-cmd-workingdirinit\"`                                                                                                                                                                                                                                                          |                                                                   |\n| tekton-pipelines.controller.type                                                                   | string | `\"ClusterIP\"`                                                                                                                                                                                                                                                                                                  |                                                                   |\n| tekton-pipelines.webhook.webhook.image.repository                                                  | string | `\"openfunction/tektoncd-pipeline-cmd-webhook\"`                                                                                                                                                                                                                                                                 |                                                                   |\n| webhookService.ports[0].port                                                                       | int    | `443`                                                                                                                                                                                                                                                                                                          |                                                                   |\n| webhookService.ports[0].targetPort                                                                 | int    | `9443`                                                                                                                                                                                                                                                                                                         |                                                                   |\n| webhookService.type                                                                                | string | `\"ClusterIP\"`                                                                                                                                                                                                                                                                                                  |                                                                   |\n\n----------------------------------------------\nAutogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenfunction%2Fcharts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenfunction%2Fcharts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenfunction%2Fcharts/lists"}