Skip to content

Commit

Permalink
fix: right order to environment variable exports
Browse files Browse the repository at this point in the history
the previous order was using variables before they were defined
  • Loading branch information
avielb-navina authored Aug 19, 2024
1 parent e284774 commit d04f327
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/content/en/docs/upgrading/v1-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ The upgrade guide will first require upgrading to your latest patch version prio

```bash
export KARPENTER_NAMESPACE=kube-system
export KARPENTER_IAM_ROLE_ARN="arn:${AWS_PARTITION}:iam::${AWS_ACCOUNT_ID}:role/${CLUSTER_NAME}-karpenter"
export AWS_PARTITION="aws" # if you are not using standard partitions, you may need to configure to aws-cn / aws-us-gov
export CLUSTER_NAME="${USER}-karpenter-demo"
export AWS_REGION="us-west-2"
export AWS_ACCOUNT_ID="$(aws sts get-caller-identity --query Account --output text)"
export CLUSTER_NAME="navina-infra-dev"
export AWS_REGION="us-east-1"
export KARPENTER_IAM_ROLE_ARN="arn:${AWS_PARTITION}:iam::${AWS_ACCOUNT_ID}:role/${CLUSTER_NAME}-karpenter"
```


Expand Down

0 comments on commit d04f327

Please sign in to comment.