Kubernetes config map symlinks (..data/) : is there a way to avoid them?
I think this solution is satisfactory : specifying exact file path in mountPath, will get rid of the symlinks to ..data and ..2018_06_04_19_31_41.860238952 So if I apply such a manifest : apiVersion: v1 kind: Pod metadata: name: my-lamp-site spec: containers: – name: php image: php:7.0-apache volumeMounts: – mountPath: /var/www/html/users.xml name: site-data subPath: users.xml volumes: – … Read more