Skip to content

oslo254804746/rustdesk-server-helm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

中文文档

English

Introduction

This is a chart for rustdesk-server

Configuration Options

Port Configuration

According to the official documentation of rustdesk, there are five ports in total, 21118-21119 are web ports, which are not required to be opened,

and 21116 needs to include TCP/UDP. The default PortType is ClusterIP, which can be modified to NodePort or Proxy by yourself through like traefik crd

portConfigs:
  hbbr:
    type: ClusterIP
    replayPort:
      port: 21117
      targetPort: 21117
    clientPort:
      enable: false
      port: 21119
      targetPort: 21119
  hbbs:
      type: ClusterIP
      natPort:
        port: 21115
        protocol: TCP
        targetPort: 21115
      registryPort:
        port: 21116
        targetPort: 21116
      heartbeatPort:
        port: 21116
        targetPort: 21116
      webPort:
        port: 21118
        targetPort: 21118
        enable: false
        protocol: TCP

Volume Configuration

The default is EmptyDir, which is shared by two containers, storing pubKey and SQLite data

volumes:
  - name: rustdesk-data
    emptyDir: {}

You can modify it yourself, such as changing it to hostPath

volumes:
  - name: rustdesk-data
    hostPath:
      path: /mnt/rustdesk/

Installation

cd to the directory

helm install rustdesk .

About

A Helm Chart to Deploy RustDesk Self-host Server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages