File tree Expand file tree Collapse file tree 8 files changed +63
-18
lines changed Expand file tree Collapse file tree 8 files changed +63
-18
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ type: application
16
16
# This is the chart version. This version number should be incremented each time you make changes
17
17
# to the chart and its templates, including the app version.
18
18
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19
- version : 0.2 .0
19
+ version : 0.3 .0
20
20
21
21
# This is the version number of the application being deployed. This version number should be
22
22
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 10
10
| ` replicas ` | Persistent Volume size for NATS | ` 2 ` |
11
11
| ` storageClass ` | StorageClass used to store the data | ` "" ` |
12
12
13
+ ### Configuration parameters
14
+
15
+ | Name | Description | Value |
16
+ | ----------- | ----------------------- | ----- |
17
+ | ` users ` | Users configuration | ` {} ` |
Original file line number Diff line number Diff line change 18
18
nats :
19
19
fullnameOverride : {{ .Release.Name }}
20
20
config :
21
+ {{- if .Values.users }}
22
+ {{- if gt (len .Values.users) 0 }}
23
+ merge :
24
+ accounts :
25
+ A :
26
+ users :
27
+ {{- range $username, $userConfig := .Values.users }}
28
+ - user : " {{ $username }}"
29
+ password : " {{ $userConfig.password }}"
30
+ {{- end }}
31
+ {{- end }}
32
+ {{- end }}
21
33
cluster :
22
34
enabled : true
23
35
replicas : {{ .Values.replicas }}
Original file line number Diff line number Diff line change 2
2
"title" : " Chart Values" ,
3
3
"type" : " object" ,
4
4
"properties" : {
5
- "external" : {
6
- "type" : " boolean" ,
7
- "description" : " Enable external access from outside the cluster" ,
8
- "default" : false
5
+ "external" : {
6
+ "type" : " boolean" ,
7
+ "description" : " Enable external access from outside the cluster" ,
8
+ "default" : false
9
+ },
10
+ "replicas" : {
11
+ "type" : " number" ,
12
+ "description" : " Persistent Volume size for NATS" ,
13
+ "default" : 2
14
+ },
15
+ "storageClass" : {
16
+ "type" : " string" ,
17
+ "description" : " StorageClass used to store the data" ,
18
+ "default" : " "
19
+ },
20
+ "users" : {
21
+ "type" : " object" ,
22
+ "description" : " Users configuration" ,
23
+ "additionalProperties" : {
24
+ "type" : " object" ,
25
+ "properties" : {
26
+ "password" : {
27
+ "type" : " string" ,
28
+ "description" : " Password for the user"
29
+ }
30
+ },
31
+ "required" : [" password" ]
9
32
},
10
- "replicas" : {
11
- "type" : " number" ,
12
- "description" : " Persistent Volume size for NATS" ,
13
- "default" : 2
14
- },
15
- "storageClass" : {
16
- "type" : " string" ,
17
- "description" : " StorageClass used to store the data" ,
18
- "default" : " "
19
- }
33
+ "default" : {}
34
+ }
20
35
}
21
- }
36
+ }
Original file line number Diff line number Diff line change 8
8
external : false
9
9
replicas : 2
10
10
storageClass : " "
11
+ # # @param users [object] Users configuration
12
+ # # Example:
13
+ # # users:
14
+ # # user1:
15
+ # # password: strongpassword
16
+ # # user2:
17
+ # # password: hackme
18
+ users : {}
Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ mysql 0.5.0 4b84798
48
48
mysql 0.5.1 fab5940b
49
49
mysql 0.5.2 HEAD
50
50
nats 0.1.0 5ca8823
51
- nats 0.2.0 HEAD
51
+ nats 0.2.0 c07c4bbd
52
+ nats 0.3.0 HEAD
52
53
postgres 0.1.0 f642698
53
54
postgres 0.2.0 7cd7de73
54
55
postgres 0.2.1 4a97e297
Original file line number Diff line number Diff line change 1
1
cozystack :
2
- image : ghcr.io/aenix-io/ cozystack/cozystack:v0.18.0 @sha256:8c0e75ca3c9cbc8289cff7955f83e6d52d077cbb0e1328e64a82026c7bea19b5
2
+ image : kklinch0/ cozystack:8.1.2 @sha256:bb27628e0a9c1399483f21239805e4c306fc1ef4131e10bd18cbe38f2e32d987
Original file line number Diff line number Diff line change 5
5
persistentVolumeClaimRetentionPolicy :
6
6
whenDeleted : Delete
7
7
whenScaled : Delete
8
+ config :
9
+ cluster :
10
+ routeURLs :
11
+ k8sClusterDomain : cozy.local
You can’t perform that action at this time.
0 commit comments