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.
37 lines
607 B
YAML
37 lines
607 B
YAML
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
|