Skip to content

Commit

Permalink
Merge pull request #7 from unpoller/fix_readiness
Browse files Browse the repository at this point in the history
fix(chart): fix the readiness probe name + release chart6
  • Loading branch information
jlpedrosa authored May 9, 2024
2 parents 97b4557 + 27aaba5 commit 2efaf50
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/unpoller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description: |
**Note**: *This is a best effort to keep this chart working for kubernetes.*
type: application
version: "2.11.2-Chart5"
version: "2.11.2-Chart6"
appVersion: "v2.11.2"
keywords:
- unifi
Expand Down
6 changes: 3 additions & 3 deletions charts/unpoller/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# unpoller

![Version: 2.11.2-Chart5](https://img.shields.io/badge/Version-2.11.2--Chart5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.11.2](https://img.shields.io/badge/AppVersion-v2.11.2-informational?style=flat-square)
![Version: 2.11.2-Chart6](https://img.shields.io/badge/Version-2.11.2--Chart6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.11.2](https://img.shields.io/badge/AppVersion-v2.11.2-informational?style=flat-square)

A Helm chart for unpoller, a unifi prometheus exporter. This chart helps deploy Unpoller (unifi metrics exporter)
in kubernetes clusters.
Expand Down Expand Up @@ -38,14 +38,14 @@ See further documentation in how to install unpoller in Kubernetes in http://unp
| image.tag | string | `""` | |
| imagePullSecrets | list | `[]` | |
| livenessProbe.httpGet.path | string | `"/"` | |
| livenessProbe.httpGet.port | string | `"http"` | |
| livenessProbe.httpGet.port | string | `"tcp"` | |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | |
| readinessProbe.httpGet.path | string | `"/"` | |
| readinessProbe.httpGet.port | string | `"http"` | |
| readinessProbe.httpGet.port | string | `"tcp"` | |
| replicaCount | int | `1` | |
| resources | object | `{}` | |
| securityContext | object | `{}` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/unpoller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ resources: {}
livenessProbe:
httpGet:
path: /
port: http
port: tcp
readinessProbe:
httpGet:
path: /
port: http
port: tcp

nodeSelector: {}

Expand Down

0 comments on commit 2efaf50

Please sign in to comment.