Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update runo to 0.2.2 and support requeue duration as parameter #19

Merged
merged 3 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | `[]` |
Expand All @@ -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` |


---
Expand Down
4 changes: 2 additions & 2 deletions runo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
1 change: 1 addition & 0 deletions runo/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ spec:
{{- with .Values.args }}
args:
- --http-port={{ .httpPort }}
- --requeue-duration={{ .requeueDuration }}
{{- if .dryRun }}
- --dry-run
{{- end }}
Expand Down
3 changes: 2 additions & 1 deletion runo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
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)
Loading