-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app): use dataconf and telepresence (#1186)
- Loading branch information
Showing
44 changed files
with
958 additions
and
715 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ travis-deploy.sh | |
github_deploy_key.enc | ||
run-telepresence.sh | ||
secrets.tar.enc | ||
.config.hocon |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Flask", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "flask", | ||
"env": { | ||
"FLASK_APP": "renku_notebooks/wsgi.py", | ||
"FLASK_ENV": "development", | ||
"CONFIG_FILE": ".config.hocon" | ||
}, | ||
"args": [ | ||
"run", | ||
"--no-debugger", | ||
"-h", | ||
"localhost", | ||
"-p", | ||
"8000" | ||
], | ||
"jinja": false, | ||
"justMyCode": true, | ||
}, | ||
{ | ||
"name": "Python: Current File", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
}, | ||
] | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.7-slim | ||
FROM python:3.8-slim | ||
|
||
LABEL maintainer="info@datascience.ch" | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.7-slim | ||
FROM python:3.8-slim | ||
|
||
LABEL maintainer="info@datascience.ch" | ||
|
||
|
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,30 @@ | ||
# For available options refer to renku_notebooks.config.dynamic | ||
sessions { | ||
ingress { | ||
host = dev.renku.ch | ||
tls_secret = dev-renku | ||
} | ||
oidc { | ||
allow_unverified_email = True | ||
client_secret = XXXXXXXXX | ||
token_url = https://dev.renku.ch/auth/realms/Renku/protocol/openid-connect/token | ||
auth_url = https://dev.renku.ch/auth/realms/Renku/protocol/openid-connect/auth | ||
} | ||
default_image = renku/singleuser:X.X.X | ||
git_proxy { | ||
image = renku/git-https-proxy:X.X.X | ||
} | ||
git_clone { | ||
image = renku/git-clone:X.X.X | ||
} | ||
git_rpc_server { | ||
image = renku/git-rpc-server:X.X.X | ||
} | ||
} | ||
git { | ||
url = https://dev.renku.ch/gitlab | ||
registry = registry.dev.renku.ch | ||
} | ||
k8s { | ||
namespace = namespace_where_notebooks_run | ||
} |
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
Oops, something went wrong.