Skip to content

Commit e00021f

Browse files
Merge pull request #23 from todaywasawesome/staging
OSS-9 Purple Release
2 parents 0202b6e + 4dbe817 commit e00021f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Codefresh, [Argo CD](https://argo-cd.readthedocs.io/en/stable/) and Argo Rollout
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](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.
7+
A simple [go app](https://go.dev/) 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
10-
This app is used and configured in [oss-apps](https://github.com/todaywasawesome/oss-apps)
10+
This app is used and configured in [oss-apps](https://github.com/todaywasawesome/oss-apps), which is a GitOps deployment repository.
1111

1212
## More about Codefresh
1313
Goto https://codefresh.io to learn more about <a href="https://codefresh.io">Kubernets Continuous Delivery</a>

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 := "Blue"
10+
version := "Purple"
1111

12-
color := "#44B3C2" //Blue 44B3C2 and Yellow F1A94E
12+
color := "#7433FF" //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)

deploy/k8s/kustomization.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
resources:
4+
- deployment.yaml
5+
- service.yaml

0 commit comments

Comments
 (0)