镜像自地址
https://github.com/devcm-repo/helm-charts.git
已同步 2026-09-11 13:22:57 +00:00
比较提交
28
次代码提交
@@ -1,28 +0,0 @@
|
|||||||
name: Release Charts
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Configure Git
|
|
||||||
run: |
|
|
||||||
git config user.name "$GITHUB_ACTOR"
|
|
||||||
git config user.email "[email protected]"
|
|
||||||
git submodule update --init
|
|
||||||
|
|
||||||
- name: Run chart-releaser
|
|
||||||
uses: helm/[email protected]
|
|
||||||
env:
|
|
||||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
-1
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
@@ -5,5 +5,4 @@ helm repo add devcm https://devcm-repo.github.io/helm-charts
|
|||||||
```
|
```
|
||||||
|
|
||||||
### charts
|
### charts
|
||||||
- tailscale-derp
|
https://github.com/devcm-repo/helm-charts
|
||||||
- rustdesk-server
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
apiVersion: v2
|
|
||||||
name: rustdesk-server
|
|
||||||
description: RustDesk Server Helm Chart
|
|
||||||
home: https://devcm-repo.github.io/helm-charts/
|
|
||||||
sources:
|
|
||||||
- https://github.com/devcm-repo/helm-charts
|
|
||||||
maintainers:
|
|
||||||
- name: dev.cm
|
|
||||||
email: [email protected]
|
|
||||||
url: https://github.com/devcm-repo
|
|
||||||
icon: https://rustdesk.com/favicon.ico
|
|
||||||
version: 0.0.6
|
|
||||||
appVersion: latest
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
strategy:
|
|
||||||
type: Recreate
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
spec:
|
|
||||||
{{- if .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml .Values.nodeSelector | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml .Values.affinity | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
containers:
|
|
||||||
- name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
image: "{{ .Values.image.name }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
ports:
|
|
||||||
- name: api
|
|
||||||
containerPort: 21114
|
|
||||||
protocol: TCP
|
|
||||||
- name: websocket-id
|
|
||||||
containerPort: 21118
|
|
||||||
protocol: TCP
|
|
||||||
- name: websocket-relay
|
|
||||||
containerPort: 21119
|
|
||||||
protocol: TCP
|
|
||||||
- name: signal
|
|
||||||
containerPort: 21115
|
|
||||||
hostPort: {{ .Values.rustdeskServer.ports.signal }}
|
|
||||||
protocol: TCP
|
|
||||||
- name: id
|
|
||||||
containerPort: 21116
|
|
||||||
hostPort: {{ .Values.rustdeskServer.ports.id }}
|
|
||||||
protocol: TCP
|
|
||||||
- name: id-udp
|
|
||||||
containerPort: 21116
|
|
||||||
hostPort: {{ .Values.rustdeskServer.ports.id }}
|
|
||||||
protocol: UDP
|
|
||||||
- name: relay
|
|
||||||
containerPort: 21117
|
|
||||||
hostPort: {{ .Values.rustdeskServer.ports.relay }}
|
|
||||||
protocol: TCP
|
|
||||||
env:
|
|
||||||
- name: ENCRYPTED_ONLY
|
|
||||||
value: "{{ if .Values.rustdeskServer.encryptedOnly }}1{{ else }}0{{ end }}"
|
|
||||||
- name: MUST_LOGIN
|
|
||||||
value: "{{ if .Values.rustdeskServer.mustLogin }}Y{{ else }}N{{ end }}"
|
|
||||||
- name: RELAY
|
|
||||||
value: "{{ .Values.rustdeskServer.server }}:{{ .Values.rustdeskServer.ports.relay }}"
|
|
||||||
- name: RUSTDESK_API_RUSTDESK_ID_SERVER
|
|
||||||
value: "{{ .Values.rustdeskApi.server }}"
|
|
||||||
- name: RUSTDESK_API_RUSTDESK_RELAY_SERVER
|
|
||||||
value: "{{ .Values.rustdeskApi.server }}"
|
|
||||||
- name: RUSTDESK_API_RUSTDESK_API_SERVER
|
|
||||||
value: "https://{{ .Values.rustdeskApi.server }}"
|
|
||||||
- name : RUSTDESK_API_RUSTDESK_WS_HOST
|
|
||||||
value: "wss://{{ .Values.rustdeskApi.server }}"
|
|
||||||
{{- if .Values.rustdeskServer.extraEnvs }}
|
|
||||||
{{- range .Values.rustdeskServer.extraEnvs }}
|
|
||||||
- name: {{ .name }}
|
|
||||||
value: "{{ .value }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
volumeMounts:
|
|
||||||
- name: data
|
|
||||||
mountPath: /data
|
|
||||||
subPath: server
|
|
||||||
- name: data
|
|
||||||
mountPath: /app/data
|
|
||||||
subPath: api
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
- name: data
|
|
||||||
{{- if .Values.persistence.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: "{{ .Release.Name }}-{{ .Chart.Name }}-data"
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
{{- if .Values.rustdeskApi.ingress.enabled }}
|
|
||||||
apiVersion: networking.k8s.io/v1
|
|
||||||
kind: Ingress
|
|
||||||
metadata:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
annotations:
|
|
||||||
{{- if .Values.rustdeskApi.ingress.annotations }}
|
|
||||||
{{- toYaml .Values.rustdeskApi.ingress.annotations | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
{{- if .Values.rustdeskApi.ingress.className }}
|
|
||||||
ingressClassName: {{ .Values.rustdeskApi.ingress.className }}
|
|
||||||
{{- end }}
|
|
||||||
rules:
|
|
||||||
- host: {{ .Values.rustdeskApi.ingress.host }}
|
|
||||||
http:
|
|
||||||
paths:
|
|
||||||
- path: /
|
|
||||||
pathType: Prefix
|
|
||||||
backend:
|
|
||||||
service:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
port:
|
|
||||||
number: {{ .Values.rustdeskApi.ports.api }}
|
|
||||||
- path: /ws/id
|
|
||||||
pathType: Prefix
|
|
||||||
backend:
|
|
||||||
service:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
port:
|
|
||||||
number: {{ .Values.rustdeskServer.ports.websocketId }}
|
|
||||||
- path: /ws/relay
|
|
||||||
pathType: Prefix
|
|
||||||
backend:
|
|
||||||
service:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
port:
|
|
||||||
number: {{ .Values.rustdeskServer.ports.websocketRelay }}
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
{{- if .Values.persistence.enabled }}
|
|
||||||
{{- $pvcName := printf "%s-%s-data" .Release.Name .Chart.Name }}
|
|
||||||
{{- if or (not .Values.persistence.checkExisting) (not (lookup "v1" "PersistentVolumeClaim" .Release.Namespace $pvcName)) }}
|
|
||||||
apiVersion: v1
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
metadata:
|
|
||||||
name: {{ $pvcName }}
|
|
||||||
{{- if .Values.persistence.data.annotations }}
|
|
||||||
annotations:
|
|
||||||
{{- range $key, $value := .Values.persistence.data.annotations }}
|
|
||||||
{{ $key }}: {{ $value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- {{ .Values.persistence.data.accessMode }}
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.data.size }}
|
|
||||||
{{- if .Values.persistence.data.storageClass }}
|
|
||||||
storageClassName: {{ .Values.persistence.data.storageClass }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
{{- if not (empty .Values.rustdeskApi.service.annotations) }}
|
|
||||||
annotations: {{- toYaml .Values.rustdeskApi.service.annotations | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
type: "{{ .Values.rustdeskApi.service.type }}"
|
|
||||||
selector:
|
|
||||||
app: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
ports:
|
|
||||||
- name: api
|
|
||||||
port: {{ .Values.rustdeskApi.ports.api }}
|
|
||||||
targetPort: 21114
|
|
||||||
protocol: TCP
|
|
||||||
- name: websocket-id
|
|
||||||
port: {{ .Values.rustdeskServer.ports.websocketId }}
|
|
||||||
targetPort: 21118
|
|
||||||
protocol: TCP
|
|
||||||
- name: websocket-relay
|
|
||||||
port: {{ .Values.rustdeskServer.ports.websocketRelay }}
|
|
||||||
targetPort: 21119
|
|
||||||
protocol: TCP
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
image:
|
|
||||||
name: lejianwen/rustdesk-server-s6
|
|
||||||
tag: latest
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
|
|
||||||
nodeSelector: {}
|
|
||||||
|
|
||||||
affinity: {}
|
|
||||||
|
|
||||||
persistence:
|
|
||||||
enabled: true
|
|
||||||
checkExisting: true
|
|
||||||
data:
|
|
||||||
storageClass: ""
|
|
||||||
size: 2Gi
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
annotations:
|
|
||||||
helm.sh/resource-policy: keep
|
|
||||||
|
|
||||||
rustdeskServer:
|
|
||||||
encryptedOnly: true
|
|
||||||
mustLogin: false
|
|
||||||
server: "rustdesk-server.example.com"
|
|
||||||
ports:
|
|
||||||
signal: 21115
|
|
||||||
id: 21116
|
|
||||||
relay: 21117
|
|
||||||
websocketId: 21118
|
|
||||||
websocketRelay: 21119
|
|
||||||
|
|
||||||
rustdeskApi:
|
|
||||||
server: "rustdesk-api.example.com"
|
|
||||||
ports:
|
|
||||||
api: 21114
|
|
||||||
service:
|
|
||||||
type: ClusterIP
|
|
||||||
annotations: {}
|
|
||||||
ingress:
|
|
||||||
enabled: true
|
|
||||||
className: ""
|
|
||||||
host: "rustdesk-api.example.com"
|
|
||||||
annotations: {}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
apiVersion: v2
|
|
||||||
name: tailscale-derp
|
|
||||||
description: Tailscale DERP Relay Server Helm Chart
|
|
||||||
home: https://devcm-repo.github.io/helm-charts/
|
|
||||||
sources:
|
|
||||||
- https://github.com/devcm-repo/helm-charts
|
|
||||||
maintainers:
|
|
||||||
- name: dev.cm
|
|
||||||
email: [email protected]
|
|
||||||
url: https://github.com/devcm-repo
|
|
||||||
icon: https://tailscale.com/files/apple-touch-icon.png
|
|
||||||
version: 0.0.7
|
|
||||||
appVersion: 1.82.0
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
# tailscale-derp Helm Chart
|
|
||||||
|
|
||||||
This Helm Chart is a Tailscale container deployment for a tailnet relay server (DERP).
|
|
||||||
|
|
||||||
## Installing the Helm Chart
|
|
||||||
|
|
||||||
```shell
|
|
||||||
helm repo add tailscale https://devcm-repo.github.io/helm-charts
|
|
||||||
helm install tailscale-derp tailscale/tailscale-derp
|
|
||||||
```
|
|
||||||
|
|
||||||
## Helm Chart Configuration Examples
|
|
||||||
|
|
||||||
A working configuration:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
hostname: derp.dev.cm
|
|
||||||
|
|
||||||
nodeSelector:
|
|
||||||
topology.kubernetes.io/region: cn-hk
|
|
||||||
```
|
|
||||||
|
|
||||||
## Helm Chart Values
|
|
||||||
|
|
||||||
| Key | Description | Default |
|
|
||||||
|---|---|---|
|
|
||||||
| `image.name` | Name of the container image to use. | `docker.io/sspreitzer/tailscale-derp` |
|
|
||||||
| `image.pullPolicy` | Kubernetes pullPolicy to use for starting the container image. | `IfNotPresent` |
|
|
||||||
| `service.type` | Kubernetes Service type. | `LoadBalancer` |
|
|
||||||
| `service.annotations` | A map/dict of Kubernetes Service annotations. | `{}` |
|
|
||||||
| `hostNetwork` | This service will be disabled when hostNetwork is enableds. | `false` |
|
|
||||||
| `nodeSelector` | A map/dict of Kubernetes Pod nodeSelector node labels. | `{}` |
|
|
||||||
| `extraVolumes` | Extra volumes to add to the deployment. | `[]` |
|
|
||||||
| `extraVolumeMounts` | Extra volume mounts to add to the container. Normally used with `extraVolumes`. | `[]` |
|
|
||||||
| `affinity` | A map/dict of Kubernetes Pod affinity rules. | `{}` |
|
|
||||||
| `derp.hostname` | Derp server hostname. | `'derp.examples.com'` |
|
|
||||||
| `derp.verify_clients` | Derp server will enable authentication. | `true` |
|
|
||||||
| `derp.certdir` | Start a derper with your own certificate. | `` |
|
|
||||||
| `derp.http_port` | The port on which to serve HTTP. Set to -1 to disable. | `80` |
|
|
||||||
| `derp.https_port` | The port on which to serve HTTPS. | `443` |
|
|
||||||
| `derp.stun_port` | The UDP port on which to serve STUN. | `3478` |
|
|
||||||
@@ -1,76 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
strategy:
|
|
||||||
type: Recreate
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
spec:
|
|
||||||
{{- if .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml .Values.nodeSelector | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml .Values.affinity | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{ - if .Values.hostNetwork }}
|
|
||||||
hostNetwork: true
|
|
||||||
{{ - end }}
|
|
||||||
containers:
|
|
||||||
- name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
image: "{{ .Values.image.name }}:v{{ .Chart.AppVersion }}"
|
|
||||||
ports:
|
|
||||||
{{- if gt (int .Values.derp.http_port) -1 }}
|
|
||||||
- name: http
|
|
||||||
hostPort: {{ .Values.derp.http_port }}
|
|
||||||
containerPort: {{ .Values.derp.http_port }}
|
|
||||||
protocol: TCP
|
|
||||||
{{- end }}
|
|
||||||
- name: https
|
|
||||||
hostPort: {{ .Values.derp.https_port }}
|
|
||||||
containerPort: {{ .Values.derp.https_port }}
|
|
||||||
protocol: TCP
|
|
||||||
- name: stun
|
|
||||||
hostPort: {{ .Values.derp.stun_port }}
|
|
||||||
containerPort: {{ .Values.derp.stun_port }}
|
|
||||||
protocol: UDP
|
|
||||||
args:
|
|
||||||
- "--hostname={{ .Values.derp.hostname }}"
|
|
||||||
- "--verify-clients={{ .Values.derp.verify_clients }}"
|
|
||||||
{{- if .Values.derp.certdir }}
|
|
||||||
- "--certmode=manual"
|
|
||||||
- "--certdir={{ .Values.derp.certdir }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.derp.http_port }}
|
|
||||||
- "--http-port={{ .Values.derp.http_port }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.derp.https_port }}
|
|
||||||
- "--a=:{{ .Values.derp.https_port }}"
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.derp.stun_port }}
|
|
||||||
- "--stun-port={{ .Values.derp.stun_port }}"
|
|
||||||
{{- end }}
|
|
||||||
volumeMounts:
|
|
||||||
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
|
|
||||||
{{- if .Values.derp.verify_clients }}
|
|
||||||
- mountPath: /var/run/tailscale/tailscaled.sock
|
|
||||||
name: tailscale-socket
|
|
||||||
{{- end }}
|
|
||||||
volumes:
|
|
||||||
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
|
||||||
{{- if .Values.derp.verify_clients }}
|
|
||||||
- hostPath:
|
|
||||||
path: /run/tailscale/tailscaled.sock
|
|
||||||
type: Socket
|
|
||||||
name: tailscale-socket
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
{{- if not .Values.hostNetwork }}
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
{{- if not (empty .Values.service.annotations) }}
|
|
||||||
annotations: {{- toYaml .Values.service.annotations | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
type: "{{ .Values.service.type }}"
|
|
||||||
selector:
|
|
||||||
app: "{{ .Release.Name }}-{{ .Chart.Name }}"
|
|
||||||
ports:
|
|
||||||
{{- if gt (int .Values.derp.http_port) -1 }}
|
|
||||||
- name: http
|
|
||||||
port: {{ .Values.derp.http_port }}
|
|
||||||
targetPort: {{ .Values.derp.http_port }}
|
|
||||||
{{- end }}
|
|
||||||
- name: https
|
|
||||||
port: {{ .Values.derp.https_port }}
|
|
||||||
targetPort: {{ .Values.derp.https_port }}
|
|
||||||
- name: stun
|
|
||||||
port: {{ .Values.derp.stun_port }}
|
|
||||||
targetPort: {{ .Values.derp.stun_port }}
|
|
||||||
protocol: UDP
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
image:
|
|
||||||
name: docker.io/devcm/tailscale-derp
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
|
|
||||||
service:
|
|
||||||
type: ClusterIP
|
|
||||||
annotations: {}
|
|
||||||
|
|
||||||
hostNetwork: false
|
|
||||||
|
|
||||||
nodeSelector: {}
|
|
||||||
|
|
||||||
affinity: {}
|
|
||||||
|
|
||||||
derp:
|
|
||||||
hostname: derp.examples.com
|
|
||||||
verify_clients: false
|
|
||||||
http_port: 80
|
|
||||||
https_port: 443
|
|
||||||
stun_port: 3478
|
|
||||||
+428
@@ -1,2 +1,430 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
entries:
|
entries:
|
||||||
|
aiapi:
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
created: "2026-05-01T14:34:34.79612822Z"
|
||||||
|
dependencies:
|
||||||
|
- condition: postgresql.enabled
|
||||||
|
name: postgresql
|
||||||
|
repository: oci://registry-1.docker.io/bitnamicharts
|
||||||
|
version: 18.6.2
|
||||||
|
- condition: valkey.enabled
|
||||||
|
name: valkey
|
||||||
|
repository: oci://registry-1.docker.io/bitnamicharts
|
||||||
|
version: 5.4.11
|
||||||
|
description: New API and CLIProxyAPI Helm Chart
|
||||||
|
digest: 81fb941801fd03c1fbe12f1d6c3fced948c890b9c634563b72134e8b4ae293e8
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: aiapi
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/aiapi-0.0.2/aiapi-0.0.2.tgz
|
||||||
|
version: 0.0.2
|
||||||
|
rustdesk-server:
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
created: "2026-02-13T09:38:25.163720908Z"
|
||||||
|
description: RustDesk Server Helm Chart
|
||||||
|
digest: d88012ec233492705ea5dd538c24204b0dbb34f3d0a94f69cdef8fc580032e72
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://rustdesk.com/favicon.ico
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: rustdesk-server
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/rustdesk-server-0.0.7/rustdesk-server-0.0.7.tgz
|
||||||
|
version: 0.0.7
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
created: "2025-07-21T02:17:28.71767036Z"
|
||||||
|
description: RustDesk Server Helm Chart
|
||||||
|
digest: e7aef11c4537d01b96de0019e074f871f7151c6b01a33b6c51d515136154a6ec
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://rustdesk.com/favicon.ico
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: rustdesk-server
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/rustdesk-server-0.0.6/rustdesk-server-0.0.6.tgz
|
||||||
|
version: 0.0.6
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
created: "2025-07-18T13:01:06.88497884Z"
|
||||||
|
description: RustDesk Server Helm Chart
|
||||||
|
digest: 6a6b5f6eb27f7f12ec2432217e4108c4424a5f5acb332df7ff41151d38b88e16
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://rustdesk.com/favicon.ico
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: rustdesk-server
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/rustdesk-server-0.0.5/rustdesk-server-0.0.5.tgz
|
||||||
|
version: 0.0.5
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
created: "2025-07-18T05:11:56.012489858Z"
|
||||||
|
description: RustDesk Server Helm Chart
|
||||||
|
digest: 4f8044ae9db8dffac0b6c51b9d961c33f87d4a98ad8ac8b246ffcf6a5dd99a8d
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://rustdesk.com/favicon.ico
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: rustdesk-server
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/rustdesk-server-0.0.4/rustdesk-server-0.0.4.tgz
|
||||||
|
version: 0.0.4
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
created: "2025-07-18T05:07:36.480866499Z"
|
||||||
|
description: RustDesk Server Helm Chart
|
||||||
|
digest: 23a5533a79a7c4804016c2499984b1456cae871f1158eb137a7209f5a02a9bec
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://rustdesk.com/favicon.ico
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: rustdesk-server
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/rustdesk-server-0.0.3/rustdesk-server-0.0.3.tgz
|
||||||
|
version: 0.0.3
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
created: "2025-07-17T15:03:09.877433971Z"
|
||||||
|
description: RustDesk Server Helm Chart
|
||||||
|
digest: 7a6214b35cf127044a3f627c4413391f10d1a228d688aeb218100c1addf4339e
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://rustdesk.com/favicon.ico
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: rustdesk-server
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/rustdesk-server-0.0.2/rustdesk-server-0.0.2.tgz
|
||||||
|
version: 0.0.2
|
||||||
|
tailscale-derp:
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: v1.90.6
|
||||||
|
created: "2026-02-13T09:38:25.385544409Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: f4b3f87cb8a887acfbec36d4a72cf9831362cbcc2c384de72e7c847d08c8ce29
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.10/tailscale-derp-0.0.10.tgz
|
||||||
|
version: 0.0.10
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: v1.86.2
|
||||||
|
created: "2025-08-01T10:19:48.696389729Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: 9492b3520d760df475f40cd03c79a01117206371c253c612ea4277441ce26b86
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.9/tailscale-derp-0.0.9.tgz
|
||||||
|
version: 0.0.9
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: v1.86.2
|
||||||
|
created: "2025-08-01T10:12:00.058893223Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: 097a709eb2ae092dc8f82c478f3cbfb6042ba80b7bb5880960ea96b8fc078cc9
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.8/tailscale-derp-0.0.8.tgz
|
||||||
|
version: 0.0.8
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 1.82.0
|
||||||
|
created: "2025-07-17T15:03:10.008354777Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: df1136dd1ac460598a6ba58a2dba0e5252f6339c3aad6859611dbfe49ddd031d
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.7/tailscale-derp-0.0.7.tgz
|
||||||
|
version: 0.0.7
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 1.82.0
|
||||||
|
created: "2025-04-09T03:57:56.194917779Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: 89d3e19112efb6348705cc9a2a7bcc96ae9361521f99e51ede8c272fbb451346
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.6/tailscale-derp-0.0.6.tgz
|
||||||
|
version: 0.0.6
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 1.78.1
|
||||||
|
created: "2024-12-13T07:18:19.666314845Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: c3b69f061708be3f220afb69b527359e569afb2718e4f13b58bd69852e8c4c02
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.5/tailscale-derp-0.0.5.tgz
|
||||||
|
version: 0.0.5
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 1.76.1
|
||||||
|
created: "2024-10-18T09:46:25.085522884Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: 146da3e241c8be293f6966ac6831dee7e65f273663106336c14378807fdc2f4b
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.4/tailscale-derp-0.0.4.tgz
|
||||||
|
version: 0.0.4
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 1.68.0
|
||||||
|
created: "2024-07-02T04:43:23.424123645Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: b1930bf7dc1edd3b1d389134a49364b9f74c7a99511b345df2354bcc47fd3e5e
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.3/tailscale-derp-0.0.3.tgz
|
||||||
|
version: 0.0.3
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 1.68.0
|
||||||
|
created: "2024-06-25T04:12:42.984985964Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: b2350da84f7647a8a317544f89b61dbacce413bf95cb262ab510e77fc5352a51
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.2/tailscale-derp-0.0.2.tgz
|
||||||
|
version: 0.0.2
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 1.68.0
|
||||||
|
created: "2024-06-25T02:46:17.742329785Z"
|
||||||
|
description: Tailscale DERP Relay Server Helm Chart
|
||||||
|
digest: 16b65dab933a464a7a14ffe03e3c8951afb6bf802774961893163ee3e59acd6e
|
||||||
|
home: https://devcm-repo.github.io/helm-charts/
|
||||||
|
icon: https://tailscale.com/files/apple-touch-icon.png
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
url: https://github.com/devcm-repo
|
||||||
|
name: tailscale-derp
|
||||||
|
sources:
|
||||||
|
- https://github.com/devcm-repo/helm-charts
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/tailscale-derp-0.0.1/tailscale-derp-0.0.1.tgz
|
||||||
|
version: 0.0.1
|
||||||
|
website:
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 0.0.6
|
||||||
|
created: "2026-09-08T06:12:10.271930399Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts
|
||||||
|
version: 5.0.1
|
||||||
|
description: Fillcode website Helm Chart
|
||||||
|
digest: 96df2bfada4e70a4d636b808eef0696f22328965393893d3e0bd5f8ada92213d
|
||||||
|
home: https://fillcode.com
|
||||||
|
kubeVersion: '>=1.31.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
name: website
|
||||||
|
sources:
|
||||||
|
- https://git.dev.cm/fillcode.com/website
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/website-0.0.6/website-0.0.6.tgz
|
||||||
|
version: 0.0.6
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 0.0.5
|
||||||
|
created: "2026-09-07T10:15:16.773398948Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts
|
||||||
|
version: 5.0.1
|
||||||
|
description: Fillcode website Helm Chart
|
||||||
|
digest: 4be93bc2319abb9288e8585da69f2ba589c097f6f2b3be5f2b32b5326545b455
|
||||||
|
home: https://fillcode.com
|
||||||
|
kubeVersion: '>=1.31.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
name: website
|
||||||
|
sources:
|
||||||
|
- https://git.dev.cm/fillcode.com/website
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/website-0.0.5/website-0.0.5.tgz
|
||||||
|
version: 0.0.5
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 0.0.4
|
||||||
|
created: "2026-08-26T06:27:27.484226938Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts
|
||||||
|
version: 5.0.1
|
||||||
|
description: Fillcode website Helm Chart
|
||||||
|
digest: ccee4689e3f4e9f76599f26f2fb8ae9ae2fb06728941d4ac8610d691813a2c7d
|
||||||
|
home: https://fillcode.com
|
||||||
|
kubeVersion: '>=1.31.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
name: website
|
||||||
|
sources:
|
||||||
|
- https://git.dev.cm/fillcode.com/website
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/website-0.0.4/website-0.0.4.tgz
|
||||||
|
version: 0.0.4
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 0.0.3
|
||||||
|
created: "2026-08-26T04:23:36.4405113Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts
|
||||||
|
version: 5.0.1
|
||||||
|
description: Fillcode website Helm Chart
|
||||||
|
digest: e8e1e2bb9bb869ecf543b18abee3aa0a29b7e534b0023f3207c3923f2120a92f
|
||||||
|
home: https://fillcode.com
|
||||||
|
kubeVersion: '>=1.31.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
name: website
|
||||||
|
sources:
|
||||||
|
- https://git.dev.cm/fillcode.com/website
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/website-0.0.3/website-0.0.3.tgz
|
||||||
|
version: 0.0.3
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 0.0.2
|
||||||
|
created: "2026-08-24T08:19:31.923432031Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts
|
||||||
|
version: 5.0.1
|
||||||
|
description: Fillcode website Helm Chart
|
||||||
|
digest: 8a4c4a70b268079f9bcd3ecc0b46d9b5f38721c6ce9b5f9c665eb5ba51f09b42
|
||||||
|
home: https://fillcode.com
|
||||||
|
kubeVersion: '>=1.31.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
name: website
|
||||||
|
sources:
|
||||||
|
- https://git.dev.cm/fillcode.com/website
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/website-0.0.2/website-0.0.2.tgz
|
||||||
|
version: 0.0.2
|
||||||
|
- apiVersion: v2
|
||||||
|
appVersion: 0.0.1
|
||||||
|
created: "2026-08-24T07:31:11.798742235Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts
|
||||||
|
version: 5.0.1
|
||||||
|
description: Fillcode website Helm Chart
|
||||||
|
digest: a86c297db1a41f8e06462e68c0e2e40c127c6f927b15eae40573cd6fe3dc7b23
|
||||||
|
home: https://fillcode.com
|
||||||
|
kubeVersion: '>=1.31.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: [email protected]
|
||||||
|
name: dev.cm
|
||||||
|
name: website
|
||||||
|
sources:
|
||||||
|
- https://git.dev.cm/fillcode.com/website
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://github.com/devcm-repo/helm-charts/releases/download/website-0.0.1/website-0.0.1.tgz
|
||||||
|
version: 0.0.1
|
||||||
|
generated: "2026-09-08T06:12:10.271982918Z"
|
||||||
|
|||||||
在新议题中引用
屏蔽一个用户