74 lines
1.8 KiB
YAML
74 lines
1.8 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://ks.hsn.dev/helm.toolkit.fluxcd.io/helmrelease_v2beta1.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: tailscale
|
|
namespace: default
|
|
spec:
|
|
interval: 30m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 2.0.3
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjw-s
|
|
namespace: flux-system
|
|
maxHistory: 2
|
|
install:
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
retries: 3
|
|
uninstall:
|
|
keepHistory: false
|
|
values:
|
|
controllers:
|
|
main:
|
|
annotations:
|
|
reloader.stakater.com/auto: "true"
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: rockylinux
|
|
tag: 9
|
|
command: ["/bin/bash", "-c", "while true; do sleep 10; done"]
|
|
tailscale:
|
|
image:
|
|
repository: ghcr.io/tailscale/tailscale
|
|
tag: v1.52.0
|
|
env:
|
|
TZ: "America/Chicago"
|
|
SA_NAME: valinor-jump
|
|
TS_USERSPACE: true
|
|
TS_KUBE_SECRET: tailscale-state
|
|
TS_EXTRA_ARGS: --advertise-exit-node --ssh
|
|
TS_TAILSCALED_EXTRA_ARGS: --debug=0.0.0.0:2000
|
|
envFrom:
|
|
- secretRef:
|
|
name: tailscale-jump-secret
|
|
resources:
|
|
requests:
|
|
cpu: 5m
|
|
memory: 128M
|
|
limits:
|
|
memory: 256M
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 2000
|
|
serviceAccount:
|
|
name: tailscale
|
|
serviceMonitor:
|
|
main:
|
|
enabled: true
|
|
endpoints:
|
|
- port: http
|
|
scheme: http
|
|
path: /debug/metrics
|
|
interval: 1m
|
|
scrapeTimeout: 30s
|