Skip to content

Commit

Permalink
ci: fix secret syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
krtk6160 committed Nov 7, 2023
1 parent 8858371 commit 8188774
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dev/monitoring/Tiltfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
load('ext://namespace', 'namespace_create')
load('ext://helm_resource', 'helm_resource')
load('ext://secret', 'secret_from_dict')

name_prefix = 'galoy-dev'
monitoring_namespace = '{}-monitoring'.format(name_prefix)
smoketest_namespace = '{}-smoketest'.format(name_prefix)

namespace_create(monitoring_namespace)

Expand All @@ -15,8 +17,8 @@ helm_resource(

k8s_yaml(secret_from_dict(
name = 'monitoring-smoketest',
namespace = local.smoketest_namespace,
namespace = smoketest_namespace,
inputs={
'grafana_host' = 'monitoring-grafana.{}.svc.cluster.local'.format(monitoring_namespace),
'grafana_host': 'monitoring-grafana.{}.svc.cluster.local'.format(monitoring_namespace),
}
))

0 comments on commit 8188774

Please sign in to comment.