Skip to content

Commit 6da8606

Browse files
committed
Update Blog “kubernetes-cluster-as-code-part-2”
1 parent 603fc8f commit 6da8606

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/blog/kubernetes-cluster-as-code-part-2.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In this blog post, I will focus on managing application deployments using IaC. H
4141

4242
### Helm provider
4343

44-
Below is the code block for adding **helm** community provider. Please refer to [my first blog post](https://developer.hpe.com/blog/kubernetes-clusters-as-code-part1/) for details regarding **hpegl\_caas\_cluster** data source.
44+
Below is the code block for adding **helm** community provider. Please refer to [my first blog post](https://developer.hpe.com/blog/kubernetes-clusters-as-code-part1/) for details regarding **hpegl_caas_cluster** data source.
4545

4646
```json
4747
provider "helm" {
@@ -57,8 +57,8 @@ provider "helm" {
5757

5858
In order to deploy Prometheus stack using the helm-release resource, the following values have to be filled in the **prometheus-deploy.tf** file:
5959

60-
1. Cluster Name: Fill in the **name** of the pre-created cluster in **hpegl\_caas\_cluster** block. In the below example, name= "tf-test-7"
61-
2. Namespace: Fill in the appropriate **namespace** in the **helm\_release** block. In the below example, namespace= "test-namespace" 
60+
1. Cluster Name: Fill in the **name** of the pre-created cluster in **hpegl_caas_cluster** block. In the below example, name= "tf-test-7"
61+
2. Namespace: Fill in the appropriate **namespace** in the **helm_release** block. In the below example, namespace= "test-namespace" 
6262

6363
**prometheus-deploy.tf** 
6464

@@ -100,7 +100,7 @@ resource "helm_release" "prometheus-stack" {
100100
name = "prometheus-stack"
101101
repository = "https://prometheus-community.github.io/helm-charts"
102102
chart = "kube-prometheus-stack"
103-
103+
version = "36.0.2"
104104
namespace = "test-namespace"
105105

106106
set {
@@ -319,4 +319,4 @@ I hope you found this information interesting and useful in helping you get star
319319

320320
\-      [ Learn more about the HPE GreenLake Terraform provider](https://registry.terraform.io/providers/HPE/hpegl)
321321

322-
Don’t forget, you can always find other tutorials and articles on HPE GreenLake on the [HPE Developer blog](https://developer.hpe.com/blog/tag/hpe-greenlake).
322+
Don’t forget, you can always find other tutorials and articles on HPE GreenLake on the [HPE Developer blog](https://developer.hpe.com/blog/tag/hpe-greenlake).

0 commit comments

Comments
 (0)