Skip to content

Commit a5b93ac

Browse files
committed
Merge remote-tracking branch 'pkalemba/master'
2 parents 953d146 + a0f6107 commit a5b93ac

4 files changed

Lines changed: 7 additions & 1 deletion

File tree

docs/missing-container-metrics/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docs/missing-container-metrics/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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 |

docs/missing-container-metrics/templates/daemon-set.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ spec:
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

docs/missing-container-metrics/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ podAnnotations:
2121
podSecurityContext: {}
2222
# fsGroup: 2000
2323

24+
priorityClassName: ""
25+
2426
securityContext: {}
2527
# capabilities:
2628
# drop:

0 commit comments

Comments
 (0)