Skip to content

Commit

Permalink
Replace nil with null (#766)
Browse files Browse the repository at this point in the history
  • Loading branch information
bstadlbauer committed Jul 13, 2023
1 parent 7493355 commit 649ada5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ The following table lists the configurable parameters of the Dask-kubernetes-ope
| `metrics.worker.podMonitor.jobLabel` | The label to use to retrieve the job name from. | `""` |
| `metrics.worker.podMonitor.podTargetLabels` | PodTargetLabels transfers labels on the Kubernetes Pod onto the target. | `["dask.org/cluster-name", "dask.org/workergroup-name"]` |
| `metrics.worker.podMonitor.metricRelabelings` | MetricRelabelConfigs to apply to samples before ingestion. | `[]` |
| `workerAllocation.size` | | `"nil"` |
| `workerAllocation.delay` | | `"nil"` |
| `workerAllocation.size` | | `null` |
| `workerAllocation.delay` | | `null` |



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ metrics:
metricRelabelings: [] # MetricRelabelConfigs to apply to samples before ingestion.

workerAllocation:
size: nil
delay: nil
size: null
delay: null

0 comments on commit 649ada5

Please sign in to comment.