Hi guys,
I’m going to build tutor in minikube in my macbook.
When I run the tutor k8s launch the mongodb crash and redis crash because PVC and docker have not same PID.
I want to change the deployment file to fix it?
# env/k8s/deployments.yml
spec:
securityContext:
runAsUser: 999
runAsGroup: 999
fsGroup: 999
fsGroupChangePolicy: "OnRootMismatch" -> "Always"
containers:
Could you please guy me how to change that configuration then next time when I deploy new code to k8s that will be auto update the default configutation.
Thank you so much.