rustdesk: Initial deployment
Rust Desk is a remote assistance software solution. The open source edition is sufficient for what I want to do with it, namely: help Mom and Dad troubleshoot issues on their PCs. Mom is currently having trouble with the Nextcloud sync client, so I need to be able to help her with that.
This commit is contained in:
36
rustdesk/kustomization.yaml
Normal file
36
rustdesk/kustomization.yaml
Normal file
@@ -0,0 +1,36 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
namespace: rustdesk
|
||||
|
||||
labels:
|
||||
- pairs:
|
||||
app.kubernetes.io/instance: rustdesk
|
||||
|
||||
resources:
|
||||
- namespace.yaml
|
||||
- rustdesk.yaml
|
||||
- network-policy.yaml
|
||||
|
||||
patches:
|
||||
- patch: |-
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: rustdesk
|
||||
spec:
|
||||
storageClassName: synology-iscsi
|
||||
|
||||
- patch: |-
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: rustdesk
|
||||
spec:
|
||||
externalIPs:
|
||||
- 172.30.0.150
|
||||
externalTrafficPolicy: Local
|
||||
|
||||
images:
|
||||
- name: docker.io/rustdesk/rustdesk-server
|
||||
newTag: 1.1.14
|
||||
Reference in New Issue
Block a user