Skip to content

Commit e40d04b

Browse files
committed
Fix docstring mixup on configMaps/PVCs.
1 parent 1fc0d8d commit e40d04b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

applications/rapid-analysis/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Helm chart for deploying the Rapid Analysis services.
88
|-----|------|---------|-------------|
99
| affinity | object | `{}` | This specifies the scheduling constraints of the pod. |
1010
| butlerSecret | object | `{}` | This section allows for specification of Butler secret information. If this section is used, it must contain the following attributes: _key_ (The vault key for the Butler secret), _containerPath_ (The directory location for the Butler secret), _dbUser_ (The username for the Butler backend database) |
11-
| configMountpoint | list | `[]` | This section holds the information necessary to claim persistent volumes. If the section is used, each object listed can have the following attributes defined: _name_ (The name ot the persistent volume), _containerPath_ (The path inside the container to mount), _subPath_ (persistent volume subpath, optional) |
11+
| configMountpoint | list | `[]` | This section holds the information necessary to mount configmaps. If the section is used, each object listed can have the following attributes defined: _name_ (The name of the persistent volume and the configMap), _items_ (Files in the configmap to mount), |
1212
| env | object | `{"AWS_REQUEST_CHECKSUM_CALCULATION":"WHEN_REQUIRED","AWS_RESPONSE_CHECKSUM_VALIDATION":"WHEN_REQUIRED"}` | This section holds a set of key, value pairs for environmental variables (ENV_VAR: value). NOTE: RUN_ARG is taken care of by the chart using _script_. |
1313
| envSecrets | list | `[]` | This section holds specifications for secret injection. If this section is used, each object listed must have the following attributes defined: _name_ (The label for the secret), _secretName_ (The name of the vault store reference. Uses the _namespace_ attribute to construct the full name), _secretKey_ (The key in the vault store containing the necessary secret) |
1414
| fullnameOverride | string | `""` | Specify the deployed application name specifically. Overrides all other names. |
@@ -26,7 +26,7 @@ A Helm chart for deploying the Rapid Analysis services.
2626
| podAnnotations | object | `{}` | This allows the specification of pod annotations. |
2727
| pullSecretsPath | string | `""` | |
2828
| pvcMountpoint | list | `[]` | This section holds information about existing volume claims. If the section is used, each object listed can have the following attributes defined: _name_ (The name ot the persistent volume), _containerPath_ (The path inside the container to mount), _subPath_ (persistent volume subpath, optional) |
29-
| pvcMountpointClaim | list | `[]` | This section holds the information necessary to claim persistent volumes. If the section is used, each object listed can have the following attributes defined: _name_ (The name of the persistent volume and the configMap), _items_ (Files in the configmap to mount), |
29+
| pvcMountpointClaim | list | `[]` | This section holds the information necessary to claim persistent volumes. If the section is used, each object listed can have the following attributes defined: _name_ (The name ot the persistent volume), _containerPath_ (The path inside the container to mount), _subPath_ (persistent volume subpath, optional) |
3030
| redis.affinity | object | `{}` | Affinity rules for the redis pods |
3131
| redis.enabled | bool | `false` | This specifies whether to use redis or not. |
3232
| redis.env | object | `{}` | This section holds a set of key, value pairs for environmental variables (ENV_VAR: value). NOTE: RUN_ARG is taken care of by the chart using _script_. |

applications/rapid-analysis/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ pvcMountpoint: []
6363
# _name_ (The name ot the persistent volume),
6464
# _containerPath_ (The path inside the container to mount),
6565
# _subPath_ (persistent volume subpath, optional)
66-
configMountpoint: []
67-
# -- This section holds the information necessary to claim persistent volumes.
66+
pvcMountpointClaim: []
67+
# -- This section holds the information necessary to mount configmaps.
6868
# If the section is used, each object listed can have the following attributes defined:
6969
# _name_ (The name of the persistent volume and the configMap),
7070
# _items_ (Files in the configmap to mount),
71-
pvcMountpointClaim: []
71+
configMountpoint: []
7272
# -- Adds an extra string to the release name.
7373
nameOverride: ""
7474
# -- Specify the deployed application name specifically. Overrides all other names.

0 commit comments

Comments
 (0)