-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRakefile
721 lines (648 loc) · 24.9 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
require 'rake'
require 'json'
require 'tmpdir'
require 'rake/tasklib'
require 'open3'
require 'yaml'
require 'readline'
require 'digest/md5'
require 'fileutils'
require 'open-uri'
require 'base64'
require 'pathname'
# Load local modules
require_relative '.rake_modules/scaffold'
require_relative '.rake_modules/monkeypatch'
require_relative '.rake_modules/utils'
require_relative '.rake_modules/tester/tester'
require_relative '.rake_modules/tester/asset'
HELMFILE_GLOB = 'helmfile.d/*services/**/helmfile.yaml'.freeze
CHARTS_GLOB = 'charts/**/Chart.yaml'.freeze
# Charts that contain CRDs need to provide a well known fixture (crds.yaml)
# that guaranteed proper rendering of the CRDs and will be used to create
# JSON schema (used by kubeconform to validate custom resources).
CDRS_GLOB = 'charts/**/.fixtures/crds.yaml'.freeze
ISTIOCTL_VERSION = 'istioctl-1.15.7'.freeze
JSON_SCHEMA = 'jsonschema/'.freeze
LISTENERS_FIXTURE = '.fixtures/service_proxy.yaml'.freeze
# This returns a base64-encoded value.
HIERADATA_BASE_URL = 'https://gerrit.wikimedia.org/r/plugins/gitiles/operations/puppet/+/refs/heads/production/hieradata'.freeze
DEPLOYMENT_SERVER_KUBERNETES_HIERA_URL = "#{HIERADATA_BASE_URL}/role/common/deployment_server/kubernetes.yaml?format=TEXT".freeze
LISTENERS_DEFINITIONS_URL = "#{HIERADATA_BASE_URL}/common/profile/services_proxy/envoy.yaml?format=TEXT".freeze
MARIADB_SECTION_PORTS_URL = "#{HIERADATA_BASE_URL}/common/profile/mariadb.yaml?format=TEXT".freeze
COMMON_HIERA_URL = "#{HIERADATA_BASE_URL}/common.yaml?format=TEXT".freeze
COMMON_KUBERNETES_HIERA_URL = "#{HIERADATA_BASE_URL}/common/kubernetes.yaml?format=TEXT".freeze
## RAKE TASKS
desc 'Checks dependencies'
task :check_dep do
check_binary('helm')
check_binary('helm3.11')
check_binary('helmfile')
check_binary('semver-cli')
res, output = _exec('helm version --client --short')
helm_version = output.split('.').first
raise("Only helm v3 is supported. Installed helm version is #{helm_version}") if helm_version != 'v3'
end
# This is to ensure that all repos are available and up to date
desc 'Add and update all needed helm repositories'
task repo_update: :check_dep do
# Hash of repository url (ensure no trailing backslash, don't ask) and repository name
repositories = {
'https://helm-charts.wikimedia.org/stable' => 'wmf-stable'
}
FileList.new(CHARTS_GLOB).each do |path_to_chart|
chart_yaml = yaml_load_file(path_to_chart)
dependencies = []
# Dependencies are to be defined in Chart.yaml
dependencies = chart_yaml['dependencies'] if chart_yaml['dependencies']
next unless dependencies
dependencies.each do |dep|
next unless dep.has_key?('repository')
unless dep['repository'].match(/^http/)
raise("Only http(s) URLs supported for non-local helm dependencies (#{path_to_chart})")
end
url = dep['repository'].chomp('/')
unless repositories.key?(url)
# Use the md5 hash of the repository URL as name, it does not matter for dependency references
repositories[url] = Digest::MD5.hexdigest(url)
end
end
end
repositories.each do |url, name|
puts("Adding helm repo #{url} as #{name}")
# --force-update does *not* force a repository update but forces the update of the URL if the repository already exists
system("helm repo add --force-update #{name} #{url}")
end
system('helm repo update')
end
desc 'Create CRDs JSON schema (for kubeconform validation)'
task :json_schema do
output_dir = File.join(JSON_SCHEMA, 'charts')
if File.exist?(output_dir)
Dir.glob(File.join(output_dir, '*.json')).each { |file| File.delete(file) }
else
Dir.mkdir(output_dir)
end
FileList.new(CDRS_GLOB).each do |fixture|
chart_path = File.expand_path('..', File.dirname(fixture))
chart_name = File.basename(chart_path)
res, helm_out = _exec("helm template -f #{fixture} #{chart_path}")
if !res
puts helm_out.red
raise("Error templating chart #{chart_name} for JSON schema")
end
res, convert_out = _exec("./openapi2jsonschema.py -o #{output_dir} -", helm_out)
if !res
puts convert_out.red
raise("Error running openapi2jsonschema.py for chart #{chart_name}")
end
end
end
desc 'Runs helm lint on all charts'
task :lint do |_t, args|
charts = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check_charts].invoke('lint', charts)
Rake::Task[:check_charts].reenable
end
desc 'Runs helm template on all charts and validate the output with kubeconform'
task :validate_template do |_t, args|
charts = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check_charts].invoke('validate', charts)
Rake::Task[:check_charts].reenable
end
desc 'Runs helmfile lint on all service deployments'
task validate_deployments: :repo_update do |_, args|
deployments = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check_deployments].invoke('lint', deployments)
Rake::Task[:check_deployments].reenable
end
desc 'Validate the envoy configuration'
task validate_envoy_config: %i[check_dep refresh_fixtures] do
puts 'Generating and verifying the envoy configuration...'
begin
sc = Scaffold.new('service', 'validate-envoy-config', '_scaffold/service/.presets/nodejs.yaml')
sc.run
# run helm template for a specific fixture that generates a service proxy and tls terminator
command = "helm template --values .fixtures/validate_envoy_config.yaml --values #{LISTENERS_FIXTURE} charts/validate-envoy-config"
res, out = _exec command
unless res
puts out.red
raise('Failure generating the helm manifest')
end
# Extract the envoy configuration, write it to a file
file_resources = {}
begin
error = 'Extracting envoy config from "helm template" output'
config = ''
YAML.load_stream(out) do |resource|
next unless !resource.nil? \
&& resource['kind'] == 'ConfigMap' \
&& resource['metadata'] \
&& resource['metadata']['name'] \
&& resource['metadata']['name'].end_with?('envoy-config-volume')
file_resources = resource['data']
config = file_resources['envoy.yaml']
end
rescue StandardError => e
puts error.red
puts e
raise('Failure reading the helm yaml template')
end
begin
error = 'Parsing envoy.yaml'
YAML.safe_load(config)
rescue Psych::SyntaxError => e
report_yaml_parse_error(command, error, config, e)
raise('Failure parsing envoy YAML configuration')
rescue StandardError => e
puts error.red
puts e
raise('Generic failure interpreting envoy YAML configuration')
end
ensure
FileUtils.rm_rf('charts/validate-envoy-config')
end
use_local_envoy = system('which envoy > /dev/null 2>&1') && File.writable?('/etc/envoy')
if use_local_envoy
dest = '/etc/envoy'
else
dest = '.tmp'
# Now create a temp directory where we write the yaml file, then run docker to verify it works.
FileUtils.mkdir dest, mode: 0o777
at_exit { FileUtils.remove_entry dest }
end
file_resources.each do |fn, data|
f = File.open "#{dest}/#{fn}", 'w'
f.write data
f.close
# If we're copying the file into the container, it needs to be world-readable
File.chmod 0o755, "#{dest}/#{fn}" unless use_local_envoy
end
FileUtils.cp_r('.fixtures/ssl/', "#{dest}/")
if use_local_envoy
# Some envoy options do require service-node and service-cluster to be set
# and we do so in the entypoint of the procution images. Reproduce that here.
envoy_args = "--service-node validate --service-cluster validate --mode validate"
cmd = "envoy #{envoy_args} -c #{dest}/envoy.yaml"
else
envoy_image = "docker-registry.wikimedia.org/envoy:latest"
# SERVICE_NAME will be used as value for the --service-cluster argument by the entrypoint
envoy_envs = "-e SERVICE_NODE=validate -e SERVICE_NAME=validate"
envoy_args = "--mode validate"
path = File.realpath dest
cmd = "docker run --pull always --rm -v #{path}:/etc/envoy #{envoy_envs} #{envoy_image} #{envoy_args}"
end
res, out = _exec cmd
if !res
puts out.red
raise('Failure')
else
puts out.green
end
end
# Scaffolding
desc 'Create a new chart'
task :scaffold do
sextant = which("sextant")
if sextant.nil?
puts("Please install sextant: pip3 install sextant")
return 1
end
puts("Please use sextant to create a chart: ")
puts("#{sextant} create-chart -s _scaffold/<model> charts/<chart-name>")
end
desc 'Validate all scaffolding models'
task :test_scaffold, [:tests] => [:refresh_fixtures] do |_, args|
sextant = which("sextant")
if sextant.nil?
puts("Please install sextant: pip3 install sextant")
return 1
end
args = {} if args.nil?
Rake::Task[:check].invoke('scaffold', args.fetch(:tests, nil), nil)
Rake::Task[:check].reenable
end
desc 'Show diff introduced by the patch'
task helm_diffs: %i[refresh_fixtures] do |_t, args|
charts = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check_charts].invoke('diff', charts)
Rake::Task[:check_charts].reenable
end
desc 'Show diffs in deployments introduced by the patch'
task deployment_diffs: %i[check_dep repo_update refresh_fixtures] do |_, args|
charts = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check_deployments].invoke('diff', charts)
Rake::Task[:check_deployments].reenable
end
## RAKE TASKS admin_ng
desc 'Runs helmfile lint on admin_ng for all environments'
task admin_lint: %i[check_dep repo_update refresh_fixtures] do |_t, args|
envs = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check].invoke('admin', 'lint', envs)
Rake::Task[:check].reenable
end
desc 'Runs helmfile template on admin_ng for all environments and validate the output with kubeconform'
task admin_validate: %i[check_dep repo_update refresh_fixtures] do |_t, args|
envs = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check].invoke('admin', 'validate', envs)
Rake::Task[:check].reenable
end
desc 'Shows admin diff introduced by this patch'
task admin_diff: %i[check_dep repo_update refresh_fixtures] do |_t, args|
envs = args.nil? || args.extras.empty? ? nil : args.extras.join('/')
Rake::Task[:check].invoke('admin', 'diff', envs)
Rake::Task[:check].reenable
end
## RAKE TASKS custom_deploy
desc 'Validate istio configuration'
task :validate_istio_config do
check_binary(ISTIOCTL_VERSION)
FileList.new('custom_deploy.d/istio/*/config.yaml').each do |config|
ok, out = _exec "#{ISTIOCTL_VERSION} validate -f #{config}"
next if ok
puts "Failed to verify istio config '#{config}':".red
puts out
raise('Failure')
end
end
desc 'Run other tasks locally within the CI docker images'
task :run_locally, [:cmdargs] do |_t, args|
check_docker
# If ROOTLESS_PODMAN is set to 1, we will assume the user is using podman
# TODO: maybe use the output of "docker version" to determine if we are using podman
# and some trickery to detect rootless podman too?
is_rootless_podman = (ENV['ROOTLESS_PODMAN'] == '1')
cmdargs = if args.nil? || args.count.zero?
''
else
args[:cmdargs]
end
Dir.mktmpdir do |dir|
puts "Copying and committing code to #{dir}"
FileUtils.cp_r('.', dir)
Dir.chdir dir do
g = Git.open('.')
# Change origin to anonymous https
g.refresh_remote('origin', force = true)
# Commit any outstanding file
if g.diff('HEAD', '.').size != 0
g.add(all: true)
g.commit('running_diffs')
end
# In rootless podman, the root user is the current user
# so we want to run as root!
user = is_rootless_podman ? 0 : Process.uid
puts 'Now running in docker'
cmd = [
'docker',
'run',
'--pull always',
'--rm',
"--user #{user}",
"-v #{dir}:/src:rw",
'-v /etc/passwd:/etc/passwd:ro',
'-v /etc/group:/etc/group:ro',
'docker-registry.wikimedia.org/releng/helm-linter:latest',
cmdargs
].join(' ')
puts cmd
puts `#{cmd}`
end
end
end
desc 'Update global fixture (service-proxy listeners, deployment_server::general ...)'
task :refresh_fixtures do
# Download the services proxy file from puppet.
service_proxy = {}
URI.open(LISTENERS_DEFINITIONS_URL) do |res|
decoded = Base64.decode64(res.read)
hiera = YAML.safe_load(decoded)
# We don't really need an upstream to be accurate here.
upstream_mock = {
'ips' => ['127.0.0.1/32', '169.254.0.1/32'],
'address' => 'mock.discovery.wmnet',
'port' => 443,
'encryption' => true,
}
# List of keys to keep in the listeners definition, assembles what we do in
# modules/profile/manifests/kubernetes/deployment_server/global_config.pp
listener_keys_to_keep = %w(port http_host timeout retry_policy xfp upstream split)
data = hiera['profile::services_proxy::envoy::listeners'].map do |x|
name = x['name']
upstream = upstream_mock.dup
if x['sets_sni'] == true
upstream['sets_sni'] = true
end
if x['keepalive']
upstream['keepalive'] = x['keepalive']
end
if x['tcp_keepalive']
upstream['tcp_keepalive'] = x['tcp_keepalive']
end
x['upstream'] = upstream_mock
if x['split']
x['split']['address'] = x['split']['upstream']
# Override ips, port and encryption with mock data
x['split']['ips'] = ['127.0.0.2/32', '169.254.0.2/32']
x['split']['port'] = 1443
x['split']['encryption'] = true
end
# Filter keys and nil values to produce the same structure as global_config.pp
y = x.filter do |key, value|
listener_keys_to_keep.include?(key) && !value.nil?
end
[ name, y ]
end.to_h
File.open(LISTENERS_FIXTURE, 'w') do |out|
service_proxy = { 'services_proxy' => data }
YAML.dump(service_proxy, out)
end
end
# Fetch mariadb section ports
# puppet modules/profile/manifests/kubernetes/deployment_server/global_config.pp
mariadb_sections = {}
URI.open(MARIADB_SECTION_PORTS_URL) do |res|
decoded = Base64.decode64(res.read)
hiera = YAML.safe_load(decoded, aliases: true)
mariadb_sections = { 'mariadb' => { 'section_ports' => hiera['profile::mariadb::section_ports'] } }
end
# Fetch hiera's common.yaml to extract lists of known clusters.
common_clusters = {}
URI.open(COMMON_HIERA_URL) do |res|
decoded = Base64.decode64(res.read)
hiera = YAML.safe_load(decoded)
zookeeper_mock = ['1.2.3.4/32']
zookeeper_clusters = {}
hiera['zookeeper_clusters'].each_key do |cluster_name|
zookeeper_clusters[cluster_name] = zookeeper_mock
end
common_clusters['zookeeper_clusters'] = zookeeper_clusters
kafka_mock = ['1.2.3.4/32']
kafka_brokers = {}
hiera['kafka_clusters'].each_key do |cluster_name|
kafka_brokers[cluster_name] = kafka_mock
end
common_clusters['kafka_brokers'] = kafka_brokers
end
# Read the kubernetes cluster information from hiera
# merging defaults with cluster settings. Like modules/k8s/manifests/clusters.pp
kubernetes_clusters = {}
URI.open(COMMON_KUBERNETES_HIERA_URL) do |res|
decoded = Base64.decode64(res.read)
hiera = YAML.safe_load(decoded, aliases: true)
defaults = hiera['kubernetes::clusters_defaults']
hiera['kubernetes::clusters'].each do |group_name, clusters|
clusters.each do |cluster_name, cluster_values|
kubernetes_clusters[cluster_name] = deep_merge(cluster_values, defaults.dup)
kubernetes_clusters[cluster_name]['cluster_group'] = group_name
if cluster_values.has_key?('cluster_alias')
kubernetes_clusters[cluster_values['cluster_alias']] = kubernetes_clusters[cluster_name]
end
end
end
end
# Mock the data structure created for the external-services chart in
# puppet modules/profile/manifests/kubernetes/deployment_server/global_config.pp
external_services_definitions = {
'external_services_definitions' => {
'kafka' => {
'_meta' => {
'ports' => [
{
'name' => 'plaintext',
'port' => 9092
},
{
'name' => 'tls',
'port' => 9093
}
]
},
'instances' => {
'main-eqiad' => [
'1.2.3.4/32',
'fe80::ffff:ffff:ffff:ffff/128',
],
'main-codfw' => [
'1.2.3.4/32',
'fe80::ffff:ffff:ffff:ffff/128',
]
}
},
'kerberos' => {
'_meta' => {
'ports' => [
{
'name' => 'ticket',
'port' => 88,
'protocol' => 'UDP'
},
{
'name' => 'ticket-large',
'port' => 88
}
]
},
'instances' => {
'kdc' => [
'1.2.3.4',
'fe80::ffff:ffff:ffff:ffff',
]
}
},
}
}
# Fetch general settings for all environment, similar to
# puppet modules/profile/manifests/kubernetes/deployment_server/global_config.pp
URI.open(DEPLOYMENT_SERVER_KUBERNETES_HIERA_URL) do |res|
decoded = Base64.decode64(res.read)
hiera = YAML.safe_load(decoded, aliases: true)
data = hiera['profile::kubernetes::deployment_server::general']
write_env_fixtures = lambda do |env_name, cluster_values|
File.open(".fixtures/general-#{env_name}.yaml", 'w') do |out|
res = [
data['default'],
cluster_values,
service_proxy,
mariadb_sections,
common_clusters,
external_services_definitions,
{'kubernetesVersion' => kubernetes_clusters[env_name]['version']}
].reduce { |acc, h| deep_merge(h, acc) }
YAML.dump(res, out)
end
end
data.each do |cluster_name, cluster_values|
next if cluster_name == "default"
write_env_fixtures.call(cluster_name, cluster_values)
if cluster_name == 'staging-eqiad'
write_env_fixtures.call('staging', cluster_values)
end
end
end
end
task :check, [:kind, :tests, :assets] do |_, args|
# This task is supposed to only be called by upstream ones
# so it *has* args
view = Tester.view args
options = {}
options[:assets] = args[:assets].split('/') unless args[:assets].nil?
options[:tests] = args[:tests].split('/') unless args[:tests].nil?
pattern = case args[:kind]
when 'charts'
CHARTS_GLOB
when 'deployments'
HELMFILE_GLOB
when 'admin'
'admin'
when 'scaffold'
'scaffold'
end
# Update JSON schema if validate (e.g. kubeconform) will be called
if options[:tests].nil? || options[:tests].include?('validate')
Rake::Task[:json_schema].invoke
end
tr = Tester.runner pattern, options
tr.run
puts view.render(tr)
abort('validation failed') unless tr.failed.empty?
end
desc 'Run checks for all the charts.'
task :check_charts, %i[tests charts] => [:refresh_fixtures] do |_, args|
args = {} if args.nil?
Rake::Task[:check].invoke('charts', args.fetch(:tests, nil), args.fetch(:charts, nil))
Rake::Task[:check].reenable
end
desc 'Run checks for all deployments.'
task :check_deployments, %i[tests deployments] => [:refresh_fixtures] do |_, args|
args = {} if args.nil?
Rake::Task[:repo_update].invoke
Rake::Task[:refresh_fixtures].invoke
Rake::Task[:check].invoke('deployments', args.fetch(:tests, nil), args.fetch(:deployments, nil))
Rake::Task[:check].reenable
end
desc 'Run checks for the admin section'
task :check_admin, %i[tests envs] => [:repo_update, :refresh_fixtures] do |_, args|
args = {} if args.nil?
Rake::Task[:check].invoke('admin', args.fetch(:tests, nil), args.fetch(:envs, nil))
Rake::Task[:check].reenable
end
def bump_chart_version(filename)
content = File.read(filename)
match = content.match(/^version: \d+\.\d+\.(\d+)$/)
return unless match
new_patch_version = (match[1].to_i + 1).to_s
content.gsub!(/^(version: \d+\.\d+\.)\d+$/, "\\1#{new_patch_version}")
File.write filename, content
end
desc 'Only checks the charts/deployments affected by our change'
task :check_change do
g = Git.open('.')
g.add_remote('origin', REPO_URL, fetch: true) unless g.remotes.map(&:name).include?('origin')
# First refresh origin, to be sure we're comparing our code to
# production's HEAD
g.remote('origin').fetch
changes = g.changed_files('origin/master')
# Before doing anything else, we check if the ruby files are changed. If so, we run everything
# as the impacted file is in CI
if changes.values.flatten.filter{ |path| (path == 'Rakefile' || path.start_with?(".rake_modules"))}.empty?
puts tasklist_from_changes(changes)
else
Rake::Task[:all].invoke
end
end
def tasklist_from_changes(changes)
tasks = {scaffold: false, charts: [], deployments: [], admin: false, envoy: true, istio: false}
all_changes = changes.values.flatten
# Scaffold is easy. Any file under _scaffold or modules changed?
all_changes.each do |path|
if path.start_with?('_scaffold/') || path.start_with?('modules')
tasks[:scaffold] = true
break
end
end
# Walk the fs tree up from the change to find all charts this change is part of.
# Charts may contain subcharts, if a subchart has changed we want to return that as well as it's parent.
# The parent should have the subchart as dependency - but you never know.
charts = []
all_changes.filter { |p| p.start_with?('charts/') }.each do |p|
Pathname.new(p).ascend do |v|
pv = File.join(v, 'Chart.yaml')
next unless File.exist?(pv)
charts |= [v.basename.to_s]
end
end
# Now let's find if any chart in our repo depends on the charts we've modified. We will need to test them as well.
FileList.new(CHARTS_GLOB).each do |path_to_chart|
chart_yaml = yaml_load_file(path_to_chart)
chart_name = chart_yaml['name']
dependencies = []
# Dependencies are to be defined in Chart.yaml
dependencies = chart_yaml['dependencies'] if chart_yaml['dependencies']
next unless dependencies
dependencies.each do |dep|
next unless dep.key?('name')
charts << chart_name if charts.include? dep['name']
end
end
tasks[:charts] = charts.uniq
# Now let's check deployments.
# First let's find deployments that have been modified directly
deps = all_changes.filter { |p| p.start_with?(%r{helmfile.d/.*services/}) && p.split('/').length > 2 }
# Now check if any file in each service deployment directory links to a modified file
deps.map{ |p| File.dirname(File.dirname(p)) }.uniq.each do |dir|
FileList.new(dir + '/**/*').each do |path|
if File.symlink?(path)
# Get target path relative to the repository path (as thats what we got in all_changes)
target = (Pathname.new(File.dirname(path)) + File.readlink(path)).to_s
if deps.include?(target)
# This deployment links to a modified file, add it to the array
deps << path unless deps.include? path
end
end
end
end
tasks[:deployments] = deps.map{ |p| p.split('/')[2] }.uniq
# Find deployments that depend on a specific chart that changed
FileList.new(HELMFILE_GLOB).each do |path_to_helmfile|
# We load an helmfile asset, but do not intend to run it or collect fixtures
# this is, unless someone adds a "nonexistent" deployment one day.
asset = Tester::HelmfileAsset.new(path_to_helmfile, ['nonexistent'])
next if tasks[:deployments].include?(asset.name)
asset.collect_charts.each do |chart|
next unless tasks[:charts].include?(chart)
tasks[:deployments] << asset.name
end
end
# Now let's check if any file was changed in helmfile.d/admin_ng
all_changes.each do |changed_file|
if changed_file.start_with?('helmfile.d/admin_ng')
tasks[:admin] = true
break
end
end
# We also need to see if any chart used there is actually changed.
unless tasks[:admin]
asset = Tester::AdminAsset.new('helmfile.d/admin_ng/helmfile.yaml', ['nonexistent'])
asset.collect_charts.each do |chart|
if tasks[:charts].include?(chart)
tasks[:admin] = true
break
end
end
end
# validate_istio_config checks
# anything under 'custom_deploy.d/istio/*/config.yaml'
intersection = FileList.new('custom_deploy.d/istio/*/config.yaml') & all_changes
tasks[:istio] = !intersection.empty?
# TODO: also check heuristically for envoy
Rake::Task[:test_scaffold].invoke if tasks[:scaffold]
Rake::Task[:check_charts].invoke(nil, tasks[:charts].join('/')) unless tasks[:charts].empty?
Rake::Task[:check_deployments].invoke(nil, tasks[:deployments].join('/')) unless tasks[:deployments].empty?
Rake::Task[:check_admin].invoke if tasks[:admin]
Rake::Task[:validate_envoy_config].invoke if tasks[:envoy]
Rake::Task[:validate_istio_config].invoke if tasks[:istio]
end
# This is the old default
task all: %i[repo_update test_scaffold check_charts check_deployments check_admin validate_envoy_config validate_istio_config]
task default: %i[check_change]