Skip to content

Commit 93f8057

Browse files
committed
Bump version to 0.1.5 and update user fields to username in values, schema files and examples
1 parent 57a4c24 commit 93f8057

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

charts/guacamole/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.1.4
22+
version: 0.1.5
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to

charts/guacamole/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Apache Guacamole Helm Chart
22

3-
![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.5](https://img.shields.io/badge/AppVersion-1.5.5-informational?style=flat-square)
3+
![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.5](https://img.shields.io/badge/AppVersion-1.5.5-informational?style=flat-square)
44

55
A Helm chart for deploying Apache Guacamole, a clientless remote desktop gateway that supports standard protocols like VNC, RDP and SSH.
66

@@ -73,7 +73,7 @@ helm install my-guacamole guacamole/guacamole --namespace guacamole --create-nam
7373
enabled: true
7474
hostname: "your-postgres-host"
7575
database: "guacamole"
76-
user: "guacamole_user"
76+
username: "guacamole_user"
7777
password: "your-secure-password"
7878
```
7979
@@ -98,7 +98,7 @@ helm install my-guacamole guacamole/guacamole --namespace guacamole --create-nam
9898
enabled: true
9999
hostname: "your-mysql-host"
100100
database: "guacamole"
101-
user: "guacamole_user"
101+
username: "guacamole_user"
102102
password: "your-secure-password"
103103
```
104104
@@ -249,7 +249,7 @@ client:
249249
enabled: true
250250
hostname: "postgres.default.svc.cluster.local"
251251
database: "guacamole"
252-
user: "guacamole"
252+
username: "guacamole"
253253
password: "secure-password"
254254
255255
resources:
@@ -298,7 +298,7 @@ client:
298298
enabled: true
299299
hostname: "postgres.database.svc.cluster.local"
300300
database: "guacamole"
301-
user: "guacamole"
301+
username: "guacamole"
302302
password: "production-password"
303303
304304
api:
@@ -380,7 +380,7 @@ client:
380380
enabled: true
381381
hostname: "postgres.default.svc.cluster.local"
382382
database: "guacamole"
383-
user: "guacamole"
383+
username: "guacamole"
384384
password: "db-password"
385385
386386
ldap:

charts/guacamole/templates/client-deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ spec:
6565
- name: POSTGRESQL_DATABASE
6666
value: {{ . | quote }}
6767
{{- end }}
68-
{{- with .Values.client.auth.postgresql.user }}
69-
- name: POSTGRESQL_USER
68+
{{- with .Values.client.auth.postgresql.username }}
69+
- name: POSTGRESQL_USERNAME
7070
value: {{ . | quote }}
7171
{{- end }}
7272
{{- with .Values.client.auth.postgresql.password }}
@@ -119,8 +119,8 @@ spec:
119119
- name: MYSQL_DATABASE
120120
value: {{ . | quote }}
121121
{{- end }}
122-
{{- with .Values.client.auth.mysql.user }}
123-
- name: MYSQL_USER
122+
{{- with .Values.client.auth.mysql.username }}
123+
- name: MYSQL_USERNAME
124124
value: {{ . | quote }}
125125
{{- end }}
126126
{{- with .Values.client.auth.mysql.password }}

charts/guacamole/values.schema.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -488,11 +488,11 @@
488488
"title": "port",
489489
"type": "string"
490490
},
491-
"user": {
491+
"username": {
492492
"default": "",
493-
"description": "MYSQL_USER: User that Guacamole will use to connect to MySQL (required)",
493+
"description": "MYSQL_USERNAME: User that Guacamole will use to connect to MySQL (required)",
494494
"required": [],
495-
"title": "user",
495+
"title": "username",
496496
"type": "string"
497497
}
498498
},
@@ -501,7 +501,7 @@
501501
"hostname",
502502
"port",
503503
"database",
504-
"user",
504+
"username",
505505
"password",
506506
"absoluteMaxConnections",
507507
"defaultMaxConnections",
@@ -712,11 +712,11 @@
712712
"title": "socketTimeout",
713713
"type": "string"
714714
},
715-
"user": {
715+
"username": {
716716
"default": "",
717-
"description": "POSTGRESQL_USER: User that Guacamole will use to connect to PostgreSQL (required)",
717+
"description": "POSTGRESQL_USERNAME: User that Guacamole will use to connect to PostgreSQL (required)",
718718
"required": [],
719-
"title": "user",
719+
"title": "username",
720720
"type": "string"
721721
}
722722
},
@@ -725,7 +725,7 @@
725725
"hostname",
726726
"port",
727727
"database",
728-
"user",
728+
"username",
729729
"password",
730730
"absoluteMaxConnections",
731731
"defaultMaxConnections",

charts/guacamole/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ client:
7171
port: ""
7272
# POSTGRESQL_DATABASE: Name of the database to use for Guacamole authentication (required)
7373
database: ""
74-
# POSTGRESQL_USER: User that Guacamole will use to connect to PostgreSQL (required)
75-
user: ""
74+
# POSTGRESQL_USERNAME: User that Guacamole will use to connect to PostgreSQL (required)
75+
username: ""
7676
# POSTGRESQL_PASSWORD: Password for PostgreSQL user (required)
7777
password: ""
7878

@@ -104,8 +104,8 @@ client:
104104
port: ""
105105
# MYSQL_DATABASE: Name of the database to use for Guacamole authentication (required)
106106
database: ""
107-
# MYSQL_USER: User that Guacamole will use to connect to MySQL (required)
108-
user: ""
107+
# MYSQL_USERNAME: User that Guacamole will use to connect to MySQL (required)
108+
username: ""
109109
# MYSQL_PASSWORD: Password for MySQL user (required)
110110
password: ""
111111

0 commit comments

Comments
 (0)