Skip to content

Commit 850810e

Browse files
authored
Merge pull request #12 from cloudsecurelab/main
Switch default ocpu from 1 to 4
2 parents 368962c + 9b9a2c9 commit 850810e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

terraform/oke-variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ variable "node_pool_shape" {
111111
description = "A shape is a template that determines the number of OCPUs, amount of memory, and other resources allocated to a newly created instance for the Worker Node"
112112
}
113113
variable "node_pool_node_shape_config_ocpus" {
114-
default = "1" # Only used if flex shape is selected
114+
default = "4" # Only used if flex shape is selected
115115
description = "You can customize the number of OCPUs to a flexible shape"
116116
}
117117
variable "node_pool_node_shape_config_memory_in_gbs" {

terraform/sysdig-agent.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ resource "helm_release" "sysdig_agent" {
2020
repository = local.sysdig_helm_repository.sysdig_charts
2121
chart = "sysdig"
2222
namespace = kubernetes_namespace.sysdig_agent_namespace.0.id
23+
version = "1.14.32" #TEMP until the quickstart is fully reviewed for the new helm charts
2324
wait = false
2425

2526
set {

0 commit comments

Comments
 (0)