Skip to content
Closed
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
1 change: 1 addition & 0 deletions http/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ azure {
wds-app-config {
environment = "dev"
environment-base = "live"
image: "us-central1-docker.pkg.dev/dsp-artifact-registry/mf-dataplane-metrics-wip/wds:insights2"
instrumentation-enabled = false
chart-name = "terra-helm/wds"
chart-version = "0.76.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class WdsAppInstall[F[_]](config: WdsAppConfig,
// pass enviiroment information to wds so it can properly pick its config
raw"wds.environment=${config.environment}",
raw"wds.environmentBase=${config.environmentBase}",
raw"wds.image=${config.image}",

// azure resources configs
raw"config.resourceGroup=${params.cloudContext.managedResourceGroupName.value}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ final case class WdsAppConfig(chartName: ChartName,
databaseEnabled: Boolean,
environment: String,
environmentBase: String,
image: String,
chartVersionsToExcludeFromUpdates: List[ChartVersion]
) extends KubernetesAppConfig {
override lazy val kubernetesServices: List[KubernetesService] = services.map(s => KubernetesService(ServiceId(-1), s))
Expand Down