mirror of
https://github.com/plcnk/charts.git
synced 2026-04-05 17:22:21 +00:00
Compare commits
13 Commits
cloudflare
...
wikijs-0.5
| Author | SHA1 | Date | |
|---|---|---|---|
| f135d2bab8 | |||
| a18b798693 | |||
| 3bfcc090f4 | |||
| c14495f98b | |||
| bccad5a6ae | |||
| d5f740ac9b | |||
| 048a50f51a | |||
| 5d954b8653 | |||
| a557fb6230 | |||
| b9c278bc2f | |||
| 516c77dd01 | |||
| 3fcf5839c7 | |||
| edd2e92213 |
43
.github/renovate.json5
vendored
43
.github/renovate.json5
vendored
@ -1,27 +1,30 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"github>plcnk/.github:default.json5",
|
||||
":semanticCommitTypeAll(chore)"
|
||||
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
||||
extends: [
|
||||
'github>plcnk/.github:default.json5',
|
||||
':semanticCommitTypeAll(chore)',
|
||||
],
|
||||
|
||||
"gitIgnoredAuthors": [
|
||||
"renovate[bot]@users.noreply.github.com",
|
||||
"178334506+plcnk-bot[bot]@users.noreply.github.com"
|
||||
gitIgnoredAuthors: [
|
||||
'renovate[bot]@users.noreply.github.com',
|
||||
'178334506+plcnk-bot[bot]@users.noreply.github.com',
|
||||
],
|
||||
|
||||
"regexManagers": [
|
||||
customManagers: [
|
||||
{
|
||||
"fileMatch": ["\\.yaml$"],
|
||||
"matchStrings": [
|
||||
"# ?renovate datasource=(?<datasource>.+?) depName=(?<depName>.+)\\n.+: [\"']?(?<currentValue>.+?)[\"']?\\n"
|
||||
]
|
||||
}
|
||||
customType: 'regex',
|
||||
fileMatch: [
|
||||
'\\.yaml$',
|
||||
],
|
||||
matchStrings: [
|
||||
'# ?renovate datasource=(?<datasource>.+?) depName=(?<depName>.+)\\n.+: ["\']?(?<currentValue>.+?)["\']?\\n',
|
||||
],
|
||||
},
|
||||
],
|
||||
"packageRules": [
|
||||
packageRules: [
|
||||
{
|
||||
"matchDatasources": ["helm"],
|
||||
"commitMessageTopic": "{{depName}} Helm release"
|
||||
}
|
||||
]
|
||||
matchDatasources: [
|
||||
'helm',
|
||||
],
|
||||
commitMessageTopic: '{{depName}} Helm release',
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
@ -4,9 +4,9 @@ description: Connect your resources to Cloudflare without a publicly routable IP
|
||||
home: https://github.com/plcnk/charts/tree/master/charts/cloudflare-tunnel
|
||||
icon: https://raw.githubusercontent.com/plcnk/charts/master/charts/cloudflare-tunnel/icon.svg
|
||||
type: application
|
||||
version: 0.3.1
|
||||
version: 0.5.1
|
||||
# renovate datasource=docker depName=cloudflare/cloudflared
|
||||
appVersion: "2024.10.1"
|
||||
appVersion: "2024.12.1"
|
||||
kubeVersion: ">=1.22.0-0"
|
||||
keywords:
|
||||
- cloudflared
|
||||
@ -22,7 +22,7 @@ sources:
|
||||
annotations:
|
||||
artifacthub.io/changes: |-
|
||||
- kind: changed
|
||||
description: Update cloudflare/cloudflared docker tag to v2024.10.1
|
||||
description: Update cloudflare/cloudflared docker tag to v2024.12.1
|
||||
artifacthub.io/links: |-
|
||||
- name: App Source
|
||||
url: https://github.com/cloudflare/cloudflared
|
||||
|
||||
@ -2,16 +2,16 @@
|
||||
|
||||
<img src="https://raw.githubusercontent.com/plcnk/charts/master/charts/cloudflare-tunnel/icon.svg" align="right" width="92" alt="cloudflare-tunnel logo">
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
Connect your resources to Cloudflare without a publicly routable IP address.
|
||||
|
||||
**Homepage:** <https://github.com/plcnk/charts/tree/master/charts/cloudflare-tunnel>
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised
|
||||
[here](https://github.com/plcnk/charts/issues/new?assignees=plcnk&labels=bug&template=bug_report.yaml&name=cloudflare-tunnel&version=0.3.1)**
|
||||
[here](https://github.com/plcnk/charts/issues/new?assignees=plcnk&labels=bug&template=bug_report.yaml&name=cloudflare-tunnel&version=0.5.1)**
|
||||
|
||||
## Source Code
|
||||
|
||||
@ -89,7 +89,7 @@ helm install cloudflare-tunnel plcnk/cloudflare-tunnel -f values.yaml
|
||||
| controllers.main.containers.app.env | object | See [values.yaml](./values.yaml) | Environment variables |
|
||||
| controllers.main.containers.app.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
|
||||
| controllers.main.containers.app.image.repository | string | `"cloudflare/cloudflared"` | Image repository |
|
||||
| controllers.main.containers.app.image.tag | string | `"2024.10.1"` | Image tag |
|
||||
| controllers.main.containers.app.image.tag | string | `"2024.12.1"` | Image tag |
|
||||
| controllers.main.containers.app.securityContext.allowPrivilegeEscalation | bool | `false` | Disable privilege escalations |
|
||||
| controllers.main.containers.app.securityContext.capabilities | object | `{"drop":["ALL"]}` | Drop all capabilities |
|
||||
| controllers.main.containers.app.securityContext.readOnlyRootFilesystem | bool | `true` | Mount the container's root filesystem as read-only |
|
||||
|
||||
@ -20,7 +20,7 @@ controllers:
|
||||
# -- Image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
# -- Image tag
|
||||
tag: 2024.10.1
|
||||
tag: 2024.12.1
|
||||
|
||||
# -- Environment variables
|
||||
# @default -- See [values.yaml](./values.yaml)
|
||||
|
||||
@ -4,6 +4,6 @@ dependencies:
|
||||
version: 3.3.2
|
||||
- name: postgresql
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 16.0.6
|
||||
digest: sha256:fba125a6177cf0263cba19a0d593c28ef4c7832e201e5eb34ec736702a038cfd
|
||||
generated: "2024-10-24T17:38:25.842100884Z"
|
||||
version: 16.3.0
|
||||
digest: sha256:2fee1ca11a11cea0f7e134b0ccc17160ebfc423313c230574a963774e4088693
|
||||
generated: "2024-12-11T05:07:43.932499686Z"
|
||||
|
||||
@ -4,7 +4,7 @@ description: A modern, lightweight and powerful wiki app built on NodeJS.
|
||||
home: https://github.com/plcnk/charts/tree/master/charts/wikijs
|
||||
icon: https://raw.githubusercontent.com/plcnk/charts/master/charts/wikijs/icon.svg
|
||||
type: application
|
||||
version: 0.2.5
|
||||
version: 0.5.0
|
||||
# renovate datasource=docker depName=ghcr.io/requarks/wiki
|
||||
appVersion: "2.5.305"
|
||||
kubeVersion: ">=1.22.0-0"
|
||||
@ -18,14 +18,14 @@ dependencies:
|
||||
version: 3.3.2
|
||||
- name: postgresql
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 16.0.6
|
||||
version: 16.3.0
|
||||
condition: postgresql.enabled
|
||||
sources:
|
||||
- https://github.com/Requarks/wiki
|
||||
annotations:
|
||||
artifacthub.io/changes: |-
|
||||
- kind: changed
|
||||
description: Update postgresql helm release to v16.0.6
|
||||
description: Update postgresql helm release to v16.3.0
|
||||
artifacthub.io/links: |-
|
||||
- name: App Source
|
||||
url: https://github.com/Requarks/wiki
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
<img src="https://raw.githubusercontent.com/plcnk/charts/master/charts/wikijs/icon.svg" align="right" width="92" alt="wikijs logo">
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
@ -11,7 +11,7 @@ A modern, lightweight and powerful wiki app built on NodeJS.
|
||||
**Homepage:** <https://github.com/plcnk/charts/tree/master/charts/wikijs>
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised
|
||||
[here](https://github.com/plcnk/charts/issues/new?assignees=plcnk&labels=bug&template=bug_report.yaml&name=wikijs&version=0.2.5)**
|
||||
[here](https://github.com/plcnk/charts/issues/new?assignees=plcnk&labels=bug&template=bug_report.yaml&name=wikijs&version=0.5.0)**
|
||||
|
||||
## Source Code
|
||||
|
||||
@ -26,7 +26,7 @@ Kubernetes: `>=1.22.0-0`
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| <https://bjw-s.github.io/helm-charts> | common | 3.3.2 |
|
||||
| <https://charts.bitnami.com/bitnami> | postgresql | 16.0.6 |
|
||||
| <https://charts.bitnami.com/bitnami> | postgresql | 16.3.0 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
Reference in New Issue
Block a user