Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Setting Environment Variables

Set the necessary environment variables to match your system configuration:

export HEADNODE="http://192.0.7.xx:5000"
export CLUSTER_NAME="EksClusterName"
export ENV_NAME="k8s"

Installing the Helm Chart

Step 1: Disconnect from the Helm registry to enable unauthenticated access to the public ECR:

helm registry logout public.ecr.aws

Step 2: Execute the Helm chart installation with the command below:

helm upgrade --install karpenter oci://public.ecr.aws/x5d4i9x1/exostellar-karpenter/karpenter \
   --version v0.0.6 \
   --namespace karpenter \
   --create-namespace \
   --set "settings.clusterName=${CLUSTER_NAME}" \
   --set controller.resources.requests.cpu=1 \
   --set controller.resources.requests.memory=1Gi \
   --set controller.resources.limits.cpu=1 \
   --set controller.resources.limits.memory=1Gi \
   --set headnode=$HEADNODE \
   --set environmentName=$ENV_NAME \
   --wait

  • No labels