Skip to content

Commit

Permalink
fix duplication for livenessProbe and readinessProbe
Browse files Browse the repository at this point in the history
  • Loading branch information
oussama Dahmaz authored and oussama Dahmaz committed Nov 13, 2024
1 parent 365f0b9 commit e3065ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
6 changes: 3 additions & 3 deletions charts/homarr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: homarr
description: A Helm chart to deploy homarr for Kubernetes
home: https://oben01.github.io/charts/charts/homarr/
type: application
version: 1.3.3
version: 1.3.4
# renovate datasource=docker depName=ghcr.io/ajnart/homarr
appVersion: "0.15.7"
icon: https://raw.githubusercontent.com/oben01/charts/main/charts/homarr/icon.svg
Expand All @@ -18,8 +18,8 @@ annotations:
fingerprint: FA3F63F603B62356663A88F073AE49623786E060
url: https://oben01.github.io/charts/pgp_keys.asc
artifacthub.io/changes: |-
- kind: changed
description: Update ghcr.io/ajnart/homarr docker tag to v0.15.7
- kind: fixed
description: fix duplication for livenessProbe and readinessProbe
artifacthub.io/links: |-
- name: App Source
url: https://github.com/ajnart/homarr
Expand Down
4 changes: 2 additions & 2 deletions charts/homarr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://raw.githubusercontent.com/oben01/charts/main/charts/homarr/icon.svg" align="right" width="92" alt="homarr logo">

![Version: 1.3.3](https://img.shields.io/badge/Version-1.3.3-informational?style=flat)
![Version: 1.3.4](https://img.shields.io/badge/Version-1.3.4-informational?style=flat)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat)
![AppVersion: 0.15.7](https://img.shields.io/badge/AppVersion-0.15.7-informational?style=flat)

Expand All @@ -11,7 +11,7 @@ A Helm chart to deploy homarr for Kubernetes
**Homepage:** <https://oben01.github.io/charts/charts/homarr/>

**This chart is not maintained by the upstream project and any issues with the chart should be raised
[here](https://github.com/oben01/charts/issues/new?assignees=oben01&labels=bug&template=bug_report.yaml&name=homarr&version=1.3.3)**
[here](https://github.com/oben01/charts/issues/new?assignees=oben01&labels=bug&template=bug_report.yaml&name=homarr&version=1.3.4)**

## Source Code

Expand Down
8 changes: 0 additions & 8 deletions charts/homarr/templates/homarr-dc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,8 @@ spec:
protocol: TCP
livenessProbe:
{{ toYaml .Values.livenessProbe | indent 12 }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
failureThreshold: {{ .Values.livenessProbe.failureThreshold }}
readinessProbe:
{{ toYaml .Values.readinessProbe | indent 12 }}
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
env:
{{- range $key, $value := .Values.env }}
- name: {{ $key }}
Expand Down

0 comments on commit e3065ab

Please sign in to comment.