From e1b785bc7384a91b3c6285efda459663854f57e7 Mon Sep 17 00:00:00 2001 From: Sarah Funkhouser <147884153+golanglemonade@users.noreply.github.com> Date: Fri, 4 Oct 2024 21:27:52 -0600 Subject: [PATCH] deps: bump riverboat + config:Generate (#108) Signed-off-by: Sarah Funkhouser <147884153+golanglemonade@users.noreply.github.com> --- config/.env.example | 2 +- config/config.example.yaml | 2 +- config/configmap.yaml | 2 +- go.mod | 2 +- go.sum | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/.env.example b/config/.env.example index 4c13354d..102ae138 100644 --- a/config/.env.example +++ b/config/.env.example @@ -93,7 +93,7 @@ CORE_DB_CACHETTL="1s" CORE_DB_RUNMIGRATIONS="true" CORE_DB_MIGRATIONPROVIDER="atlas" CORE_DB_ENABLEHISTORY="false" -CORE_JOBQUEUE_CONNECTIONURI="" +CORE_JOBQUEUE_CONNECTIONURI="postgres://postgres:password@0.0.0.0:5432/jobs?sslmode=disable" CORE_JOBQUEUE_RUNMIGRATIONS="false" CORE_REDIS_ENABLED="true" CORE_REDIS_ADDRESS="localhost:6379" diff --git a/config/config.example.yaml b/config/config.example.yaml index 90e936f0..a6a48ff1 100644 --- a/config/config.example.yaml +++ b/config/config.example.yaml @@ -83,7 +83,7 @@ entConfig: useListObjectServices: false useListUserService: true jobQueue: - connectionURI: "" + connectionURI: postgres://postgres:password@0.0.0.0:5432/jobs?sslmode=disable riverConf: AdvisoryLockPrefix: 0 CancelledJobRetentionPeriod: 0 diff --git a/config/configmap.yaml b/config/configmap.yaml index 16f51141..21602b15 100644 --- a/config/configmap.yaml +++ b/config/configmap.yaml @@ -105,7 +105,7 @@ data: CORE_DB_RUNMIGRATIONS: {{ .Values.core.db.runMigrations | default true }} CORE_DB_MIGRATIONPROVIDER: {{ .Values.core.db.migrationProvider | default "atlas" }} CORE_DB_ENABLEHISTORY: {{ .Values.core.db.enableHistory | default false }} - CORE_JOBQUEUE_CONNECTIONURI: {{ .Values.core.jobQueue.connectionURI }} + CORE_JOBQUEUE_CONNECTIONURI: {{ .Values.core.jobQueue.connectionURI | default "postgres://postgres:password@0.0.0.0:5432/jobs?sslmode=disable" }} CORE_JOBQUEUE_RUNMIGRATIONS: {{ .Values.core.jobQueue.runMigrations | default false }} CORE_REDIS_ENABLED: {{ .Values.core.redis.enabled | default true }} CORE_REDIS_ADDRESS: {{ .Values.core.redis.address | default "localhost:6379" }} diff --git a/go.mod b/go.mod index 3a150f2d..f6e12637 100644 --- a/go.mod +++ b/go.mod @@ -59,7 +59,7 @@ require ( github.com/theopenlane/httpsling v0.2.1 github.com/theopenlane/iam v0.2.1 github.com/theopenlane/newman v0.1.1 - github.com/theopenlane/riverboat v0.0.6 + github.com/theopenlane/riverboat v0.0.7 github.com/theopenlane/utils v0.3.0 github.com/vektah/gqlparser/v2 v2.5.17 github.com/wundergraph/graphql-go-tools v1.67.4 diff --git a/go.sum b/go.sum index 1b854ecb..3ae140a1 100644 --- a/go.sum +++ b/go.sum @@ -524,8 +524,8 @@ github.com/theopenlane/iam v0.2.1 h1:rUUnrEIgr1up6DnF52Ayk6TVaGhBtSNiEw5rGSQPR/w github.com/theopenlane/iam v0.2.1/go.mod h1:65VB58GMFay80qRTP+4USlSkTiZcisxvt7ohMHmuHnc= github.com/theopenlane/newman v0.1.1 h1:pxGPRcy8kXQplfv4Sp1N3XUkWmx/scZvp7oj+y2l8wI= github.com/theopenlane/newman v0.1.1/go.mod h1:A37pInKEYsdvUmjQzTDv7x5T4KhMxoFW105DA3XvH4Y= -github.com/theopenlane/riverboat v0.0.6 h1:7N4AetqHkbKw1l/zYtRJnUi/XpsYNHBHWLf2PJgnhN0= -github.com/theopenlane/riverboat v0.0.6/go.mod h1:yvXaeXRnPGe8xHj08K6SlUHGQAnR72mDxK5VFFpu6sY= +github.com/theopenlane/riverboat v0.0.7 h1:zT/H6ipMRLVYQEGLGgwUI6B1wXEBS0ARhkfzv+Pekwg= +github.com/theopenlane/riverboat v0.0.7/go.mod h1:ke4bnkUNiqsQs7arZlIynAbDsy8uqY6yUSRUD1bmrBg= github.com/theopenlane/utils v0.3.0 h1:wLduNgi065CeRu4RvRG5p1Sz8H5S+KDiwSdSQ/Jc9Kg= github.com/theopenlane/utils v0.3.0/go.mod h1:ydEtwhmEvkVt3KKmNqiQiSY5b3rKH7U4umZ3QbFDsxU= github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=