rustdesk 2
This commit is contained in:
@@ -8,7 +8,6 @@ metadata:
|
|||||||
app.kubernetes.io/version: 1.1.14
|
app.kubernetes.io/version: 1.1.14
|
||||||
helm.sh/chart: rustdesk-server-oss-0.2.2
|
helm.sh/chart: rustdesk-server-oss-0.2.2
|
||||||
name: rustdesk-rustdesk-server-oss
|
name: rustdesk-rustdesk-server-oss
|
||||||
namespace: rustdesk
|
|
||||||
annotations:
|
annotations:
|
||||||
io.cilium/lb-ipam-ips: 192.168.0.182
|
io.cilium/lb-ipam-ips: 192.168.0.182
|
||||||
spec:
|
spec:
|
||||||
@@ -66,7 +65,7 @@ spec:
|
|||||||
- _
|
- _
|
||||||
command:
|
command:
|
||||||
- hbbr
|
- hbbr
|
||||||
image: docker.io/rustdesk/rustdesk-server:1.1.14
|
image: ghcr.io/rustdesk/rustdesk-server:1.1.14
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
@@ -93,7 +92,7 @@ spec:
|
|||||||
- _
|
- _
|
||||||
command:
|
command:
|
||||||
- hbbs
|
- hbbs
|
||||||
image: docker.io/rustdesk/rustdesk-server:1.1.14
|
image: ghcr.io/rustdesk/rustdesk-server:1.1.14
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
|
|||||||
@@ -9,3 +9,4 @@ helmCharts:
|
|||||||
releaseName: rustdesk
|
releaseName: rustdesk
|
||||||
includeCRDs: true
|
includeCRDs: true
|
||||||
namespace: rustdesk
|
namespace: rustdesk
|
||||||
|
valuesFile: values.yaml
|
||||||
|
|||||||
107
rustdesk/src/values.yaml
Normal file
107
rustdesk/src/values.yaml
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
replicaCount: 1
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/rustdesk/rustdesk-server
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: 1.1.14
|
||||||
|
|
||||||
|
imagePullSecrets: []
|
||||||
|
nameOverride: ""
|
||||||
|
fullnameOverride: ""
|
||||||
|
|
||||||
|
podAnnotations: {}
|
||||||
|
podLabels: {}
|
||||||
|
|
||||||
|
podSecurityContext: {} # fsGroup: 2000
|
||||||
|
|
||||||
|
securityContext: {}
|
||||||
|
# capabilities:
|
||||||
|
# drop:
|
||||||
|
# - ALL
|
||||||
|
# readOnlyRootFilesystem: true
|
||||||
|
# runAsNonRoot: true
|
||||||
|
# runAsUser: 1000
|
||||||
|
|
||||||
|
service:
|
||||||
|
type: LoadBalancer
|
||||||
|
annotations:
|
||||||
|
io.cilium/lb-ipam-ips: 192.168.0.182
|
||||||
|
externalTrafficPolicy: Cluster
|
||||||
|
loadBalancerIP: null
|
||||||
|
hbbr:
|
||||||
|
replayPort:
|
||||||
|
port: 21117
|
||||||
|
targetPort: 21117
|
||||||
|
clientPort:
|
||||||
|
enable: false
|
||||||
|
port: 21119
|
||||||
|
targetPort: 21119
|
||||||
|
hbbs:
|
||||||
|
natPort:
|
||||||
|
port: 21115
|
||||||
|
targetPort: 21115
|
||||||
|
registryPort:
|
||||||
|
port: 21116
|
||||||
|
targetPort: 21116
|
||||||
|
heartbeatPort:
|
||||||
|
port: 21116
|
||||||
|
targetPort: 21116
|
||||||
|
webPort:
|
||||||
|
port: 21118
|
||||||
|
targetPort: 21118
|
||||||
|
enable: false
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: false
|
||||||
|
className: ""
|
||||||
|
annotations: {}
|
||||||
|
# kubernetes.io/ingress.class: nginx
|
||||||
|
# kubernetes.io/tls-acme: "true"
|
||||||
|
hosts:
|
||||||
|
- chart-example.local
|
||||||
|
tls: []
|
||||||
|
# - secretName: chart-example-tls
|
||||||
|
# hosts:
|
||||||
|
# - chart-example.local
|
||||||
|
|
||||||
|
resources:
|
||||||
|
hbbrResource: {}
|
||||||
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||||
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||||
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
||||||
|
# limits:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
# requests:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
hbbsResource: {}
|
||||||
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||||
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||||
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
||||||
|
# limits:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
# requests:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
|
||||||
|
# Additional volumes on the output Deployment definition.
|
||||||
|
volume: {}
|
||||||
|
|
||||||
|
# - name: foo
|
||||||
|
# secret:
|
||||||
|
# secretName: mysecret
|
||||||
|
# optional: false
|
||||||
|
|
||||||
|
# - name: foo
|
||||||
|
# mountPath: "/etc/foo"
|
||||||
|
# readOnly: true
|
||||||
|
|
||||||
|
nodeSelector: {}
|
||||||
|
|
||||||
|
tolerations: []
|
||||||
|
|
||||||
|
affinity: {}
|
||||||
Reference in New Issue
Block a user