Skip to content

Commit

Permalink
Indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-vakil committed Sep 20, 2024
1 parent c4ed025 commit 4b04c04
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions cnab/app/generate-values.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,68 +8,68 @@ function Generate-Values() {
product = "pubplat"

images = @{
containerRegistry = "$containerRegistryUrl"
opserver = @{
tag = $releaseTag
}
containerRegistry = "$containerRegistryUrl"
opserver = @{
tag = $releaseTag
}
}

requests = @{
cpu = $vars.vars.requestsCPU
memory = $vars.vars.requestsMemory
cpu = $vars.vars.requestsCPU
memory = $vars.vars.requestsMemory
}

limits = @{
memory = $vars.vars.limitsMemory
memory = $vars.vars.limitsMemory
}

podDisruptionBudget = @{
minAvailable = $vars.vars.podDisruptionBudgetMinAvailable
minAvailable = $vars.vars.podDisruptionBudgetMinAvailable
}

exceptional = @{
store = @{
type = $vars.vars.exceptionalStoreType
}
store = @{
type = $vars.vars.exceptionalStoreType
}
}

datadog = @{
agentHost = $vars.vars.datadogAgentHost
agentPort = $vars.vars.datadogAgentPort
agentHost = $vars.vars.datadogAgentHost
agentPort = $vars.vars.datadogAgentPort
}

kestrel = @{
endPoints = @{
http = @{
url = "http://0.0.0.0:8080/"
containerPort = "8080"
endPoints = @{
http = @{
url = "http://0.0.0.0:8080/"
containerPort = "8080"
}
}
}
}

secretStore = @{
fake = $vars.runtime.local
fake = $vars.runtime.local
}

image = @{
pullSecretName = $pullSecretName
pullSecretName = $pullSecretName
}

ingress = @{
className = "nginx-internal"
certIssuer = "letsencrypt-dns-prod"
host = $vars.vars.opserverSettings.hostUrl
enabled = $vars.vars.includeIngress
secretName = "opserver-tls"
createTlsCert = $true
className = "nginx-internal"
certIssuer = "letsencrypt-dns-prod"
host = $vars.vars.opserverSettings.hostUrl
enabled = $vars.vars.includeIngress
secretName = "opserver-tls"
createTlsCert = $true
}

sqlExternalSecret = @{
storeRefName = $vars.vars.secretStore
storeRefName = $vars.vars.secretStore
}

opserverExternalSecret = @{
storeRefName = $vars.vars.secretStore
storeRefName = $vars.vars.secretStore
}

opserverSettings = $vars.vars.opserverSettings
Expand Down

0 comments on commit 4b04c04

Please sign in to comment.