diff --git a/apps/apps/rustdesk/helmchart.yaml b/apps/apps/rustdesk/helmchart.yaml new file mode 100644 index 0000000..006613a --- /dev/null +++ b/apps/apps/rustdesk/helmchart.yaml @@ -0,0 +1,32 @@ +apiVersion: helm.cattle.io/v1 +kind: HelmChart +metadata: + name: rustdesk + namespace: apps +spec: + repo: https://devcm-repo.github.io/helm-charts + chart: rustdesk-server + targetNamespace: apps + version: 0.0.1 + valuesContent: |- + nodeSelector: + kubernetes.io/hostname: tcd + + rustdeskServer: + encryptedOnly: true + mustLogin: true + server: desk-server.dev.cm + extraEnvs: + - name: TZ + value: "Asia/Shanghai" + + rustdeskApi: + server: desk.dev.cm + ingress: + enabled: true + className: "nginx" + host: desk.dev.cm + annotations: + nginx.ingress.kubernetes.io/proxy-read-timeout: "3600" + nginx.ingress.kubernetes.io/proxy-send-timeout: "3600" + nginx.ingress.kubernetes.io/enable-websocket: "true" diff --git a/apps/infra/monitor/prometheus/helmchart.yaml b/apps/infra/monitor/prometheus/helmchart.yaml index 955f991..69b8530 100644 --- a/apps/infra/monitor/prometheus/helmchart.yaml +++ b/apps/infra/monitor/prometheus/helmchart.yaml @@ -7,7 +7,7 @@ spec: repo: https://prometheus-community.github.io/helm-charts chart: kube-prometheus-stack targetNamespace: infra-monitor - version: 75.9.0 + version: 75.11.0 valuesContent: |- kubeControllerManager: enabled: false diff --git a/install/README.md b/install/README.md index 8f8c069..af0d271 100644 --- a/install/README.md +++ b/install/README.md @@ -60,7 +60,7 @@ mkdir -p /etc/rancher/k3s && vim /etc/rancher/k3s/config.yaml ```shell curl -sfL https://get.k3s.io | \ - INSTALL_K3S_VERSION=v1.33.1+k3s1 \ + INSTALL_K3S_VERSION=v1.33.2+k3s1 \ sh -s - server ``` @@ -70,7 +70,7 @@ curl -sfL https://get.k3s.io | \ ```shell curl -sfL https://rancher-mirror.rancher.cn/k3s/k3s-install.sh | \ - INSTALL_K3S_VERSION=v1.33.1+k3s1 \ + INSTALL_K3S_VERSION=v1.33.2+k3s1 \ INSTALL_K3S_MIRROR=cn \ sh -s - server ```