Skip to content

Commit 63799d2

Browse files
authored
Merge pull request #944 from Shopify/skip-validate-dryrun
Created new optional flag to skip dry run proccess during deploy
2 parents 41a63a8 + 36b803e commit 63799d2

File tree

7 files changed

+25
-5
lines changed

7 files changed

+25
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## next
22

3+
# 3.4.1
4+
5+
- Added flag `--skip-dry-run` to completely opt out of dry run validation.
6+
37
# 3.4.0
48

59
- Use `prune-allowlist` instead of `prune-whitelist` for 1.26+ clusters. Clusters running 1.25 or less will continue to use `--prune-whitelist`. [#940](https://github.com/Shopify/krane/pull/940)

lib/krane/cli/deploy_command.rb

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class DeployCommand
3333
default: false },
3434
"verify-result" => { type: :boolean, default: true,
3535
desc: "Verify workloads correctly deployed" },
36+
"skip-dry-run" => { type: :boolean, desc: "Enable skipping dry run", default: false},
3637
}
3738

3839
def self.from_options(namespace, context, options)
@@ -71,6 +72,7 @@ def self.from_options(namespace, context, options)
7172
selector: selector,
7273
selector_as_filter: selector_as_filter,
7374
protected_namespaces: protected_namespaces,
75+
skip_dry_run: options["skip-dry-run"]
7476
)
7577

7678
deploy.run!(

lib/krane/deploy_task.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def server_version
106106
# @param render_erb [Boolean] Enable ERB rendering
107107
def initialize(namespace:, context:, current_sha: nil, logger: nil, kubectl_instance: nil, bindings: {},
108108
global_timeout: nil, selector: nil, selector_as_filter: false, filenames: [], protected_namespaces: nil,
109-
render_erb: false, kubeconfig: nil)
109+
render_erb: false, kubeconfig: nil, skip_dry_run: false)
110110
@logger = logger || Krane::FormattedLogger.build(namespace, context)
111111
@template_sets = TemplateSets.from_dirs_and_files(paths: filenames, logger: @logger, render_erb: render_erb)
112112
@task_config = Krane::TaskConfig.new(context, namespace, @logger, kubeconfig)
@@ -121,6 +121,7 @@ def initialize(namespace:, context:, current_sha: nil, logger: nil, kubectl_inst
121121
@selector_as_filter = selector_as_filter
122122
@protected_namespaces = protected_namespaces || PROTECTED_NAMESPACES
123123
@render_erb = render_erb
124+
@skip_dry_run = skip_dry_run
124125
end
125126

126127
# Runs the task, returning a boolean representing success or failure
@@ -286,7 +287,7 @@ def validate_configuration(prune:)
286287

287288
def validate_resources(resources)
288289
validate_globals(resources)
289-
batch_dry_run_success = validate_dry_run(resources)
290+
batch_dry_run_success = @skip_dry_run || validate_dry_run(resources)
290291
resources.select! { |r| r.selected?(@selector) } if @selector_as_filter
291292
Krane::Concurrency.split_across_threads(resources) do |r|
292293
# No need to pass in kubectl (and do per-resource dry run apply) if batch dry run succeeded

lib/krane/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module Krane
3-
VERSION = "3.4.0"
3+
VERSION = "3.4.1"
44
end

test/exe/deploy_test.rb

+1
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ def default_options(new_args = {}, run_args = {})
164164
selector: nil,
165165
selector_as_filter: false,
166166
protected_namespaces: ["default", "kube-system", "kube-public"],
167+
skip_dry_run: false,
167168
}.merge(new_args),
168169
run_args: {
169170
verify_result: true,

test/helpers/fixture_deploy_helper.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def deploy_raw_fixtures(set, wait: true, bindings: {}, subset: nil, render_erb:
8787
success
8888
end
8989

90-
def deploy_dirs_without_profiling(dirs, wait: true, prune: true, bindings: {},
90+
def deploy_dirs_without_profiling(dirs, wait: true, prune: true, skip_dry_run: false, bindings: {},
9191
sha: "k#{SecureRandom.hex(6)}", kubectl_instance: nil, global_timeout: nil,
9292
selector: nil, selector_as_filter: false,
9393
protected_namespaces: nil, render_erb: false, context: KubeclientHelper::TEST_CONTEXT)
@@ -105,7 +105,8 @@ def deploy_dirs_without_profiling(dirs, wait: true, prune: true, bindings: {},
105105
selector: selector,
106106
selector_as_filter: selector_as_filter,
107107
protected_namespaces: protected_namespaces,
108-
render_erb: render_erb
108+
render_erb: render_erb,
109+
skip_dry_run: skip_dry_run
109110
)
110111
deploy.run(
111112
verify_result: wait,

test/integration-serial/serial_deploy_test.rb

+11
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,17 @@ def test_batch_dry_run_apply_success_precludes_individual_resource_dry_run_valid
546546
], in_order: true)
547547
end
548548

549+
def test_skip_dry_run_apply_success
550+
Krane::KubernetesResource.any_instance.expects(:validate_definition).with { |params| params[:dry_run] == false }
551+
Krane::ResourceDeployer.any_instance.expects(:dry_run).never
552+
result = deploy_fixtures("hello-cloud", subset: %w(secret.yml), skip_dry_run: true)
553+
assert_deploy_success(result)
554+
assert_logs_match_all([
555+
"Result: SUCCESS",
556+
"Successfully deployed 1 resource",
557+
], in_order: true)
558+
end
559+
549560
private
550561

551562
def rollout_conditions_annotation_key

0 commit comments

Comments
 (0)