Skip to content

Commit b359b4d

Browse files
committed
🍎 a realistic helm chart version 🍎
1 parent 8f306fb commit b359b4d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/5-the-deployments-strike-back/2-blue-green-deployments.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
![blue-green-diagram](images/blue-green-diagram.jpg)
88

9-
1. Let's create two new deployments in our ArgoCD Repo for the pet-battle front end. We'll call one Blue and the other Green. Add 2 new application in `tech-exercise/pet-battle/test/values.yaml`. You want to adjust the `source_ref` helm chart version to point to the latest you have in nexus.
9+
1. Let's create two new deployments in our ArgoCD Repo for the pet-battle front end. We'll call one Blue and the other Green. Add 2 new application in `tech-exercise/pet-battle/test/values.yaml`. Adjust the `source_ref` helm chart version and `image_version` to match what you have built.
1010

1111
```bash
1212
cat << EOF >> /projects/tech-exercise/pet-battle/test/values.yaml
@@ -16,9 +16,9 @@
1616
enabled: true
1717
source: http://nexus:8081/repository/helm-charts
1818
chart_name: pet-battle
19-
source_ref: 1.0.6 # helm chart version
19+
source_ref: 1.0.6 # helm chart version - may need adjusting!
2020
values:
21-
image_version: latest # container image version
21+
image_version: latest # container image version - may need adjusting!
2222
fullnameOverride: blue-pet-battle
2323
blue_green: active
2424
# we controll the prod route via the "blue" chart for simplicity
@@ -43,9 +43,9 @@
4343
enabled: true
4444
source: http://nexus:8081/repository/helm-charts
4545
chart_name: pet-battle
46-
source_ref: 1.0.6 # helm chart version
46+
source_ref: 1.0.6 # helm chart version - may need adjusting!
4747
values:
48-
image_version: latest # container image version
48+
image_version: latest # container image version - may need adjusting!
4949
fullnameOverride: green-pet-battle
5050
blue_green: inactive
5151
config_map: '{

0 commit comments

Comments
 (0)