Skip to content

Commit faff7d9

Browse files
committed
Add author name to boostrap command
Signed-off-by: Stefan Prodan <[email protected]>
1 parent fe5b248 commit faff7d9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![e2e](https://github.com/stefanprodan/gitops-istio/workflows/e2e/badge.svg)](https://github.com/stefanprodan/gitops-istio/actions)
44
[![license](https://img.shields.io/github/license/stefanprodan/gitops-istio.svg)](https://github.com/stefanprodan/gitops-istio/blob/main/LICENSE)
55

6-
This is a self-paced workshop where you will get hands-on experience with GitOps and
6+
This is a guide where you will get hands-on experience with GitOps and
77
Progressive Delivery using Kubernetes and Istio.
88

99
## Introduction
@@ -14,15 +14,15 @@ GitOps is a way to do Continuous Delivery, it works by using Git as a source of
1414
for declarative infrastructure and workloads.
1515
For Kubernetes this means using `git push` instead of `kubectl apply/delete` or `helm install/upgrade`.
1616

17-
In this workshop you'll be using GitHub to host the config repository and Flux as the GitOps delivery solution.
17+
In this workshop you'll be using GitHub to host the config repository and [Flux](https://fluxcd.io) as the GitOps delivery solution.
1818

1919
### What is Progressive Delivery?
2020

2121
Progressive delivery is an umbrella term for advanced deployment patterns like canaries, feature flags and A/B testing.
2222
Progressive delivery techniques are used to reduce the risk of introducing a new software version in production
2323
by giving app developers and SRE teams a fine-grained control over the blast radius.
2424

25-
In this workshop you'll be using Flagger and Prometheus to automate Canary Releases and A/B Testing for your applications.
25+
In this workshop you'll be using [Flagger](https://flagger.app) and Prometheus to automate Canary Releases and A/B Testing for your applications.
2626

2727
![Progressive Delivery GitOps Pipeline](https://raw.githubusercontent.com/fluxcd/flagger/main/docs/diagrams/flagger-gitops-istio.png)
2828

@@ -37,7 +37,7 @@ Install the `flux` CLI with Homebrew:
3737
brew install fluxcd/tap/flux
3838
```
3939

40-
Binaries for macOS, Windows and Linux AMD64/ARM are available
40+
Binaries for macOS AMD64/ARM64, Linux AMD64/ARM and Windows are available
4141
to download on the [flux2 release page](https://github.com/fluxcd/flux2/releases).
4242

4343
Verify that your cluster satisfies the prerequisites with:
@@ -70,6 +70,7 @@ Bootstrap Flux by specifying your GitHub repository fork URL:
7070

7171
```bash
7272
flux bootstrap git \
73+
--author-email=<YOUR-EMAIL> \
7374
--url=ssh://[email protected]/<YOUR-USERNAME>/gitops-istio \
7475
--branch=main \
7576
--path=clusters/my-cluster

0 commit comments

Comments
 (0)