My service.yaml look like below
apiVersion: serving.knative.dev/v1alpha1
kind: Service
metadata:
name: applicationX
namespace: default
spec:
runLatest:
configuration:
revisionTemplate:
spec:
serviceAccountName: build-robot
container:
image: custom_image/1.0
securityContext:
privileged: true
I able to apply this yaml file successfully. However, when i try to mount using blobfuse for azure files, it just hangs. I able to run blobfuse using privileged on a docker on my development machine.
My service.yaml look like below
I able to apply this yaml file successfully. However, when i try to mount using blobfuse for azure files, it just hangs. I able to run blobfuse using privileged on a docker on my development machine.