1
0
镜像自地址 https://github.com/devcm-repo/helm-charts.git 已同步 2026-06-06 04:11:05 +00:00

feat(images): submit images

这个提交包含在:
2024-06-24 18:11:41 +08:00
未验证
父节点 16a1552c54
当前提交 ba7a39622a
修改 5 个文件,包含 115 行新增0 行删除
+13
查看文件
@@ -0,0 +1,13 @@
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: admin@dev.cm
url: https://github.com/devcm-repo
icon: https://tailscale.com/files/apple-touch-icon.png
version: 0.0.1
appVersion: 1.44.0
+38
查看文件
@@ -0,0 +1,38 @@
# 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://spreitzer.ch/helm-tailscale
helm install tailscale-derp tailscale/tailscale-derp
```
## Helm Chart Configuration Examples
A working configuration:
```yaml
service:
annotations:
service.beta.kubernetes.io/azure-dns-label-name: my-derp-01
hostname: my-derp-01.switzerlandnorth.cloudapp.azure.com
nodeSelector:
topology.kubernetes.io/region: switzerlandnorth
topology.kubernetes.io/zone: switzerlandnorth-1
```
## 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. | `{}` |
| `hostname` | DERP hostname to use. Must be the same as of the derpMap in the tailnet ACL. | `derp.example.com` |
| `nodeSelector` | A map/dict of Kubernetes Pod nodeSelector node labels. | `{}` |
| `affinity` | A map/dict of Kubernetes Pod affinity rules. | `{}` |
@@ -0,0 +1,31 @@
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 not (empty .Values.nodeSelector) }}
nodeSelector: {{- toYaml .Values.nodeSelector | nindent 8 }}
{{- end }}
{{- if not (empty .Values.affinity) }}
affinity: {{- toYaml .Values.affinity | nindent 8 }}
{{- end }}
containers:
- name: "{{ .Release.Name }}-{{ .Chart.Name }}"
image: "{{ .Values.image.name }}:v{{ .Chart.AppVersion }}"
ports:
- containerPort: 80
- containerPort: 443
- containerPort: 3478
args:
- "--hostname={{ .Values.hostname }}"
@@ -0,0 +1,21 @@
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:
- name: http
port: 80
targetPort: 80
- name: https
port: 443
targetPort: 443
- name: stun
port: 3478
targetPort: 3478
+12
查看文件
@@ -0,0 +1,12 @@
image:
name: docker.io/sspreitzer/tailscale-derp
pullPolicy: IfNotPresent
service:
type: LoadBalancer
annotations: {}
hostname: 'derp.example.com'
nodeSelector: {}
affinity: {}