From 18a8340627d75e9ba56cd4bd1aadc3faa10c58db Mon Sep 17 00:00:00 2001 From: rachit89 Date: Thu, 21 Mar 2024 15:37:55 +0530 Subject: [PATCH 01/10] Upgrade helm chart version from 5.4.0 to 6.7.0 --- variable.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variable.tf b/variable.tf index 82ed885..7608064 100644 --- a/variable.tf +++ b/variable.tf @@ -13,7 +13,7 @@ variable "argocd_config" { variable "chart_version" { type = string - default = "5.53.11" + default = "6.7.0" description = "Version of the Argocd chart that will be used to deploy Argocd application." } From f62bfd6be2f37533568a3e5cf6d1b50d2a79402b Mon Sep 17 00:00:00 2001 From: rachit89 Date: Fri, 22 Mar 2024 16:54:47 +0530 Subject: [PATCH 02/10] Changed helm chart version from 6.7.0 to 6.7.3 --- examples/complete/aws/helm/values.yaml | 14 +++++++------- examples/complete/aws/main.tf | 2 +- examples/complete/aws/provider.tf | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/complete/aws/helm/values.yaml b/examples/complete/aws/helm/values.yaml index e394804..f56d2e8 100644 --- a/examples/complete/aws/helm/values.yaml +++ b/examples/complete/aws/helm/values.yaml @@ -12,7 +12,7 @@ controller: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -22,7 +22,7 @@ repoServer: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -48,7 +48,7 @@ notifications: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -67,7 +67,7 @@ server: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -87,7 +87,7 @@ redis: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -107,7 +107,7 @@ dex: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -127,7 +127,7 @@ applicationSet: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" diff --git a/examples/complete/aws/main.tf b/examples/complete/aws/main.tf index 5cba2fe..d721496 100644 --- a/examples/complete/aws/main.tf +++ b/examples/complete/aws/main.tf @@ -11,7 +11,7 @@ locals { module "argocd" { source = "squareops/argocd/kubernetes" argocd_config = { - hostname = "argocd.prod.in" + hostname = "argocd.ldc.squareops.in" values_yaml = file("./helm/values.yaml") redis_ha_enabled = true autoscaling_enabled = true diff --git a/examples/complete/aws/provider.tf b/examples/complete/aws/provider.tf index 82ac4d9..ab36fe3 100644 --- a/examples/complete/aws/provider.tf +++ b/examples/complete/aws/provider.tf @@ -6,11 +6,11 @@ provider "aws" { } data "aws_eks_cluster" "cluster" { - name = "" + name = "prodd-eks" } data "aws_eks_cluster_auth" "cluster" { - name = "" + name = "prodd-eks" } From fab1f074ac18e75d9e9c52ddfa2ba25d5684ef47 Mon Sep 17 00:00:00 2001 From: rachit89 Date: Mon, 1 Apr 2024 13:17:55 +0530 Subject: [PATCH 03/10] Reverted to old changes as before. --- examples/complete/aws/main.tf | 4 ++-- examples/complete/aws/provider.tf | 6 +++--- variable.tf | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/complete/aws/main.tf b/examples/complete/aws/main.tf index d721496..9f249fe 100644 --- a/examples/complete/aws/main.tf +++ b/examples/complete/aws/main.tf @@ -11,11 +11,11 @@ locals { module "argocd" { source = "squareops/argocd/kubernetes" argocd_config = { - hostname = "argocd.ldc.squareops.in" + hostname = "argocd.prod.in" values_yaml = file("./helm/values.yaml") redis_ha_enabled = true autoscaling_enabled = true slack_notification_token = "" argocd_notifications_enabled = true } -} +} \ No newline at end of file diff --git a/examples/complete/aws/provider.tf b/examples/complete/aws/provider.tf index ab36fe3..bb431c5 100644 --- a/examples/complete/aws/provider.tf +++ b/examples/complete/aws/provider.tf @@ -6,11 +6,11 @@ provider "aws" { } data "aws_eks_cluster" "cluster" { - name = "prodd-eks" + name = "" } data "aws_eks_cluster_auth" "cluster" { - name = "prodd-eks" + name = "" } @@ -28,4 +28,4 @@ provider "helm" { token = data.aws_eks_cluster_auth.cluster.token } -} +} \ No newline at end of file diff --git a/variable.tf b/variable.tf index 7608064..1a7f44b 100644 --- a/variable.tf +++ b/variable.tf @@ -13,7 +13,7 @@ variable "argocd_config" { variable "chart_version" { type = string - default = "6.7.0" + default = "6.7.3" description = "Version of the Argocd chart that will be used to deploy Argocd application." } From 1eb7a5cecb9c9e05787eb712e82c7f7f5cd0f441 Mon Sep 17 00:00:00 2001 From: rachit89 Date: Mon, 1 Apr 2024 13:19:30 +0530 Subject: [PATCH 04/10] updated label. --- examples/complete/aws/helm/values.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/complete/aws/helm/values.yaml b/examples/complete/aws/helm/values.yaml index f56d2e8..e394804 100644 --- a/examples/complete/aws/helm/values.yaml +++ b/examples/complete/aws/helm/values.yaml @@ -12,7 +12,7 @@ controller: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "Addons-Services" + - key: "cicd-services" operator: In values: - "true" @@ -22,7 +22,7 @@ repoServer: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "Addons-Services" + - key: "cicd-services" operator: In values: - "true" @@ -48,7 +48,7 @@ notifications: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "Addons-Services" + - key: "cicd-services" operator: In values: - "true" @@ -67,7 +67,7 @@ server: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "Addons-Services" + - key: "cicd-services" operator: In values: - "true" @@ -87,7 +87,7 @@ redis: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "Addons-Services" + - key: "cicd-services" operator: In values: - "true" @@ -107,7 +107,7 @@ dex: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "Addons-Services" + - key: "cicd-services" operator: In values: - "true" @@ -127,7 +127,7 @@ applicationSet: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "Addons-Services" + - key: "cicd-services" operator: In values: - "true" From c23d237d8700ba0b4f6389c067ecf51e17af4829 Mon Sep 17 00:00:00 2001 From: rachit89 Date: Mon, 1 Apr 2024 13:20:49 +0530 Subject: [PATCH 05/10] updated --- IAM.md | 2 +- README.md | 2 +- examples/complete/aws/README.md | 36 +++++++++++++++++++++++- examples/complete/aws/main.tf | 2 +- examples/complete/aws/provider.tf | 2 +- examples/complete/azure/README.md | 35 ++++++++++++++++++++++- examples/complete/azure/helm/values.yaml | 2 +- examples/complete/gcp/README.md | 36 +++++++++++++++++++++++- examples/complete/gcp/provider.tf | 2 +- 9 files changed, 110 insertions(+), 9 deletions(-) diff --git a/IAM.md b/IAM.md index f351605..d48f258 100644 --- a/IAM.md +++ b/IAM.md @@ -47,4 +47,4 @@ The Policy required to deploy this module: "container.clusters.get" ] } -``` \ No newline at end of file +``` diff --git a/README.md b/README.md index 050c03c..ed6d383 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [argocd\_config](#input\_argocd\_config) | Specify the configuration settings for Argocd, including the hostname, redis\_ha\_enabled, autoscaling, notification settings, and custom YAML values. | `any` |
{
"argocd_notifications_enabled": false,
"autoscaling_enabled": false,
"hostname": "",
"redis_ha_enabled": false,
"slack_notification_token": "",
"values_yaml": ""
}
| no | -| [chart\_version](#input\_chart\_version) | Version of the Argocd chart that will be used to deploy Argocd application. | `string` | `"5.53.11"` | no | +| [chart\_version](#input\_chart\_version) | Version of the Argocd chart that will be used to deploy Argocd application. | `string` | `"6.7.3"` | no | | [namespace](#input\_namespace) | Name of the Kubernetes namespace where the Argocd deployment will be deployed. | `string` | `"argocd"` | no | ## Outputs diff --git a/examples/complete/aws/README.md b/examples/complete/aws/README.md index 7a04514..df8acc1 100644 --- a/examples/complete/aws/README.md +++ b/examples/complete/aws/README.md @@ -32,4 +32,38 @@ No inputs. | Name | Description | |------|-------------| | [argocd\_credentials](#output\_argocd\_credentials) | Argocd\_Info | - \ No newline at end of file + + +## Requirements + +No requirements. + +## Providers + +| Name | Version | +|------|---------| +| [aws](#provider\_aws) | n/a | + +## Modules + +| Name | Source | Version | +|------|--------|---------| +| [argocd](#module\_argocd) | squareops/argocd/kubernetes | n/a | + +## Resources + +| Name | Type | +|------|------| +| [aws_eks_cluster.cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster) | data source | +| [aws_eks_cluster_auth.cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster_auth) | data source | + +## Inputs + +No inputs. + +## Outputs + +| Name | Description | +|------|-------------| +| [argocd\_credentials](#output\_argocd\_credentials) | Argocd\_Info | + diff --git a/examples/complete/aws/main.tf b/examples/complete/aws/main.tf index 9f249fe..5cba2fe 100644 --- a/examples/complete/aws/main.tf +++ b/examples/complete/aws/main.tf @@ -18,4 +18,4 @@ module "argocd" { slack_notification_token = "" argocd_notifications_enabled = true } -} \ No newline at end of file +} diff --git a/examples/complete/aws/provider.tf b/examples/complete/aws/provider.tf index bb431c5..82ac4d9 100644 --- a/examples/complete/aws/provider.tf +++ b/examples/complete/aws/provider.tf @@ -28,4 +28,4 @@ provider "helm" { token = data.aws_eks_cluster_auth.cluster.token } -} \ No newline at end of file +} diff --git a/examples/complete/azure/README.md b/examples/complete/azure/README.md index df4855d..3abcabe 100644 --- a/examples/complete/azure/README.md +++ b/examples/complete/azure/README.md @@ -32,4 +32,37 @@ No inputs. | Name | Description | |------|-------------| | [argocd\_credentials](#output\_argocd\_credentials) | Argocd\_Info | - \ No newline at end of file + + +## Requirements + +No requirements. + +## Providers + +| Name | Version | +|------|---------| +| [azurerm](#provider\_azurerm) | n/a | + +## Modules + +| Name | Source | Version | +|------|--------|---------| +| [argocd](#module\_argocd) | squareops/argocd/kubernetes | n/a | + +## Resources + +| Name | Type | +|------|------| +| [azurerm_kubernetes_cluster.primary](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/kubernetes_cluster) | data source | + +## Inputs + +No inputs. + +## Outputs + +| Name | Description | +|------|-------------| +| [argocd\_credentials](#output\_argocd\_credentials) | Argocd\_Info | + diff --git a/examples/complete/azure/helm/values.yaml b/examples/complete/azure/helm/values.yaml index 7d5486c..134767c 100644 --- a/examples/complete/azure/helm/values.yaml +++ b/examples/complete/azure/helm/values.yaml @@ -53,4 +53,4 @@ redis: - key: "Addons-Services" operator: In values: - - "true" \ No newline at end of file + - "true" diff --git a/examples/complete/gcp/README.md b/examples/complete/gcp/README.md index 7dab93b..1e5db13 100644 --- a/examples/complete/gcp/README.md +++ b/examples/complete/gcp/README.md @@ -32,4 +32,38 @@ No inputs. | Name | Description | |------|-------------| | [argocd\_credentials](#output\_argocd\_credentials) | Argocd\_Info | - \ No newline at end of file + + +## Requirements + +No requirements. + +## Providers + +| Name | Version | +|------|---------| +| [google](#provider\_google) | n/a | + +## Modules + +| Name | Source | Version | +|------|--------|---------| +| [argocd](#module\_argocd) | squareops/argocd/kubernetes | n/a | + +## Resources + +| Name | Type | +|------|------| +| [google_client_config.default](https://registry.terraform.io/providers/hashicorp/google/latest/docs/data-sources/client_config) | data source | +| [google_container_cluster.primary](https://registry.terraform.io/providers/hashicorp/google/latest/docs/data-sources/container_cluster) | data source | + +## Inputs + +No inputs. + +## Outputs + +| Name | Description | +|------|-------------| +| [argocd\_credentials](#output\_argocd\_credentials) | Argocd\_Info | + diff --git a/examples/complete/gcp/provider.tf b/examples/complete/gcp/provider.tf index 686255d..d08fdf6 100644 --- a/examples/complete/gcp/provider.tf +++ b/examples/complete/gcp/provider.tf @@ -18,4 +18,4 @@ provider "helm" { token = data.google_client_config.default.access_token cluster_ca_certificate = base64decode(data.google_container_cluster.primary.master_auth.0.cluster_ca_certificate) } -} \ No newline at end of file +} From 223a0bd322777e1c4fc98f6f0199ae06223ad1f9 Mon Sep 17 00:00:00 2001 From: rachit89 Date: Tue, 2 Apr 2024 15:21:44 +0530 Subject: [PATCH 06/10] Updated version of argocd helm chart in README.md. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed6d383..5264720 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ This module is compatible with EKS, AKS & GKE which is great news for users depl | Argocd Helm Chart Version | K8s supported version (EKS, AKS & GKE) | | :-----: | :--- | -| **5.53.11** | **1.23,1.24,1.25,1.26,1.27** | +| **6.7.3** | **1.23,1.24,1.25,1.26,1.27,1.28** | ## Usage Example From e0da49d6398f0ff609cdd20008c211636db928e8 Mon Sep 17 00:00:00 2001 From: rachit89 Date: Tue, 2 Apr 2024 15:23:41 +0530 Subject: [PATCH 07/10] updated --- README.md | 2 +- main.tf | 2 +- variable.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5264720..97b71ec 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [argocd\_config](#input\_argocd\_config) | Specify the configuration settings for Argocd, including the hostname, redis\_ha\_enabled, autoscaling, notification settings, and custom YAML values. | `any` |
{
"argocd_notifications_enabled": false,
"autoscaling_enabled": false,
"hostname": "",
"redis_ha_enabled": false,
"slack_notification_token": "",
"values_yaml": ""
}
| no | -| [chart\_version](#input\_chart\_version) | Version of the Argocd chart that will be used to deploy Argocd application. | `string` | `"6.7.3"` | no | +| [helm\_chart\_version](#input\_helm\_chart\_version) | Version of the Argocd chart that will be used to deploy Argocd application. | `string` | `"6.7.3"` | no | | [namespace](#input\_namespace) | Name of the Kubernetes namespace where the Argocd deployment will be deployed. | `string` | `"argocd"` | no | ## Outputs diff --git a/main.tf b/main.tf index 00f83a8..39770b6 100644 --- a/main.tf +++ b/main.tf @@ -9,7 +9,7 @@ resource "helm_release" "argocd_deploy" { name = "argo-cd" chart = "argo-cd" timeout = 600 - version = var.chart_version + version = var.helm_chart_version namespace = var.namespace repository = "https://argoproj.github.io/argo-helm" values = [ diff --git a/variable.tf b/variable.tf index 1a7f44b..c26939c 100644 --- a/variable.tf +++ b/variable.tf @@ -11,7 +11,7 @@ variable "argocd_config" { description = "Specify the configuration settings for Argocd, including the hostname, redis_ha_enabled, autoscaling, notification settings, and custom YAML values." } -variable "chart_version" { +variable "helm_chart_version" { type = string default = "6.7.3" description = "Version of the Argocd chart that will be used to deploy Argocd application." From 96831315da20df33e616af7f7b0d67359b425655 Mon Sep 17 00:00:00 2001 From: rachit89 Date: Tue, 2 Apr 2024 15:29:09 +0530 Subject: [PATCH 08/10] updated description in output.tf. --- examples/complete/aws/output.tf | 2 +- output.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/complete/aws/output.tf b/examples/complete/aws/output.tf index b9ae7b9..8927931 100644 --- a/examples/complete/aws/output.tf +++ b/examples/complete/aws/output.tf @@ -1,4 +1,4 @@ output "argocd_credentials" { value = module.argocd.argocd - description = "Argocd_Info" + description = "Information about the ArgoCD, including the username, password, and URL." } diff --git a/output.tf b/output.tf index ff687ed..e7bc263 100644 --- a/output.tf +++ b/output.tf @@ -1,5 +1,5 @@ output "argocd" { - description = "Argocd_Info" + description = "Information about the ArgoCD, including the username, password, and URL." value = { username = "admin", password = nonsensitive(data.kubernetes_secret.argocd-secret.data.password), From a1d6208d7bac08d083f94a39eddd3cfb2f032075 Mon Sep 17 00:00:00 2001 From: rachit89 Date: Tue, 23 Apr 2024 12:09:43 +0530 Subject: [PATCH 09/10] Updated value in default values.yaml for hostname from hosts to hostname. --- README.md | 2 +- examples/complete/aws/README.md | 4 ++-- examples/complete/aws/helm/values.yaml | 14 +++++++------- examples/complete/aws/main.tf | 9 +++++---- examples/complete/aws/provider.tf | 4 ++-- helm/values/values.yaml | 4 ++-- 6 files changed, 19 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 97b71ec..f00a0b3 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ No modules. | Name | Description | |------|-------------| -| [argocd](#output\_argocd) | Argocd\_Info | +| [argocd](#output\_argocd) | Information about the ArgoCD, including the username, password, and URL. | ## Contribution & Issue Reporting diff --git a/examples/complete/aws/README.md b/examples/complete/aws/README.md index df8acc1..3032040 100644 --- a/examples/complete/aws/README.md +++ b/examples/complete/aws/README.md @@ -48,7 +48,7 @@ No requirements. | Name | Source | Version | |------|--------|---------| -| [argocd](#module\_argocd) | squareops/argocd/kubernetes | n/a | +| [argocd](#module\_argocd) | ../../../ | n/a | ## Resources @@ -65,5 +65,5 @@ No inputs. | Name | Description | |------|-------------| -| [argocd\_credentials](#output\_argocd\_credentials) | Argocd\_Info | +| [argocd\_credentials](#output\_argocd\_credentials) | Information about the ArgoCD, including the username, password, and URL. | diff --git a/examples/complete/aws/helm/values.yaml b/examples/complete/aws/helm/values.yaml index e394804..f56d2e8 100644 --- a/examples/complete/aws/helm/values.yaml +++ b/examples/complete/aws/helm/values.yaml @@ -12,7 +12,7 @@ controller: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -22,7 +22,7 @@ repoServer: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -48,7 +48,7 @@ notifications: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -67,7 +67,7 @@ server: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -87,7 +87,7 @@ redis: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -107,7 +107,7 @@ dex: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" @@ -127,7 +127,7 @@ applicationSet: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "cicd-services" + - key: "Addons-Services" operator: In values: - "true" diff --git a/examples/complete/aws/main.tf b/examples/complete/aws/main.tf index 5cba2fe..811b23d 100644 --- a/examples/complete/aws/main.tf +++ b/examples/complete/aws/main.tf @@ -1,5 +1,5 @@ locals { - region = "us-east-2" + region = "ap-south-1" additional_tags = { Owner = "organization_name" Expires = "Never" @@ -9,13 +9,14 @@ locals { } module "argocd" { - source = "squareops/argocd/kubernetes" + # source = "squareops/argocd/kubernetes" + source = "../../../" argocd_config = { - hostname = "argocd.prod.in" + hostname = "argocd-test.ldc.squareops.in" values_yaml = file("./helm/values.yaml") redis_ha_enabled = true autoscaling_enabled = true - slack_notification_token = "" + slack_notification_token = "xoxb-379541400966-iibMHnnoaPzVl" argocd_notifications_enabled = true } } diff --git a/examples/complete/aws/provider.tf b/examples/complete/aws/provider.tf index 82ac4d9..5ec118a 100644 --- a/examples/complete/aws/provider.tf +++ b/examples/complete/aws/provider.tf @@ -6,11 +6,11 @@ provider "aws" { } data "aws_eks_cluster" "cluster" { - name = "" + name = "test-rachit" } data "aws_eks_cluster_auth" "cluster" { - name = "" + name = "test-rachit" } diff --git a/helm/values/values.yaml b/helm/values/values.yaml index 5b85c9c..d122516 100644 --- a/helm/values/values.yaml +++ b/helm/values/values.yaml @@ -104,7 +104,7 @@ server: enabled: ${autoscaling_enabled} ingress: enabled: true - hosts: [${hostname}] + hostname: ${hostname} annotations: kubernetes.io/ingress.class: "nginx" kubernetes.io/tls-acme: "true" @@ -113,7 +113,7 @@ server: nginx.ingress.kubernetes.io/ssl-passthrough: "true" tls: - secretName: argocd-tls - hosts: + hostname: - ${hostname} podAnnotation: co.elastic.logs/enabled: "true" From 7d088439bc3f6625f91bff1e301bdee512a489b8 Mon Sep 17 00:00:00 2001 From: rachit89 <115970922+rachit89@users.noreply.github.com> Date: Tue, 23 Apr 2024 17:32:07 +0530 Subject: [PATCH 10/10] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f00a0b3..d6ccd3c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ ## argocd -![squareops_avatar] - -[squareops_avatar]: https://squareops.com/wp-content/uploads/2022/12/squareops-logo.png + + + + + ### [SquareOps Technologies](https://squareops.com/) Your DevOps Partner for Accelerating cloud journey.