From a1cfe3be36fd50f854d6c9fcea9d3bc2f8c728a3 Mon Sep 17 00:00:00 2001 From: Callum Tait <15716903+toast-gear@users.noreply.github.com> Date: Thu, 9 Dec 2021 10:20:51 +0000 Subject: [PATCH] docs: re-order helm param order (#996) * docs: re-order helm param order * docs: re-order params in values --- charts/actions-runner-controller/README.md | 12 ++++++------ charts/actions-runner-controller/values.yaml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/charts/actions-runner-controller/README.md b/charts/actions-runner-controller/README.md index 485d5b14..6bf5169c 100644 --- a/charts/actions-runner-controller/README.md +++ b/charts/actions-runner-controller/README.md @@ -56,15 +56,17 @@ All additional docs are kept in the `docs/` folder, this README is solely for do | `topologySpreadConstraints` | Set the controller pod topologySpreadConstraints | | | `nodeSelector` | Set the controller pod nodeSelector | | | `resources` | Set the controller pod resources | | -| `affinity` | Set the controller pod affinity rules | -| `podDisruptionBudget.enabled` | Enables a PDB to ensure HA of controller pods | false | -| `podDisruptionBudget.minAvailable` | Minimum number of pods that must be available after eviction | | -| `podDisruptionBudget.maxUnavailable` | Maximum number of pods that can be unavailable after eviction. Kubernetes 1.7+ required. | | +| `affinity` | Set the controller pod affinity rules | | +| `podDisruptionBudget.enabled` | Enables a PDB to ensure HA of controller pods | false | +| `podDisruptionBudget.minAvailable` | Minimum number of pods that must be available after eviction | | +| `podDisruptionBudget.maxUnavailable` | Maximum number of pods that can be unavailable after eviction. Kubernetes 1.7+ required. | | | `tolerations` | Set the controller pod tolerations | | | `env` | Set environment variables for the controller container | | | `priorityClassName` | Set the controller pod priorityClassName | | | `scope.watchNamespace` | Tells the controller and the github webhook server which namespace to watch if `scope.singleNamespace` is true | `Release.Namespace` (the default namespace of the helm chart). | | `scope.singleNamespace` | Limit the controller to watch a single namespace | false | +| `certManagerEnabled` | Enable cert-manager. If disabled you must set admissionWebHooks.caBundle and create TLS secrets manually | true | +| `admissionWebHooks.caBundle` | Base64-encoded PEM bundle containing the CA that signed the webhook's serving certificate | | | `githubWebhookServer.logLevel` | Set the log level of the githubWebhookServer container | | | `githubWebhookServer.replicaCount` | Set the number of webhook server pods | 1 | | `githubWebhookServer.syncPeriod` | Set the period in which the controller reconciles the resources | 10m | @@ -97,5 +99,3 @@ All additional docs are kept in the `docs/` folder, this README is solely for do | `githubWebhookServer.podDisruptionBudget.enabled` | Enables a PDB to ensure HA of githubwebhook pods | false | | `githubWebhookServer.podDisruptionBudget.minAvailable` | Minimum number of pods that must be available after eviction | | | `githubWebhookServer.podDisruptionBudget.maxUnavailable` | Maximum number of pods that can be unavailable after eviction. Kubernetes 1.7+ required. | | -| `certManagerEnabled` | Enable cert-manager. If disabled you must set admissionWebHooks.caBundle and create TLS secrets manually | true | -| `admissionWebHooks.caBundle` | Base64-encoded PEM bundle containing the CA that signed the webhook's serving certificate | | \ No newline at end of file diff --git a/charts/actions-runner-controller/values.yaml b/charts/actions-runner-controller/values.yaml index bb2fb4c4..1a09217a 100644 --- a/charts/actions-runner-controller/values.yaml +++ b/charts/actions-runner-controller/values.yaml @@ -141,6 +141,12 @@ scope: # The default value is "", which means the namespace of the controller watchNamespace: "" +certManagerEnabled: true + +admissionWebHooks: + {} + #caBundle: "Ci0tLS0tQk......tLS0K" + githubWebhookServer: enabled: false replicaCount: 1 @@ -199,9 +205,3 @@ githubWebhookServer: enabled: false # minAvailable: 1 # maxUnavailable: 3 - -certManagerEnabled: true - -admissionWebHooks: - {} - #caBundle: "Ci0tLS0tQk......tLS0K"