Skip to content

Commit

Permalink
Still a little confused
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanHilt committed Nov 7, 2024
1 parent df2bf09 commit 32c3bb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions helm/dicom-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ A Helm chart for gen3 Dicom Server
| criticalService | string | `"false"` | Valid options are "true" or "false". If invalid option is set- the value will default to "false". |
| global.environment | string | `"default"` | Environment name. This should be the same as vpcname if you're doing an AWS deployment. Currently this is being used to share ALB's if you have multiple namespaces. Might be used other places too. |
| global.minAvialable | int | `1` | The minimum amount of pods that are available at all times if the PDB is deployed. |
| global.netPolicy | map | `{"enabled":false}` | Settings for network policies |
| global.pdb | bool | `false` | If the service will be deployed with a Pod Disruption Budget. Note- you need to have more than 2 replicas for the pdb to be deployed. |
| image | map | `{"pullPolicy":"Always","repository":"quay.io/cdis/gen3-orthanc","tag":"master"}` | Docker image information. |
| image.pullPolicy | string | `"Always"` | Docker pull policy. |
Expand Down
4 changes: 3 additions & 1 deletion helm/dicom-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.


# Global configuration
global:
# -- (string) Environment name. This should be the same as vpcname if you're doing an AWS deployment. Currently this is being used to share ALB's if you have multiple namespaces. Might be used other places too.
Expand All @@ -11,6 +10,9 @@ global:
pdb: false
# -- (int) The minimum amount of pods that are available at all times if the PDB is deployed.
minAvialable: 1
# -- (map) Settings for network policies
netPolicy:
enabled: false

# -- (bool) Whether Metrics are enabled.
metricsEnabled: false
Expand Down

0 comments on commit 32c3bb3

Please sign in to comment.