Skip to content

Commit 893f95e

Browse files
committed
ecr login
1 parent 9cbeea7 commit 893f95e

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

website/docs/docs/getting-started/01-Installation.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ Before you begin, ensure you have the following:
1313

1414
1. `Helm` 3.x installed
1515
2. `kubectl` installed and configured to interact with your Kubernetes cluster
16+
3. `awscli` installed
17+
18+
Log in to public ecr:
19+
```
20+
aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws
21+
```
22+
Expected result:
23+
```
24+
Login Succeeded
25+
```
1626

1727
## Installation Steps
1828

@@ -79,13 +89,16 @@ correctly:
7989

8090
To upgrade to a newer version of kro, use the Helm upgrade command:
8191

92+
Replace `<new-version>` with the version you want to upgrade to.
8293
```bash
83-
# Replace `<new-version>` with the version you want to upgrade to.
8494
export KRO_VERSION=<new-version>
95+
```
8596

86-
# Upgrade the controller
97+
Upgrade the controller
98+
```
8799
helm upgrade kro oci://public.ecr.aws/kro/kro \
88100
--namespace kro \
101+
--set nameOverride=kro
89102
--version=${KRO_VERSION}
90103
```
91104

0 commit comments

Comments
 (0)