From 4124caac59409b350b8679e2ee25158c348c7931 Mon Sep 17 00:00:00 2001 From: RohitSquareops Date: Wed, 31 May 2023 00:00:36 +0530 Subject: [PATCH 1/3] Initial Release --- README.md | 12 ++++++------ examples/complete/README.md | 2 +- examples/complete/main.tf | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6fab7d6..90d2e94 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ This module creates a Redis master and one or more Redis slaves, depending on th ```hcl module "redis" { - source = "https://github.com/sq-ia/terraform-kubernetes-redis.git" + source = "squareops/redis/kubernetes" redis_config = { name = "redis" values_yaml = "" @@ -28,7 +28,7 @@ module "redis" { architecture = "replication" slave_volume_size = "10Gi" master_volume_size = "10Gi" - storage_class_name = "gp2" + storage_class_name = "gp3" slave_replica_count = 2 } grafana_monitoring_enabled = true @@ -36,10 +36,10 @@ module "redis" { } ``` -Refer [examples](https://github.com/sq-ia/terraform-kubernetes-redis/tree/main/examples/complete) for more details. +Refer [examples](https://github.com/squareops/terraform-kubernetes-redis/tree/main/examples/complete) for more details. ## IAM Permissions -The required IAM permissions to create resources from this module can be found [here](https://github.com/sq-ia/terraform-kubernetes-redis/blob/main/IAM.md) +The required IAM permissions to create resources from this module can be found [here](https://github.com/squareops/terraform-kubernetes-redis/blob/main/IAM.md) ## Important Notes 1. In order to enable the exporter, it is required to deploy Prometheus/Grafana first. @@ -103,7 +103,7 @@ No modules. To report an issue with a project: - 1. Check the repository's [issue tracker](https://github.com/sq-ia/terraform-kubernetes-redis/issues) on GitHub + 1. Check the repository's [issue tracker](https://github.com/squareops/terraform-kubernetes-redis/issues) on GitHub 2. Search to see if the issue has already been reported 3. If you can't find an answer to your question in the documentation or issue tracker, you can ask a question by creating a new issue. Be sure to provide enough context and details so others can understand your problem. @@ -115,7 +115,7 @@ Apache License, Version 2.0, January 2004 (http://www.apache.org/licenses/). To support a GitHub project by liking it, you can follow these steps: - 1. Visit the repository: Navigate to the [GitHub repository](https://github.com/sq-ia/terraform-kubernetes-redis). + 1. Visit the repository: Navigate to the [GitHub repository](https://github.com/squareops/terraform-kubernetes-redis). 2. Click the "Star" button: On the repository page, you'll see a "Star" button in the upper right corner. Clicking on it will star the repository, indicating your support for the project. diff --git a/examples/complete/README.md b/examples/complete/README.md index b52e1db..4857a71 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -21,7 +21,7 @@ No requirements. | Name | Source | Version | |------|--------|---------| -| [redis](#module\_redis) | https://github.com/sq-ia/terraform-kubernetes-redis.git | n/a | +| [redis](#module\_redis) | squareops/redis/kubernetes.git | n/a | ## Resources diff --git a/examples/complete/main.tf b/examples/complete/main.tf index bb0d15c..75fa060 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -10,7 +10,7 @@ locals { } module "redis" { - source = "https://github.com/sq-ia/terraform-kubernetes-redis.git" + source = "squareops/redis/kubernetes.git" redis_config = { name = local.name values_yaml = file("./helm/values.yaml") From 9077d7e7a58af6739f87fecb8b6abb6e20ddc7e4 Mon Sep 17 00:00:00 2001 From: RohitSquareops Date: Wed, 31 May 2023 11:13:01 +0530 Subject: [PATCH 2/3] updated reference in example --- examples/complete/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 75fa060..2874bf6 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -18,7 +18,7 @@ module "redis" { architecture = "replication" slave_volume_size = "10Gi" master_volume_size = "10Gi" - storage_class_name = "gp2" + storage_class_name = "gp3" slave_replica_count = 2 } grafana_monitoring_enabled = true From c68207a61ac51d874c6a800a584a066584698f82 Mon Sep 17 00:00:00 2001 From: Rohit Singh <107384244+RohitSquareops@users.noreply.github.com> Date: Wed, 7 Jun 2023 05:44:35 +0000 Subject: [PATCH 3/3] updated repo references --- examples/complete/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 2874bf6..24ba9ae 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -10,7 +10,7 @@ locals { } module "redis" { - source = "squareops/redis/kubernetes.git" + source = "squareops/redis/kubernetes" redis_config = { name = local.name values_yaml = file("./helm/values.yaml")