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
The Structurizr Helm chart deploys Structurizr On premise flavor. Structurizr is a web-based rendering tool designed to help software development teams create software architecture diagrams and documentation.
6
6
@@ -13,6 +13,7 @@ The Structurizr Helm chart deploys Structurizr On premise flavor. Structurizr is
13
13
| autoscaling.maxReplicas | int |`100`||
14
14
| autoscaling.minReplicas | int |`1`||
15
15
| autoscaling.targetCPUUtilizationPercentage | int |`80`||
16
+
| env | list |`[]`| List of environment variables to be set for the Structurizr pod. |
Copy file name to clipboardExpand all lines: charts/structurizr/README.md.gotmpl
+37-2Lines changed: 37 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,47 @@
6
6
7
7
{{ template "chart.valuesSection" . }}
8
8
9
+
## Additional Configuration Details:
10
+
11
+
### `volumes` and `volumeMounts`:
12
+
You can define additional volumes to attach to the pod and specify where they are mounted. For example:
13
+
14
+
```yaml
15
+
volumes:
16
+
- name: my-storage
17
+
persistentVolumeClaim:
18
+
claimName: my-pvc
19
+
volumeMounts:
20
+
- name: my-storage
21
+
mountPath: /path/in/container
22
+
```
23
+
24
+
### `properties`, `users`, `roles`, and `saml-idp-metadata`:
25
+
These fields allow you to define multi-line strings for configurations. For instance, `properties` can be used to set Structurizr-specific configurations:
26
+
27
+
```yaml
28
+
properties: |
29
+
structurizr.redis.password=${REDIS_PASSWORD}
30
+
structurizr.authentication=saml
31
+
```
32
+
Similar patterns can be used for `users`, `roles`, and `saml-idp-metadata` fields.
33
+
34
+
### `env`:
35
+
You can specify additional environment variables for the Structurizr application. For instance:
36
+
37
+
```yaml
38
+
env:
39
+
- name: STRUCTURIZR_DATA_DIRECTORY
40
+
value: "/usr/local/structurizr"
41
+
```
42
+
This can be useful to configure aspects of Structurizr using environment variables.
0 commit comments