File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
website/docs/docs/getting-started Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,16 @@ Before you begin, ensure you have the following:
1313
14141 . ` Helm ` 3.x installed
15152 . ` 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
8090To 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.
8494export KRO_VERSION=< new-version>
95+ ```
8596
86- # Upgrade the controller
97+ Upgrade the controller
98+ ```
8799helm upgrade kro oci://public.ecr.aws/kro/kro \
88100 --namespace kro \
101+ --set nameOverride=kro
89102 --version=${KRO_VERSION}
90103```
91104
You can’t perform that action at this time.
0 commit comments