From 4e64997924b5ef04e989b903292ff794eaeb8eac Mon Sep 17 00:00:00 2001 From: Github Date: Wed, 25 Oct 2023 12:12:11 +0000 Subject: [PATCH] Update documentation for v0.2 Auto-generated from v0.2.0-22-gc1d93d0 by 'update-gh-pages.sh' --- v0.2/.buildinfo | 2 +- .../docs/resource-policy/installation.md.txt | 28 +++++++++-- v0.2/_static/documentation_options.js | 2 +- v0.2/docs/contributing.html | 2 +- v0.2/docs/index.html | 2 +- v0.2/docs/introduction.html | 2 +- v0.2/docs/memory/index.html | 2 +- v0.2/docs/memory/memory-qos.html | 2 +- v0.2/docs/memory/memtierd.html | 2 +- v0.2/docs/resource-policy/configuration.html | 2 +- .../developers-guide/architecture.html | 24 +++++----- .../developers-guide/cpu-allocator.html | 2 +- .../developers-guide/e2e-test.html | 2 +- .../developers-guide/index.html | 2 +- .../developers-guide/testing.html | 2 +- .../developers-guide/unit-test.html | 2 +- v0.2/docs/resource-policy/index.html | 2 +- v0.2/docs/resource-policy/installation.html | 48 +++++++++++++++++-- v0.2/docs/resource-policy/introduction.html | 2 +- .../docs/resource-policy/policy/balloons.html | 2 +- v0.2/docs/resource-policy/policy/index.html | 2 +- .../policy/topology-aware.html | 2 +- v0.2/docs/resource-policy/setup.html | 2 +- v0.2/genindex.html | 2 +- v0.2/search.html | 2 +- v0.2/searchindex.js | 2 +- 26 files changed, 103 insertions(+), 43 deletions(-) diff --git a/v0.2/.buildinfo b/v0.2/.buildinfo index fd70b9b5e..0a651337c 100644 --- a/v0.2/.buildinfo +++ b/v0.2/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: cde065d210acb0a96d8398e045c547ee +config: 59ed97a4654a6e329cb6f9fb77af58c7 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v0.2/_sources/docs/resource-policy/installation.md.txt b/v0.2/_sources/docs/resource-policy/installation.md.txt index fa2db3c17..b08da0738 100644 --- a/v0.2/_sources/docs/resource-policy/installation.md.txt +++ b/v0.2/_sources/docs/resource-policy/installation.md.txt @@ -64,12 +64,30 @@ following components: DaemonSet, ConfigMap, CustomResourceDefinition, and RBAC-r 1. Install the plugin. Replace release version with the desired version. If you wish to provide custom values to the Helm chart, refer to the [table](#helm-parameters) below, which describes the available parameters that can be modified before installation. - It's important to note that specifying the namespace (using `--namespace` or `-n`) is - crucial when installing the Helm chart. If no namespace is specified, the manifests - will be installed in the default namespace. + Parameters can be specified either using the --set option or through the -f flag along + with the custom values.yaml file. It's important to note that specifying the namespace + (using `--namespace` or `-n`) is crucial when installing the Helm chart. If no namespace + is specified, the manifests will be installed in the default namespace. ```sh + # Install the topology-aware plugin with default values helm install topology-aware nri-plugins/nri-resource-policy-topology-aware --namespace kube-system + + # Install the topology-aware plugin with custom values provided using the --set option + helm install topology-aware nri-plugins/nri-resource-policy-topology-aware --namespace kube-system --set nri.patchRuntimeConfig=true + + # Install the topology-aware plugin with custom values specified in a custom values.yaml file + cat < myPath/values.yaml + nri: + patchRuntimeConfig: true + + tolerations: + - key: "node-role.kubernetes.io/control-plane" + operator: "Exists" + effect: "NoSchedule" + EOF + + helm install topology-aware nri-plugins/nri-resource-policy-topology-aware --namespace kube-system -f myPath/values.yaml ``` The helm repository is named `nri-plugins`, and in step 1, you have the @@ -122,6 +140,7 @@ Path to the chart: `nri-resource-policy-topology-aware` | `initImage.name` | [ghcr.io/containers/nri-plugins/config-manager](ghcr.io/containers/nri-plugins/config-manager) | init container image name | | `initImage.tag` | unstable | init container image tag | | `initImage.pullPolicy` | Always | init container image pull policy | +| `tolerations` | [] | specify taint toleration key, operator and effect | #### Balloons @@ -140,6 +159,7 @@ Path to the chart: `nri-resource-policy-balloons` | `initImage.name` | [ghcr.io/containers/nri-plugins/config-manager](ghcr.io/containers/nri-plugins/config-manager) | init container image name | | `initImage.tag` | unstable | init container image tag | | `initImage.pullPolicy` | Always | init container image pull policy | +| `tolerations` | [] | specify taint toleration key, operator and effect | #### Memtierd @@ -157,6 +177,7 @@ Path to the chart: `nri-memtierd` | `initImage.name` | [ghcr.io/containers/nri-plugins/config-manager](ghcr.io/containers/nri-plugins/config-manager) | init container image name | | `initImage.tag` | unstable | init container image tag | | `initImage.pullPolicy` | Always | init container image pull policy | +| `tolerations` | [] | specify taint toleration key, operator and effect | #### Memory-qos @@ -174,6 +195,7 @@ Path to the chart: `nri-memory-qos` | `initImage.name` | [ghcr.io/containers/nri-plugins/config-manager](ghcr.io/containers/nri-plugins/config-manager) | init container image name | | `initImage.tag` | unstable | init container image tag | | `initImage.pullPolicy` | Always | init container image pull policy | +| `tolerations` | [] | specify taint toleration key, operator and effect | ## Manual installation diff --git a/v0.2/_static/documentation_options.js b/v0.2/_static/documentation_options.js index 4f40322d0..0ce4b53de 100644 --- a/v0.2/_static/documentation_options.js +++ b/v0.2/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: 'v0.2.0-16-gfd5c13d', + VERSION: 'v0.2.0-22-gc1d93d0', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/v0.2/docs/contributing.html b/v0.2/docs/contributing.html index 046fbb676..5a4071eff 100644 --- a/v0.2/docs/contributing.html +++ b/v0.2/docs/contributing.html @@ -4,7 +4,7 @@ - Contributing — NRI Plugins v0.2.0-16-gfd5c13d documentation + Contributing — NRI Plugins v0.2.0-22-gc1d93d0 documentation