Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix NodeConfig for Automation tests #13766

Merged
merged 2 commits into from
Jul 5, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ Password = '%s'`
"memory": "4Gi",
},
},
"stateful": true,
"capacity": "20Gi",
"stateful": true,
"capacity": "20Gi",
"enablePrometheusPostgresExporter": true,
}

recNodeSpec = map[string]interface{}{
Expand Down
7 changes: 0 additions & 7 deletions integration-tests/testconfig/automation/automation.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ Unauthenticated = 1000
[WebServer.TLS]
HTTPSPort = 0

[Database]
MaxIdleConns = 20
MaxOpenConns = 40
MigrateOnStartup = true

[OCR2]
Enabled = true

Expand All @@ -43,8 +38,6 @@ Enabled = true
Enabled = true
ListenAddresses = ['0.0.0.0:6690']
AnnounceAddresses = ['0.0.0.0:6690']
DeltaDial = '500ms'
DeltaReconcile = '5s'
"""

# smoke test specific overrodes
Expand Down
5 changes: 0 additions & 5 deletions integration-tests/testconfig/keeper/keeper.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ Unauthenticated = 1000
[WebServer.TLS]
HTTPSPort = 0

[Database]
MaxIdleConns = 20
MaxOpenConns = 40
MigrateOnStartup = true

[Keeper]
TurnLookBack = 0
"""
Expand Down
Loading