-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(netdata): update every 3s (#17953)
- Loading branch information
1 parent
bde5fa1
commit 16839fb
Showing
10 changed files
with
123 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 0 additions & 19 deletions
19
cloud-infrastructure/terraform/modules/kubernetes/hm_argo_cd_helm_chart/main.tf
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
cloud-infrastructure/terraform/modules/kubernetes/hm_helm_chart/main.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
terraform { | ||
required_providers { | ||
helm = { | ||
source = "hashicorp/helm" | ||
} | ||
} | ||
} | ||
|
||
# https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release | ||
resource "helm_release" "hm_helm_chart" { | ||
repository = var.repository | ||
chart = var.chart_name | ||
version = var.chart_version | ||
name = var.release_name | ||
namespace = var.namespace | ||
values = var.my_values_yaml_path != "" ? [file(var.my_values_yaml_path)] : [] | ||
reset_values = true | ||
wait = true | ||
} |
13 changes: 10 additions & 3 deletions
13
...rnetes/hm_argo_cd_helm_chart/variables.tf → ...les/kubernetes/hm_helm_chart/variables.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters