You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_chart_version"></a> [chart\_version](#input\_chart\_version)| Version of the Jenkins chart that will be used to deploy Jenkins application. |`string`|`"10.6.1"`| no |
85
+
| <aname="input_chart_version"></a> [chart\_version](#input\_chart\_version)| Version of the Jenkins chart that will be used to deploy Jenkins application. |`string`|`"2025.2.0"`| no |
84
86
| <aname="input_namespace"></a> [namespace](#input\_namespace)| Name of the Kubernetes namespace where the Jenkins deployment will be deployed. |`string`|`"sonarqube"`| no |
85
-
| <aname="input_sonarqube_config"></a> [sonarqube\_config](#input\_sonarqube\_config)| Specify the configuration settings for Sonarqube, including the hostname, storage options, and custom YAML values. |`any`| <pre>{<br> "grafana_monitoring_enabled": false,<br> "hostname": "",<br> "postgresql_external_server_url": "",<br> "postgresql_password_external": "",<br> "postgresql_volume_size": "",<br> "sonarqube_volume_size": "",<br> "storage_class_name": "",<br> "values_yaml": ""<br>}</pre> | no |
87
+
| <aname="input_sonarqube_config"></a> [sonarqube\_config](#input\_sonarqube\_config)| Specify the configuration settings for Sonarqube, including the hostname, storage options, and custom YAML values. |`any`| <pre>{<br/> "grafana_monitoring_enabled": false,<br/> "hostname": "",<br/> "postgresql_external_server_url": "",<br/> "postgresql_password_external": "",<br/> "postgresql_volume_size": "",<br/> "sonarqube_volume_size": "",<br/> "storage_class_name": "",<br/> "values_yaml": ""<br/>}</pre> | no |
Copy file name to clipboardExpand all lines: examples/complete/aws/main.tf
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,18 @@ locals {
10
10
}
11
11
12
12
module"sonarqube" {
13
-
source="squareops/sonarqube/kubernetes"
14
-
version="3.0.1"
13
+
source="squareops/sonarqube/kubernetes"
14
+
version="3.1.0"
15
15
sonarqube_config={
16
16
hostname ="sonarqube.squareops.in"
17
17
values_yaml =file("./helm/values.yaml")
18
18
storage_class_name ="gp2"
19
19
sonarqube_volume_size ="5Gi"
20
-
postgresql_volume_size ="20Gi"
20
+
postgresql_volume_size ="10Gi"
21
21
grafana_monitoring_enabled =false
22
+
monitoringPasscode ="xxxxxxx"
23
+
sonarqube_current_password ="xxxxxxx"# if you upgrade sonarqube then you have to provide your previous sonarqube password ##Secret name=sonarqube-postgresql
24
+
postgresql_current_password ="xxxxxxxxxxx"# if you upgrade sonarqube then you have to provide your previous postgresql password ##Secret name=sonarqube-sonarqube-admin-password
sonarqube_current_password ="xxxxxxx"# if you upgrade sonarqube then you have to provide your previous sonarqube password ##Secret name=sonarqube-postgresql
24
+
postgresql_current_password ="xxxxxxxxxxx"# if you upgrade sonarqube then you have to provide your previous postgresql password ##Secret name=sonarqube-sonarqube-admin-password
Copy file name to clipboardExpand all lines: examples/complete/gcp/main.tf
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
locals {
2
-
name="sonarqube"
2
+
name=""
3
3
region=""
4
-
environment="prod"
4
+
environment=""
5
5
additional_tags={
6
6
Owner ="organization_name"
7
7
Expires ="Never"
@@ -10,15 +10,18 @@ locals {
10
10
}
11
11
12
12
module"sonarqube" {
13
-
source="squareops/sonarqube/kubernetes"
14
-
version="3.0.1"
13
+
source="squareops/sonarqube/kubernetes"
14
+
version="3.1.0"
15
15
sonarqube_config={
16
16
hostname ="sonarqube.squareops.in"
17
17
values_yaml =file("./helm/values.yaml")
18
18
storage_class_name ="gp2"
19
19
sonarqube_volume_size ="5Gi"
20
-
postgresql_volume_size ="20Gi"
20
+
postgresql_volume_size ="10Gi"
21
21
grafana_monitoring_enabled =false
22
+
monitoringPasscode ="xxxxxxx"
23
+
sonarqube_current_password ="xxxxxxx"# if you upgrade sonarqube then you have to provide your previous sonarqube password ##Secret name=sonarqube-postgresql
24
+
postgresql_current_password ="xxxxxxxxxxx"# if you upgrade sonarqube then you have to provide your previous postgresql password ##Secret name=sonarqube-sonarqube-admin-password
0 commit comments