Max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
# Execute:
sudo sysctl -w vm.max_map_count=262144
# Execute:
sudo echo 'vm.max_map_count=262144' >> /etc/sysctl.confMax virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
# Execute:
sudo sysctl -w vm.max_map_count=262144
# Execute:
sudo echo 'vm.max_map_count=262144' >> /etc/sysctl.confMax virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
# Execute: sudo sysctl -w vm.max_map_count=262144
# Execute: sudo echo 'vm.max_map_count=262144' >> /etc/sysctl.confhelm max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
# For k8s and helm resoures from below link
# https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
apiVersion: v1
kind: Pod
metadata:
  name: myapp-pod
  labels:
    app: myapp
spec:
  containers:
  - name: myapp-container
    image: busybox:1.28
    command: ['sh', '-c', 'echo The app is running! && sleep 3600']
  initContainers:
  - name: init-myservice
    image: busybox:1.28
    command: ['sh', '-c', "until nslookup myservice.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for myservice; sleep 2; done"]
  - name: init-mydb
    image: busybox:1.28
    command: ['sh', '-c', "until nslookup mydb.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for mydb; sleep 2; done"]Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
