Skip to content

Commit

Permalink
fixed interval
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienduhamel committed Jan 5, 2024
1 parent 0692dfb commit d96afea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/aws-secrets-synchronizer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: aws-secrets-synchronizer
version: 0.2.1-rc5
version: 0.2.1-rc6
description: K8S Operator that allows you to sync AWS SecretManager secrets with K8S secrets.
type: application
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-secrets-synchronizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The following table lists the configurable parameters of the aws-secrets-synchro
|------------------------------|-----------------------------|----------------------------|
| `image.repository` | Image repository | `ghcr.io/reezogit` |
| `image.name` | Image name | `aws-secrets-synchronizer` |
| `image.tag` | Image tag | `0.2.1-rc5` |
| `image.tag` | Image tag | `0.2.1-rc6` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `replicaCount` | Replica count | `1` |
| `env` | Environment variables | `{}` |
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-secrets-synchronizer/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
repository: "ghcr.io/reezogit"
name: "aws-secrets-synchronizer"
tag: "0.2.1-rc5"
tag: "0.2.1-rc6"
pullPolicy: IfNotPresent

replicaCount: 1
Expand Down
2 changes: 1 addition & 1 deletion script.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def run(self):
except Exception as e: # FIXME Really a bad practice
self.logger.error("Woops, something went wrong!", err=e)

time.sleep(self.params['sync_interval'])
time.sleep(int(self.params['sync_interval']))


SecretSyncer().run()

0 comments on commit d96afea

Please sign in to comment.