Skip to content

Commit df8d32c

Browse files
committed
Storing minio_mount environment variable
1 parent dd60bba commit df8d32c

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

deployments/kubernetes/charts/clowder2/ibm-hpc.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ minio:
2525
hostname: minio.ibmclowder.software-dev.ncsa.illinois.edu
2626
apiIngress:
2727
enabled: true
28-
hostname: minio-api.ibmclowder.software-dev.ncsa.illinois.edu
28+
hostname: minio.ibmclowder.software-dev.ncsa.illinois.edu
29+
30+
frontend:
31+
image:
32+
repository: vismayak/clowder-frontend
33+
tag: latest
2934

3035
rabbitmq:
3136
# login
@@ -87,6 +92,22 @@ extractors:
8792
rcnn-iwp-inference:
8893
enabled: true
8994
image: vismayak/rcnn_iwp_inference_extractor_k8:latest
95+
env:
96+
- name: MINIO_MOUNTED_PATH
97+
value: /clowderfs
98+
volumes:
99+
- name: minio-storage
100+
hostPath:
101+
path: /mnt/ibm-hpc-clowderfs
102+
volumeMounts:
103+
- name: minio-storage
104+
mountPath: /clowderfs
105+
rcnn-iwp-finetuning:
106+
enabled: true
107+
image: vismayak/rcnn_iwp_finetuning_extractor_k8:latest
108+
env:
109+
- name: MINIO_MOUNTED_PATH
110+
value: /clowderfs
90111
volumes:
91112
- name: minio-storage
92113
hostPath:
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: Secret
3+
metadata:
4+
name: minio-credentials
5+
namespace: ibm-hpc
6+
stringData:
7+
MINIO_ENDPOINT: http://clowder2-minio:9000
8+
MINIO_ACCESS_KEY: clowder
9+
MINIO_SECRET_KEY: ilikecats
10+
MINIO_MOUNT_POINT: /var/clowderfs
11+
CLOWDER_VERSION: "2"
12+

0 commit comments

Comments
 (0)