Skip to content

Commit c1333d4

Browse files
fix(deps): update helm release sysdig-deploy to latest (#27)
* fix(deps): update helm release sysdig-deploy to latest * fix test --------- Co-authored-by: ocofaigh <[email protected]>
1 parent 1a4e7c5 commit c1333d4

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ No modules.
105105
| <a name="input_access_key"></a> [access\_key](#input\_access\_key) | Access key used by the IBM Cloud Monitoring agent to communicate with the instance | `string` | n/a | yes |
106106
| <a name="input_chart"></a> [chart](#input\_chart) | The name of the Helm chart to deploy. | `string` | `"sysdig-deploy"` | no |
107107
| <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 |
108-
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | The version of the Cloud Monitoring agent helm chart to deploy. | `string` | `"1.79.0"` | no |
108+
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | The version of the Cloud Monitoring agent helm chart to deploy. | `string` | `"1.80.3"` | no |
109109
| <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 |
110110
| <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 |
111111
| <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 |

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ variable "chart_location" {
128128
variable "chart_version" {
129129
description = "The version of the Cloud Monitoring agent helm chart to deploy."
130130
type = string
131-
default = "1.79.0" # registryUrl: charts.sysdig.com
131+
default = "1.80.3" # registryUrl: charts.sysdig.com
132132
nullable = false
133133
}
134134

tests/pr_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@ func TestFullyConfigurableUpgradeSolution(t *testing.T) {
208208
DeleteWorkspaceOnFail: false,
209209
WaitJobCompleteMinutes: 60,
210210
Region: region,
211+
IgnoreUpdates: testhelper.Exemptions{ // Ignore for consistency check
212+
List: []string{
213+
"module.monitoring_agent.helm_release.cloud_monitoring_agent",
214+
},
215+
},
211216
})
212217

213218
options.TerraformVars = []testschematic.TestSchematicTerraformVar{

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ variable "chart_location" {
156156
variable "chart_version" {
157157
description = "The version of the Cloud Monitoring agent helm chart to deploy."
158158
type = string
159-
default = "1.79.0" # registryUrl: charts.sysdig.com
159+
default = "1.80.3" # registryUrl: charts.sysdig.com
160160
nullable = false
161161
}
162162

0 commit comments

Comments
 (0)