File tree Expand file tree Collapse file tree
docs/missing-container-metrics Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.3.1
18+ version : 0.4.0
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ $ helm install my-release-name missing-container-metrics/missing-container-metri
3535| fullnameOverride | Override the generated release name. Defaults to .Release.Name. | |
3636| podAnnotations | Annotations for the started pods | ` {"prometheus.io/scrape": "true", "prometheus.io/port": "3001"} ` |
3737| podSecurityContext | Set the security context for the pods | |
38+ | priorityClassName | Name of the existing priority class to be used by pod(s) | ` "" ` |
3839| securityContext | Set the security context for the container in the pods | |
3940| resources | CPU/memory resource requests/limits | ` {} ` |
4041| tolerations | Tolerations used for pod scheduling |
Original file line number Diff line number Diff line change 2323 {{- end }}
2424 securityContext :
2525 {{- toYaml .Values.podSecurityContext | nindent 8 }}
26+ {{- if .Values.priorityClassName }}
27+ priorityClassName : {{ .Values.priorityClassName }}
28+ {{- end }}
2629 volumes :
2730 {{- if .Values.useDocker}}
2831 - name : dockersock
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ podAnnotations:
2121podSecurityContext : {}
2222 # fsGroup: 2000
2323
24+ priorityClassName : " "
25+
2426securityContext : {}
2527 # capabilities:
2628 # drop:
You can’t perform that action at this time.
0 commit comments