Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding steps in the readme to refresh EKS clusters kubeconfig #33

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,14 @@ Currently, the following list shows all available configurable variables for cre

Unfortunately, open match does not have an arm-based container image. Hence why the managed node groups that help run openmatch are not available for architecture configuration.

### EKS clusters kube config
Run the following commands to retrieve or refresh the EKS clusters kubernetes configuration file. That step is needed for the Terraform local provisioner execution to succeed in the intra-cluster deployment step.

```bash
aws eks update-kubeconfig --name $CLUSTER1 --region $REGION1
aws eks update-kubeconfig --name $CLUSTER2 --region $REGION2
```

### terraform/intra-cluster
The commands below will deploy our resources inside the clusters created in the last step. We use the output values from `terraform/cluster` as input to the `terraform/intra-cluster` module.
```bash
Expand Down