-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into increase-n-projects-limit
- Loading branch information
Showing
10 changed files
with
73 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ apiVersion: v1 | |
appVersion: "0.1" | ||
description: A Helm chart for Jupyter Lab | ||
name: lab | ||
version: 1.0.0 | ||
version: 1.0.1 | ||
maintainers: | ||
- name: Team Whale | ||
email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ apiVersion: v1 | |
appVersion: "0.1" | ||
description: A Helm chart Shiny apps | ||
name: shinyapp | ||
version: 1.0.1 | ||
version: 1.0.2 | ||
maintainers: | ||
- name: Team Whale | ||
email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ .Release.Name }}-shiny-configmap | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
shiny-server.conf: |- | ||
# Instruct Shiny Server to run applications as the user "shiny" | ||
run_as shiny; | ||
http_keepalive_timeout 600; | ||
# Define a server that listens on user defined port | ||
server { | ||
listen {{ .Values.appconfig.port }} 0.0.0.0; | ||
# Define a location at the base URL | ||
location / { | ||
# Host the directory of Shiny Apps stored in this directory | ||
site_dir /srv/shiny-server; | ||
# Log all Shiny output to files in this directory | ||
log_dir /var/log/shiny-server; | ||
# When a user visits the base URL rather than a particular application, | ||
# an index of the applications available in this directory will be shown. | ||
directory_index on; | ||
app_init_timeout 600; | ||
app_idle_timeout 600; | ||
} | ||
app_init_timeout 600; | ||
app_idle_timeout 600; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -194,4 +194,4 @@ Return STACKn rabbit secret | |
{{- else -}} | ||
[email protected] | ||
{{- end -}} | ||
{{- end -}} | ||
{{- end -}} |