Warning
This chart is not maintained anymore. You will find a maintained and improved version at https://gitlab.com/devxy/helm/shinyproxy.
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.yamlSee 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.testDefault 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.0You can specify resources for ShinyProxy pod :
proxy:
resources:
requests:
cpu: 200m
memory: 512Mi
limits:
cpu: 300m
memory: 800MiYou can change the default pods resources :
appPod:
resources:
requests:
cpu: 200m
memory: 100Mi
limits:
cpu: 300m
memory: 200Mi