Skip to content

Commit 55d3535

Browse files
Merge pull request #21 from todaywasawesome/staging
OSS-8 Create blue release
2 parents b77f72f + ee83f56 commit 55d3535

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Color Coded
2-
Codefresh, Argo CD and Argo Rollouts Demo App
2+
Codefresh, [Argo CD](https://argo-cd.readthedocs.io/en/stable/) and Argo Rollouts Demo App
33

44
<img src="https://codefresh.io/wp-content/uploads/2018/08/Fully_automated_Canary_deployments_in_Kubernetes_with_Codefresh.jpg" width="100%">
55

66
## What's in the app?
7-
A simple go app that displays a color and version. This is designed to work with [Argo Rollouts](https://argoproj.github.io/argo-rollouts/) for canary and blue/green progressive delivery.
7+
A simple go app that displays a [color](https://en.wikipedia.org/wiki/Color) and version. This is designed to work with [Argo Rollouts](https://argoproj.github.io/argo-rollouts/) for canary and blue/green progressive delivery.
88

99
## Deployment configuration
1010
This app is used and configured in [oss-apps](https://github.com/todaywasawesome/oss-apps)

app.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77

88
func main() {
99

10-
version := "Yellow"
10+
version := "Blue"
1111

12-
color := "#F1A94E" //Blue 44B3C2 and Yellow F1A94E
12+
color := "#44B3C2" //Blue 44B3C2 and Yellow F1A94E
1313

1414
http.HandleFunc("/callme", func(w http.ResponseWriter, r *http.Request) {
1515
fmt.Fprintf(w, "<div class='pod' style='background:%s'> ver: %s\n </div>", color, version)

0 commit comments

Comments
 (0)