Skip to content

Commit

Permalink
[prometheus-adapter] bugfix psp port range (prometheus-community#135)
Browse files Browse the repository at this point in the history
Fix the bug in prometheus adapter psp where the port range defined was incorrect max > min.

Signed-off-by: Ahmed Nasir <ahmednasir91@gmail.com>
  • Loading branch information
ahmednasir91 authored Sep 23, 2020
1 parent 1a2157d commit 5b25a9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/prometheus-adapter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: prometheus-adapter
version: 2.6.1
version: 2.6.2
appVersion: v0.7.0
description: A Helm chart for k8s prometheus adapter
home: https://github.com/DirectXMan12/k8s-prometheus-adapter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ spec:
runAsUser:
rule: MustRunAs
ranges:
- max: 1024
min: 65535
- min: 1024
max: 65535
seLinux:
rule: RunAsAny
supplementalGroups:
Expand Down

0 comments on commit 5b25a9b

Please sign in to comment.