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/Chart.yaml b/runo/Chart.yaml index 3634657..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 -appVersion: "0.2.1" +version: 0.1.8 +appVersion: "0.2.2" 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