Skip to content

Commit

Permalink
bump chart to 0.4.6 (shinyproxy 2.5.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
remche committed Mar 19, 2021
1 parent 3e017a8 commit 000b8b8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion images/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:11-jre

ARG SHINYPROXY_VERSION=2.4.3
ARG SHINYPROXY_VERSION=2.5.0

RUN useradd -s /bin/bash shiny
RUN mkdir -p /opt/shinyproxy/ && chown shiny /opt/shinyproxy
Expand Down
4 changes: 2 additions & 2 deletions shinyproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: shinyproxy
description: A Helm chart to install Shinyproxy
type: application
version: 0.4.5
appVersion: 2.4.3
version: 0.4.6
appVersion: 2.5.0
2 changes: 1 addition & 1 deletion shinyproxy/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
{{- include "shinyproxy.labels" . | nindent 4 }}
data:
{{- $values := pick .Values "proxy" "logging" }}
{{- $values := pick .Values "proxy" "logging" "management" }}
{{- $_ := set $values "proxy" (omit $values.proxy "image" "annotations" "labels" "nodeSelector" "resources" "service" "ldap" "kerberos" "keycloak" "openid" "saml" "social" "users") }}
{{- range .Values.proxy.specs }}
{{- if not (index . "container-memory-request") }}
Expand Down
4 changes: 2 additions & 2 deletions shinyproxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
readinessProbe:
httpGet:
path: /actuator/health/readiness
port: 8080
port: 9090
periodSeconds: 20
initialDelaySeconds: 40
timeoutSeconds: 5
Expand All @@ -58,7 +58,7 @@ spec:
livenessProbe:
httpGet:
path: /actuator/health/liveness
port: 8080
port: 9090
periodSeconds: 20
initialDelaySeconds: 40
timeoutSeconds: 5
Expand Down
2 changes: 1 addition & 1 deletion shinyproxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ proxy:
# proxy.image -- ShinyProxy Docker image to use
image:
name: remche/shinyproxy
tag: 2.4.3
tag: 2.5.0
# proxy.labels -- ShinyProxy deployment labels
labels: {}
# proxy.annotations -- ShinyProxy deployment annotations
Expand Down

0 comments on commit 000b8b8

Please sign in to comment.