Skip to content

Commit

Permalink
Adding limits to db container
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Beenham <[email protected]>
  • Loading branch information
superbeeny committed Dec 2, 2024
1 parent 08b4387 commit 33a5958
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,21 @@ resource sqlContainer 'Applications.Core/containers@2023-10-01-preview' = {
}
}
}
runtimes: {
kubernetes: {
pod: {
resources: {
requests: {
cpu: '1200m'
memory: '2048Mi'
}
limits: {
cpu: '1500m'
memory: '4096Mi'
}
}
}
}
}
}
}

0 comments on commit 33a5958

Please sign in to comment.