Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!80
Add volume claim for OCI plus access pod
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add volume claim for OCI plus access pod
oci-volumes
into
master
Overview
0
Commits
5
Pipelines
4
Changes
3
Merged
Sören Henning
requested to merge
oci-volumes
into
master
4 years ago
Overview
0
Commits
5
Pipelines
4
Changes
3
Expand
Volume definition and an access pod are added. Open points are:
Pod should be converted to a deployment (or restarted on failure, see
#132
)
Some documentation should be added
Fixes
#128 (closed)
Edited
4 years ago
by
Sören Henning
0
0
Merge request reports
Viewing commit
fb564e99
Prev
Next
Show latest version
3 files
+
61
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
fb564e99
Add documentation for OCI and volume access
· fb564e99
Sören Henning
authored
4 years ago
execution/infrastructure/kubernetes/volume-access.yaml
0 → 100644
+
30
−
0
Options
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
name
:
theodolite-results-access
labels
:
app
:
theodolite-results-access
spec
:
replicas
:
1
selector
:
matchLabels
:
app
:
theodolite-results-access
template
:
metadata
:
labels
:
app
:
theodolite-results-access
spec
:
containers
:
-
name
:
theodolite-results-access
image
:
busybox:latest
command
:
-
sh
-
-c
-
exec tail -f /dev/null
volumeMounts
:
-
mountPath
:
/app/results
name
:
theodolite-pv-storage
volumes
:
-
name
:
theodolite-pv-storage
persistentVolumeClaim
:
claimName
:
theodolite-pv-claim
Loading