rabbit-slide-yebyen-kccnceu2021 2021.5.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c82755596488add828df614d3f0fbc7cc5c7bac1cddd0eeadf59447516d75e28
4
+ data.tar.gz: c3aff941cef8136c827dfdb9cab6ef7a5db7e55a39057ab7a01a4553c873a934
5
+ SHA512:
6
+ metadata.gz: d6d80ae431af349a6d31d14f6af4f719cb07c294606b0f01b051bbe6399574d43cb15a83cf991b9de8a261936beaca83e5b8edf146aa797a0f2974048dbb32e2
7
+ data.tar.gz: 2422c8338f4bfe7c6a7f34286a14d72084b9df0168d89c717a762125032721916b80bb62031fd882ad6377c10f719501b1990128446cac20ae9788c0ecc71a9c
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ helm-users-flux-guide.md
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Helm Users! What Flux 2 Can Do For You
2
+
3
+ Helm, the Package manager for Kubernetes. Flux, the GitOps continuous delivery solution for Kubernetes. Both can be used independently, but are more powerful together. Scott Rigby, Helm and Flux maintainer - and Kingdon Barrett, OSS engineer - will share the benefits of Helm and GitOps for developers, with live demos showcasing the extra awesomeness of Flux v2 and Helm together. This talk is for Helm users who have either never used Flux, or Flux v1 users looking forward to new features in Flux v2.
4
+
5
+ [sched.co/iE1e](https://sched.co/iE1e)
6
+
7
+ Wednesday, May 5 - 13:10 - 13:45 CEST (Central European Summer Time)
8
+ Wednesday, May 5 - 7:10 - 7:45 EDT (Eastern US Daylight Savings Time)
9
+
10
+ ## For author
11
+
12
+ ### Show
13
+
14
+ rake
15
+
16
+ ### Publish
17
+
18
+ rake publish
19
+
20
+ ## For viewers
21
+
22
+ ### Install
23
+
24
+ gem install rabbit-slide-yebyen-kccnceu2021
25
+
26
+ ### Show
27
+
28
+ rabbit rabbit-slide-yebyen-kccnceu2021.gem
29
+
data/Rakefile ADDED
@@ -0,0 +1,18 @@
1
+ require "rabbit/task/slide"
2
+
3
+ # Edit ./config.yaml to customize meta data
4
+
5
+ spec = nil
6
+ Rabbit::Task::Slide.new do |task|
7
+ spec = task.spec
8
+ spec.files += Dir.glob('helm-users-flux-guide.md')
9
+ # spec.files += Dir.glob("doc/**/*.*")
10
+ # spec.files -= Dir.glob("private/**/*.*")
11
+ # spec.add_runtime_dependency("rabbit-theme-YOUR-THEME")
12
+ end
13
+
14
+ desc "Tag #{spec.version}"
15
+ task :tag do
16
+ sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
17
+ sh("git", "push", "--tags")
18
+ end
data/config.yaml ADDED
@@ -0,0 +1,26 @@
1
+ ---
2
+ id: kccnceu2021
3
+ base_name: helm-users-flux-guide
4
+ tags:
5
+ - flux
6
+ - fluxcd
7
+ - helm
8
+ - presentation
9
+ - kubecon
10
+ presentation_date: '2021-05-05'
11
+ presentation_start_time: '2021-05-05T13:10:00+02:00'
12
+ presentation_end_time: '2021-05-05T13:45:00+02:00'
13
+ version: 2021.5.5.0
14
+ licenses: ['Apache-2.0']
15
+ slideshare_id:
16
+ speaker_deck_id:
17
+ ustream_id:
18
+ vimeo_id:
19
+ youtube_id:
20
+ author:
21
+ markup_language: :markdown
22
+ name: Kingdon Barrett
23
+ email: kingdon@weave.works
24
+ rubygems_user: yebyen
25
+ slideshare_user: KingdonBarrett
26
+ speaker_deck_user:
@@ -0,0 +1,217 @@
1
+ # Helm Users! What Can Flux v2 Do For You
2
+
3
+ author
4
+ : @yebyen and @r6by
5
+
6
+ date
7
+ : 2021-05-05
8
+
9
+ allotted-time
10
+ : 35m
11
+
12
+ start-time
13
+ : 2021-05-05T13:10:00+02:00
14
+
15
+ end-time
16
+ : 2021-05-05T13:45:00+02:00
17
+
18
+
19
+ # Outline
20
+
21
+ * Talk about Flux + Helm Controller
22
+ * Flux CRDs - HelmRelease, Kustomization, (...)
23
+ * Demo During Slides (**N**arrow **E**xpand)
24
+
25
+ # DEMO
26
+
27
+ Blog on Kubernetes
28
+
29
+ **Live Activity**
30
+
31
+ * `flux bootstrap`
32
+ * Kyverno
33
+ * Webhook Receiver
34
+ * Wordpress
35
+
36
+ # DEMO
37
+
38
+ (just kidding - more)
39
+
40
+ **Live Activity**
41
+
42
+ * Jenkins
43
+ * Okteto Terminal
44
+ * Linkerd2
45
+ * Flagger
46
+
47
+ # `flux bootstrap`
48
+
49
+ We will install all controllers
50
+
51
+ * source controller
52
+ * kustomize controller
53
+ * helm controller
54
+
55
+ # `flux bootstrap`
56
+
57
+ We will install all controllers
58
+
59
+ * notification controller
60
+ * (image-automation)
61
+ * (image-reflector)
62
+
63
+ # kyverno
64
+
65
+ Requirement to make Flux secure for multi-tenancy
66
+
67
+ (Keep Kubernetes safe from Wordpress)
68
+
69
+ [fluxcd/flux2-multi-tenancy](https://github.com/fluxcd/flux2-multi-tenancy#readme)
70
+
71
+ Follow this carefully!
72
+
73
+ # webhook
74
+
75
+ `Receiver` config allows Flux to sync instantly on `git push`
76
+
77
+ [flux-system-receiver.yaml](/kingdonb/kccnceu2021/tree/main/clusters/my-cluster/flux-resources/flux-system-receiver.yaml)
78
+ [webhook-lb.yaml](/kingdonb/kccnceu2021/tree/main/clusters/my-cluster/flux-resources/notification-controller-lb.yaml)
79
+
80
+ [webhook-receivers guide](https://toolkit.fluxcd.io/guides/webhook-receivers/)
81
+
82
+ # Wordpress
83
+
84
+ Another application installed via Helm
85
+
86
+ [bitnami/wordpress](https://github.com/bitnami/charts/tree/master/bitnami/wordpress)
87
+
88
+ # Jenkins
89
+
90
+ Another application installed via Helm
91
+
92
+ [jenkinsci/helm-charts](https://github.com/jenkinsci/helm-charts)
93
+
94
+ # Terminal
95
+
96
+ Another application installed via Helm
97
+
98
+ [okteto/terminal](https://github.com/okteto/terminal)
99
+
100
+ # Linkerd2
101
+
102
+ *Not just* another application
103
+
104
+ (Yes, Linkerd2 does provide Helm charts, but we don't install that way, we used `arkade` and `linkerd2` cli)
105
+
106
+ [linkerd getting started](https://linkerd.io/2.10/getting-started/)
107
+
108
+ [arkade install linkerd](https://github.com/openfaas/openfaas-linkerd-workshop#step-3-install-linkerd-2-onto-the-cluster)
109
+
110
+ # Flagger
111
+
112
+ Progressive Delivery with Flux and *Flagger*
113
+
114
+ Another project in the FluxCD umbrella
115
+
116
+ Depends on *Linkerd2* (option Istio, AWS App Mesh, nginx...)
117
+
118
+ # Flux2 Kustomize Helm
119
+
120
+ [fluxcd/flux2-kustomize-helm-example](https://github.com/fluxcd/flux2-kustomize-helm-example)
121
+
122
+ Example how to manage *multiple clusters*
123
+
124
+ (eg. staging, production)
125
+
126
+ # So Much More
127
+
128
+ We wanted to show you so much more
129
+
130
+ * Mozilla SOPS
131
+
132
+ Secrets Management
133
+
134
+ [mozilla-sops guide](https://toolkit.fluxcd.io/guides/mozilla-sops/)
135
+
136
+ # So Much More
137
+
138
+ We wanted to show you so much more
139
+
140
+ * image-automation
141
+ * image-reflector-controller
142
+
143
+ [Automate image updates to Git](https://toolkit.fluxcd.io/guides/image-update/)
144
+
145
+ # So Much More
146
+
147
+ We wanted to show you so much more
148
+
149
+ * *[arkade](https://github.com/alexellis/arkade)* - opinionated helm packages
150
+
151
+ Curated Constellations - make your own, or borrow opinions of others :) we show you ours
152
+
153
+ # So Much More
154
+
155
+ We wanted to show you so much more
156
+
157
+ * *cert-manager*
158
+
159
+ Let's Encrypt certificates
160
+
161
+ [cert-manager.io website](https://cert-manager.io)
162
+ [cert-manager.io/docs](https://cert-manager.io/docs/)
163
+
164
+ # So Much More
165
+
166
+ We wanted to show you so much more
167
+
168
+ * [loft-sh/kiosk](https://github.com/loft-sh/kiosk)
169
+ * [loft.sh](https://loft.sh)
170
+
171
+ Manage *multi-tenancy* another way
172
+
173
+ # So Much More
174
+
175
+ We wanted to show you so much more
176
+
177
+ * *ingress* configuration
178
+
179
+ (We used [nginx-ingress](https://kubernetes.github.io/ingress-nginx/deploy/#using-helm))
180
+
181
+ # So Much More
182
+
183
+ We wanted to show you so much more
184
+
185
+ * [Rabbit](https://rabbit-shocker.org)
186
+
187
+ A *presentation* tool for Rubyist
188
+
189
+ (neat tortoise/hare icons at the bottom of the slides!)
190
+
191
+ # DEMO NOTES
192
+
193
+ Follow along at home - gist following these examples
194
+
195
+ * [bit.ly/32rUInK](https://bit.ly/32rUInK)
196
+
197
+ `bit.ly/32rUInK`
198
+
199
+ *JIT presentation*! Instructions ready by the time you read this
200
+
201
+ # Thanks
202
+
203
+ Thank You (*Audience*) - Questions at the Flux Pavilion!
204
+
205
+ Thanks to CNCF, Linux Foundation, Weaveworks
206
+
207
+ Thanks to KubeCon and CloudNativeCon 2021 *Organizers*
208
+
209
+ # Questions
210
+
211
+ Visit *Flux Pavilion* - meet us live after - Kingdon and Scott, Weaveworks DX Team
212
+
213
+ After KCCNC EU 2021? _Slack_
214
+
215
+ Supported by *Volunteers* around the world
216
+
217
+ CNCF: `#flux` and `#flagger`
data/terminal/icon.png ADDED
Binary file
metadata ADDED
@@ -0,0 +1,70 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-slide-yebyen-kccnceu2021
3
+ version: !ruby/object:Gem::Version
4
+ version: 2021.5.5.0
5
+ platform: ruby
6
+ authors:
7
+ - Kingdon Barrett
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-04-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rabbit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.2
27
+ description: |-
28
+ Helm, the Package manager for Kubernetes. Flux, the GitOps continuous delivery solution for Kubernetes. Both can be used independently, but are more powerful together. Scott Rigby, Helm and Flux maintainer - and Kingdon Barrett, OSS engineer - will share the benefits of Helm and GitOps for developers, with live demos showcasing the extra awesomeness of Flux v2 and Helm together. This talk is for Helm users who have either never used Flux, or Flux v1 users looking forward to new features in Flux v2.
29
+
30
+ [sched.co/iE1e](https://sched.co/iE1e)
31
+
32
+ Wednesday, May 5 - 13:10 - 13:45 CEST (Central European Summer Time)
33
+ Wednesday, May 5 - 7:10 - 7:45 EDT (Eastern US Daylight Savings Time)
34
+ email:
35
+ - kingdon@weave.works
36
+ executables: []
37
+ extensions: []
38
+ extra_rdoc_files: []
39
+ files:
40
+ - ".rabbit"
41
+ - README.md
42
+ - Rakefile
43
+ - config.yaml
44
+ - helm-users-flux-guide.md
45
+ - pdf/kccnceu2021-helm-users-flux-guide.pdf
46
+ - terminal/icon.png
47
+ homepage: https://slide.rabbit-shocker.org/authors/yebyen/kccnceu2021/
48
+ licenses:
49
+ - Apache-2.0
50
+ metadata: {}
51
+ post_install_message:
52
+ rdoc_options: []
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ requirements: []
66
+ rubygems_version: 3.1.4
67
+ signing_key:
68
+ specification_version: 4
69
+ summary: Helm Users! What Flux 2 Can Do For You
70
+ test_files: []