Skip to content

Commit 173ea58

Browse files
committed
Hmm
1 parent 5378fcf commit 173ea58

9 files changed

+21
-14
lines changed

.ci/repo-config.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
excluded-charts-lint: []
2-
3-
excluded-charts-install: []
1+
excluded-charts-lint:
2+
- chart1
3+
excluded-charts-install:
4+
- chart2

charts/apps/piped/Chart.lock

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
dependencies:
2+
- name: common
3+
repository: https://bjw-s.github.io/helm-charts
4+
version: 1.5.1
5+
- name: postgresql
6+
repository: https://charts.bitnami.com/bitnami
7+
version: 15.5.38
8+
digest: sha256:23bd168fe9b8d24e9dfe2174e36ee05c5a2600e27a717b47afb228868e9bf3bc
9+
generated: "2024-11-01T07:19:54.013986522+02:00"

charts/apps/piped/Chart.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sources:
1010
- https://github.com/TeamPiped/piped-proxy
1111
keywords:
1212
- streaming
13-
version: 6.1.0
13+
version: 6.1.1
1414
appVersion: latest
1515
kubeVersion: ">=1.26.0-0"
1616
maintainers:
@@ -28,6 +28,4 @@ dependencies:
2828
annotations:
2929
artifacthub.io/changes: |-
3030
- kind: changed
31-
description: Default helm values now include current latest manifest index of the image
32-
- kind: changed
33-
description: Only support Kubernetes 1.26 and above.
31+
description: Updated readme

charts/apps/piped/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# piped
22

3-
![Version: 6.0.4](https://img.shields.io/badge/Version-6.0.4-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
3+
![Version: 6.1.0](https://img.shields.io/badge/Version-6.1.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
44

55
Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.
66

@@ -12,7 +12,7 @@ Piped is an alternative privacy-friendly YouTube frontend which is efficient by
1212

1313
## Requirements
1414

15-
Kubernetes: `>=1.22.0-0`
15+
Kubernetes: `>=1.26.0-0`
1616

1717
## Dependencies
1818

@@ -45,7 +45,7 @@ The following table contains an overview of available values and their descripti
4545
| backend.enabled | bool | `true` | |
4646
| backend.image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
4747
| backend.image.repository | string | `"1337kavin/piped"` | image repository |
48-
| backend.image.tag | string | `nil` | image tag @chart.appVersion |
48+
| backend.image.tag | string | `"latest@sha256:18e77857414236edc7245bebb3fb8ab3ac49c44bd76701bfce24f6ba0170d4b8"` | image tag @chart.appVersion |
4949
| backend.service.main.enabled | bool | `true` | |
5050
| backend.service.main.ports.http.enabled | bool | `true` | |
5151
| backend.service.main.ports.http.port | int | `8080` | |
@@ -60,7 +60,7 @@ The following table contains an overview of available values and their descripti
6060
| frontend.enabled | bool | `true` | |
6161
| frontend.image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
6262
| frontend.image.repository | string | `"1337kavin/piped-frontend"` | image repository |
63-
| frontend.image.tag | string | `nil` | image tag @chart.appVersion |
63+
| frontend.image.tag | string | `"latest@sha256:96b746dc7a538d0f5a658864d9162be542c2db49f16f3cc8214878e39dec8504"` | image tag |
6464
| frontend.service.main.enabled | bool | `true` | |
6565
| frontend.service.main.ports.http.enabled | bool | `true` | |
6666
| frontend.service.main.ports.http.port | int | `80` | |
@@ -113,7 +113,7 @@ The following table contains an overview of available values and their descripti
113113
| ytproxy.enabled | bool | `true` | |
114114
| ytproxy.image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
115115
| ytproxy.image.repository | string | `"1337kavin/piped-proxy"` | image repository |
116-
| ytproxy.image.tag | string | `nil` | image tag @chart.appVersion |
116+
| ytproxy.image.tag | string | `"latest@sha256:833ca24c048619c9cd6fe58e2d210bfc7b1e43875ba5108aeddea0b171f04dbd"` | image tag |
117117
| ytproxy.service.main.enabled | bool | `true` | |
118118
| ytproxy.service.main.ports.http.enabled | bool | `true` | |
119119
| ytproxy.service.main.ports.http.port | int | `8080` | |
@@ -125,4 +125,4 @@ The following table contains an overview of available values and their descripti
125125
</details>
126126

127127
----------------------------------------------
128-
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
128+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
-27.5 KB
Binary file not shown.
27.8 KB
Binary file not shown.
-57.3 KB
Binary file not shown.
Binary file not shown.

charts/apps/piped/values.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ frontend:
3535
# -- image repository
3636
repository: 1337kavin/piped-frontend
3737
# -- image tag
38-
# yamllint disable-line rule:line-length
3938
tag: "latest@sha256:96b746dc7a538d0f5a658864d9162be542c2db49f16f3cc8214878e39dec8504" # Manifest index
4039
# -- image pull policy
4140
pullPolicy: IfNotPresent

0 commit comments

Comments
 (0)