Skip to content

Commit d9aed72

Browse files
authored
Merge branch 'main' into missing-logic
2 parents 593d873 + 49bc39c commit d9aed72

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ No modules.
114114
| <a name="input_agent_tags"></a> [agent\_tags](#input\_agent\_tags) | List of tags to associate to all matrics that the agent collects. NOTE: Use the 'add\_cluster\_name' variable to add the cluster name as a tag. | `list(string)` | `[]` | no |
115115
| <a name="input_chart"></a> [chart](#input\_chart) | The name of the Helm chart to deploy. | `string` | `"sysdig-deploy"` | no |
116116
| <a name="input_chart_location"></a> [chart\_location](#input\_chart\_location) | The location of the Cloud Monitoring agent helm chart. | `string` | `"https://charts.sysdig.com"` | no |
117-
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | The version of the Cloud Monitoring agent helm chart to deploy. | `string` | `"1.83.1"` | no |
117+
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | The version of the Cloud Monitoring agent helm chart to deploy. | `string` | `"1.84.0"` | no |
118118
| <a name="input_cloud_monitoring_instance_endpoint_type"></a> [cloud\_monitoring\_instance\_endpoint\_type](#input\_cloud\_monitoring\_instance\_endpoint\_type) | Specify the IBM Cloud Monitoring instance endpoint type (public or private) to use. Used to construct the ingestion endpoint. | `string` | `"private"` | no |
119119
| <a name="input_cloud_monitoring_instance_region"></a> [cloud\_monitoring\_instance\_region](#input\_cloud\_monitoring\_instance\_region) | The IBM Cloud Monitoring instance region. Used to construct the ingestion endpoint. | `string` | n/a | yes |
120120
| <a name="input_cluster_config_endpoint_type"></a> [cluster\_config\_endpoint\_type](#input\_cluster\_config\_endpoint\_type) | Specify which type of endpoint to use for for cluster config access: 'default', 'private', 'vpe', 'link'. 'default' value will use the default endpoint of the cluster. | `string` | `"default"` | no |

examples/obs-agent-iks/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ locals {
6262

6363
module "ocp_base" {
6464
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
65-
version = "3.47.4"
65+
version = "3.48.0"
6666
resource_group_id = module.resource_group.resource_group_id
6767
region = var.region
6868
tags = var.resource_tags

examples/obs-agent-ocp/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ locals {
6262

6363
module "ocp_base" {
6464
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
65-
version = "3.47.4"
65+
version = "3.48.0"
6666
resource_group_id = module.resource_group.resource_group_id
6767
region = var.region
6868
tags = var.resource_tags

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ variable "chart_location" {
153153
variable "chart_version" {
154154
description = "The version of the Cloud Monitoring agent helm chart to deploy."
155155
type = string
156-
default = "1.83.1" # registryUrl: charts.sysdig.com
156+
default = "1.84.0" # registryUrl: charts.sysdig.com
157157
nullable = false
158158
}
159159

solutions/fully-configurable/version.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ terraform {
66
# Lock DA into an exact provider version - renovate automation will keep it updated
77
ibm = {
88
source = "ibm-cloud/ibm"
9-
version = "1.78.2"
9+
version = "1.78.3"
1010
}
1111
helm = {
1212
source = "hashicorp/helm"
1313
version = "2.17.0"
1414
}
1515
kubernetes = {
1616
source = "hashicorp/kubernetes"
17-
version = "2.36.0"
17+
version = "2.37.0"
1818
}
1919
}
2020
}

tests/resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ locals {
6262

6363
module "ocp_base" {
6464
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
65-
version = "3.47.4"
65+
version = "3.48.0"
6666
resource_group_id = module.resource_group.resource_group_id
6767
region = var.region
6868
tags = var.resource_tags

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ variable "chart_location" {
181181
variable "chart_version" {
182182
description = "The version of the Cloud Monitoring agent helm chart to deploy."
183183
type = string
184-
default = "1.83.1" # registryUrl: charts.sysdig.com
184+
default = "1.84.0" # registryUrl: charts.sysdig.com
185185
nullable = false
186186
}
187187

0 commit comments

Comments
 (0)