Hi, has anyone ran into an issue with cards not lo...
# ask-metaflow
b
Hi, has anyone ran into an issue with cards not loading when running a local kubernetes cluster (I am using k3s) with localstack / minio? I'm seeing the content generated (list the buckets recursively) but the metadaservice cant serve them (sometimes i see the logs served for the first time and never after that)
a
Likely a configuration issue with the UI? Are you able to use the ‘card view’ command locally to view the cards?
b
@square-wire-39606 yes I am, i noticed there is a metaflow_card_cache where the cards are being saved and the cards cli command gets them from here, but is there a way to have this be served by the s3 bucket (on cli and ui)
btw i see the UI lagging and i see these logs from the ui service INFOCacheAsyncClientcache_data/artifact_searchMessage INFObotocore.credentialsFound credentials in environment variables. INFOCacheAsyncClientcache_data/logMessage INFObotocore.credentialsFound credentials in environment variables. this is similart to what i was experiencing before from the command line where things would hang, i am setting the env variables similarly to not have localstack bark at me
Copy code
- name: AWS_ACCESS_KEY_ID
              value: "placeholder"
            - name: AWS_SECRET_ACCESS_KEY
              value: "placeholder"
            - name: AWS_DEFAULT_REGION
              value: "placeholder"
I see them being passed through the pod when i bash into it