This chart allows to deploy ShinyProxy on Kubernetes.
$ helm repo add remche https://charts.remche.org
$ helm repo update
$ helm upgrade --install shinyproxy remche/shinyproxy -f config.yaml
See chart values.
You can specify ShinyProxy configuration like you would do in application.yaml. Relevant fields will be injected via ConfigMap and Secret.
The chart can add an Ingress rule :
ingress:
enabled: true
hosts:
- shiny.test
Default chart image is remche/shinyproxy. It embeds the ShinyProxy jar, 1col and a slightly modified 2col templates. You can specify you own image :
proxy:
image:
name: remche/shinyproxy
tag: 2.4.0
You can specify resources for ShinyProxy pod :
proxy:
resources:
requests:
cpu: 200m
memory: 512Mi
limits:
cpu: 300m
memory: 800Mi
You can change the default pods resources :
appPod:
resources:
requests:
cpu: 200m
memory: 100Mi
limits:
cpu: 300m
memory: 200Mi