I'm trying to reach Azure Blob Container from kubernetes pod without success. When I tried with FileShare it works as expected(when I change to Blob Container it fails) My kubernetes settings:
spec:
volumes:
- name: test-data-proccessing
azureFile:
secretName: azure-secret-file-share
shareName: fileshare-test
readOnly: false
# In the container spec part
template:
- name: some-deployment
container:
volumeMounts:
mountPath: /data
name: test-data-proccessing
Did you face similar issue?