From 5d2d9b5e1f233341154876f9bbec35f556129f65 Mon Sep 17 00:00:00 2001 From: Aljoscha Poertner Date: Mon, 16 Oct 2023 14:14:20 +0200 Subject: [PATCH 1/3] feat: bump runo to 0.2.2 Signed-off-by: Aljoscha Poertner --- runo/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runo/Chart.yaml b/runo/Chart.yaml index 3634657..2fe5cd4 100644 --- a/runo/Chart.yaml +++ b/runo/Chart.yaml @@ -3,4 +3,4 @@ name: runo description: A Helm Chart for the Kubernetes Secrets Generator called rūnō type: application version: 0.1.7 -appVersion: "0.2.1" +appVersion: "0.2.2" From 536fa5d48e1182f7bcc465329f7b47a6d4684626 Mon Sep 17 00:00:00 2001 From: Aljoscha Poertner Date: Mon, 16 Oct 2023 14:17:25 +0200 Subject: [PATCH 2/3] feat: add support for setting the requeue duration of runo Signed-off-by: Aljoscha Poertner --- README.md | 3 ++- runo/templates/deployment.yaml | 1 + runo/values.yaml | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b3d2ce2..87baa49 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ __IMPORTANT:__ Because this project follows the [conventional commit specificati | Parameter | Description | Default | | ------------------------ | ----------------------- | -------------- | | `replicaCount` | Set the number of replicas | `1` | -| `image.repository` | Set the image repositorsy | `"ghcr.io/aljoshare/runo"` | +| `image.repository` | Set the image repository | `"ghcr.io/aljoshare/runo"` | | `image.pullPolicy` | Set the pull policy | `"IfNotPresent"` | | `image.tag` | Set the image tag | `""` | | `imagePullSecrets` | Set a image pull secret | `[]` | @@ -48,6 +48,7 @@ __IMPORTANT:__ Because this project follows the [conventional commit specificati | `affinity` | Set pod (anti-)affinities | `{}` | | `args.dryRun` | Specify whether runo should run in dry-run mode | `false` | | `args.httpPort` | Set the port for the http endpoint (e.g. health, metrics, etc.) | `8080` | +| `args.requeueDuration` | Set the requeue duration of runo (How long it should wait between reconciliation loops) | `300` | --- diff --git a/runo/templates/deployment.yaml b/runo/templates/deployment.yaml index cb59775..2e92808 100644 --- a/runo/templates/deployment.yaml +++ b/runo/templates/deployment.yaml @@ -36,6 +36,7 @@ spec: {{- with .Values.args }} args: - --http-port={{ .httpPort }} + - --requeue-duration={{ .requeueDuration }} {{- if .dryRun }} - --dry-run {{- end }} diff --git a/runo/values.yaml b/runo/values.yaml index 8b50109..d30b83f 100644 --- a/runo/values.yaml +++ b/runo/values.yaml @@ -53,4 +53,5 @@ affinity: {} # Set pod (anti-)affinities # Args for runo args: dryRun: false # Specify whether runo should run in dry-run mode - httpPort: 8080 # Set the port for the http endpoint (e.g. health, metrics, etc.) \ No newline at end of file + httpPort: 8080 # Set the port for the http endpoint (e.g. health, metrics, etc.) + requeueDuration: 300 # Set the requeue duration of runo (How long it should wait between reconciliation loops) \ No newline at end of file From ea004c73b2ca076b4ff9238271e620a77e0db440 Mon Sep 17 00:00:00 2001 From: Aljoscha Poertner Date: Mon, 16 Oct 2023 14:18:11 +0200 Subject: [PATCH 3/3] chore: bump chart to 0.1.8 Signed-off-by: Aljoscha Poertner --- runo/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runo/Chart.yaml b/runo/Chart.yaml index 2fe5cd4..9abd374 100644 --- a/runo/Chart.yaml +++ b/runo/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: runo description: A Helm Chart for the Kubernetes Secrets Generator called rūnō type: application -version: 0.1.7 +version: 0.1.8 appVersion: "0.2.2"