# Remember to restart MicroK8s after editing this file:
#
# sudo microk8s stop; sudo microk8s start
#

# To start containerd behind a proxy you need to add an HTTPS_PROXY
# environment variable in this file. HTTPS_PROXY is of the following form:
# HTTPS_PROXY=http://username:password@proxy:port/
# where username: and password@ are optional. eg:
#
# HTTPS_PROXY=https://squid.internal:3128
#
# You may also want to set NO_PROXY to include the cluster-cidr and the services-cidr
# as specified in /var/snap/microk8s/current/args/kube-proxy and
# /var/snap/microk8s/current/args/kube-apiserver
#
# NO_PROXY=10.1.0.0/16,10.152.183.0/24
#

# You can set the of the kata containers runtime here.
#
# KATA_PATH=
#
PATH=$PATH:$KATA_PATH

# Attempt to change the maximum number of open file descriptors
# this get inherited to the running containers
#
ulimit -n 65536 || true

# Attempt to change the maximum locked memory limit
# this get inherited to the running containers
#
ulimit -l 16384 || true

