File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed
deployments/kubernetes/charts/clowder2 Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff 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
3035rabbitmq :
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 :
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments