Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nomad-lab
container-manager
Commits
c6a25c77
Commit
c6a25c77
authored
Sep 26, 2018
by
Adam Fekete
Browse files
gitignore pwd
parent
ba68d547
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
c6a25c77
#pwds
kubeSupport/redis-session-db-pwd.txt
kubeSupport/redis-user-db-pwd.txt
*-pwd.txt
/*.yaml
# Logs
...
...
kubeTemplates/jupyterTemplate.yaml
0 → 100644
View file @
c6a25c77
---
apiVersion
:
"
v1"
kind
:
Pod
metadata
:
name
:
"
{{podName}}"
labels
:
user
:
"
{{user}}"
image-type
:
"
{{imageType}}"
image-subtype
:
"
{{imageSubtype}}"
replacements-checksum
:
"
{{replacementsChecksum}}"
spec
:
imagePullSecrets
:
-
name
:
garching-kube
containers
:
-
image
:
"
{{image}}"
name
:
"
{{imageType}}"
command
:
[
"
start-notebook.sh"
]
args
:
[
"
--NotebookApp.base_url=/jupyter"
]
ports
:
-
containerPort
:
{{
port
}}
name
:
"
main-port"
protocol
:
"
TCP"
imagePullPolicy
:
"
IfNotPresent"
volumeMounts
:
-
mountPath
:
"
/raw-data"
name
:
"
raw-data-volume"
readOnly
:
true
-
mountPath
:
"
/parsed"
name
:
"
parsed-data-volume"
readOnly
:
true
-
mountPath
:
"
/normalized"
name
:
"
normalized-data-volume"
readOnly
:
true
-
mountPath
:
"
/data/private/{{user}}"
name
:
"
private-data-volume"
-
mountPath
:
"
/data/shared"
name
:
"
shared-data-volume"
readOnly
:
true
-
mountPath
:
"
/data/shared/{{user}}"
name
:
"
my-shared-data-volume"
readinessProbe
:
httpGet
:
path
:
"
{{healthPath}}"
port
:
{{
port
}}
initialDelaySeconds
:
{{
healthDelay
}}
periodSeconds
:
{{
healthPeriod
}}
livenessProbe
:
httpGet
:
path
:
"
{{livePath}}"
port
:
{{
port
}}
initialDelaySeconds
:
{{
liveDelay
}}
periodSeconds
:
{{
livePeriod
}}
volumes
:
-
name
:
"
parsed-data-volume"
hostPath
:
{
"
path"
:
"
{{nomadRoot}}/parsed"
}
-
name
:
"
raw-data-volume"
hostPath
:
{
"
path"
:
"
{{nomadRoot}}/raw-data"
}
-
name
:
"
normalized-data-volume"
hostPath
:
{
"
path"
:
"
{{nomadRoot}}/normalized"
}
-
name
:
"
private-data-volume"
hostPath
:
{
"
path"
:
"
{{nomadRoot}}/user-data/private/{{user}}"
}
-
name
:
"
shared-data-volume"
hostPath
:
{
"
path"
:
"
{{nomadRoot}}/user-data/shared"
}
-
name
:
"
my-shared-data-volume"
hostPath
:
{
"
path"
:
"
{{nomadRoot}}/user-data/shared/{{user}}"
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment