forked from gitops-workshop/my-app-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ kustomize version | |
In your terminal: | ||
|
||
```bash | ||
export username=... ;# your Github username | ||
export username=... ;# your Github username in lowercase | ||
git clone [email protected]:${username}/my-app-deployment.git | ||
cd my-app-deployment | ||
``` | ||
|
@@ -81,7 +81,8 @@ git push | |
|
||
### 8. Sync Your App | ||
|
||
Click "Sync". | ||
* Click "Sync". | ||
* Click "Synchronize" in the Sliding panel. | ||
|
||
### 9. Upgrade Your App | ||
|
||
|
@@ -106,7 +107,14 @@ git push | |
2. Find the red heart | ||
3. Clik on the resource and check each tab | ||
|
||
### 11. GitOps Rollback | ||
### 11. Emergency Rollback | ||
|
||
* Click "History And Rollback" | ||
* Click "..." button in the last row | ||
* Click "Rollback" | ||
* Click "Ok" in the modal panel | ||
|
||
### 12. GitOps Rollback | ||
|
||
``` | ||
git revert $(git rev-parse HEAD) | ||
|