Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add variogram job in radix #168

Merged
merged 2 commits into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions radixconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ spec:
payload:
path: /app/args
variables:
MODELS_PATH: '/mnt/azure-storage/models'
MODEL_FOLDER: '/mnt/azure-storage/models'
WORKER_FOLDER: '/mnt/azure-storage/worker'
environmentConfig:
- environment: dev
volumeMounts:
Expand Down Expand Up @@ -98,7 +99,8 @@ spec:
payload:
path: /app/args
variables:
MODELS_PATH: '/mnt/azure-storage/models'
MODEL_FOLDER: '/mnt/azure-storage/models'
WORKER_FOLDER: '/mnt/azure-storage/worker'
environmentConfig:
- environment: dev
volumeMounts:
Expand All @@ -118,6 +120,40 @@ spec:
uid: 1000
streaming:
enabled: false
- name: pepm-nrvargrest
image: ghcr.io/equinor/pepm-worker-api/pepm-nrvargrest:latest
schedulerPort: 8090
resources:
requests:
memory: '4096Mi'
cpu: '1000m'
limits:
memory: '8192Mi'
cpu: '2000m'
payload:
path: /app/args
variables:
MODEL_FOLDER: '/mnt/azure-storage/models'
WORKER_FOLDER: '/mnt/azure-storage/worker'
environmentConfig:
- environment: dev
volumeMounts:
- name: pepm-nrvargrest-model-storage-dev
path: /mnt/azure-storage/models
blobfuse2:
protocol: fuse2
container: models
uid: 1000
streaming:
enabled: false
- name: pepm-nrvargrest-worker-storage-dev
path: /mnt/azure-storage/worker
blobfuse2:
protocol: fuse2
container: nrvargrest
uid: 1000
streaming:
enabled: false
privateImageHubs:
ghcr.io:
username: hakoneriksson
Expand Down