diff --git a/helm/dicom-server/README.md b/helm/dicom-server/README.md index 2a54a280..78e0b4b4 100644 --- a/helm/dicom-server/README.md +++ b/helm/dicom-server/README.md @@ -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. | diff --git a/helm/dicom-server/values.yaml b/helm/dicom-server/values.yaml index 7bd4413c..81533e36 100644 --- a/helm/dicom-server/values.yaml +++ b/helm/dicom-server/values.yaml @@ -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. @@ -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