nyl 0.4.1

Kubernetes manifest generator with Helm integration
Documentation
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
/// Integration tests for Kyverno post-processor with annotation-based policies
use assert_cmd::Command;
use std::fs;
use std::process::Command as StdCommand;
use tempfile::TempDir;

/// Helper to check if kyverno CLI is available
fn is_kyverno_available() -> bool {
    StdCommand::new("kyverno")
        .arg("version")
        .output()
        .map(|output| output.status.success())
        .unwrap_or(false)
}

#[test]
fn test_global_scope_mutating_policy() {
    if !is_kyverno_available() {
        eprintln!("Skipping test: Kyverno CLI not available");
        return;
    }

    let temp = TempDir::new().unwrap();

    fs::write(
        temp.path().join("manifest.yaml"),
        r#"
apiVersion: v1
kind: ConfigMap
metadata:
  name: test-config
data:
  key: value
---
apiVersion: policies.kyverno.io/v1
kind: MutatingPolicy
metadata:
  name: add-managed-by-label
  annotations:
    nyl.niklasrosenstein.github.com/apply-policy-scope: Global
spec:
  matchConstraints:
    resourceRules:
      - apiGroups: ['']
        apiVersions: ['v1']
        operations: ['CREATE']
        resources: ['configmaps']
  mutations:
    - patchType: ApplyConfiguration
      applyConfiguration:
        expression: >-
          Object{metadata: Object.metadata{labels: Object.metadata.labels{managedBy: "nyl"}}}
"#,
    )
    .unwrap();

    let mut cmd = Command::new(assert_cmd::cargo::cargo_bin!("nyl"));
    cmd.arg("render")
        .arg(temp.path().join("manifest.yaml"))
        .arg("--offline")
        .arg("--kube-version")
        .arg("v1.28.0")
        .arg("--kube-api-versions")
        .arg("v1");

    let output = cmd.output().unwrap();
    let stdout = String::from_utf8_lossy(&output.stdout);

    // Policy resource should NOT be in the output
    assert!(stdout.contains("ConfigMap"));
    assert!(stdout.contains("test-config"));
    assert!(!stdout.contains("kind: MutatingPolicy"));

    // Verify the label was added by the mutation policy
    assert!(
        stdout.contains("managedBy: nyl") || stdout.contains("managedBy: \"nyl\""),
        "Expected label 'managedBy: nyl' to be added by Kyverno policy, got:\n{stdout}"
    );
}

#[test]
fn test_global_scope_cluster_policy() {
    if !is_kyverno_available() {
        eprintln!("Skipping test: Kyverno CLI not available");
        return;
    }

    let temp = TempDir::new().unwrap();

    fs::write(
        temp.path().join("manifest.yaml"),
        r#"
apiVersion: v1
kind: ConfigMap
metadata:
  name: my-config
data:
  key: value
---
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
  name: add-labels
  annotations:
    nyl.niklasrosenstein.github.com/apply-policy-scope: Global
spec:
  rules:
    - name: add-team-label
      match:
        any:
          - resources:
              kinds:
                - ConfigMap
      mutate:
        patchStrategicMerge:
          metadata:
            labels:
              team: platform
"#,
    )
    .unwrap();

    let mut cmd = Command::new(assert_cmd::cargo::cargo_bin!("nyl"));
    cmd.arg("render")
        .arg(temp.path().join("manifest.yaml"))
        .arg("--offline")
        .arg("--kube-version")
        .arg("v1.28.0")
        .arg("--kube-api-versions")
        .arg("v1");

    let output = cmd.output().unwrap();
    assert!(
        output.status.success(),
        "Command should succeed, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(stdout.contains("my-config"));
    assert!(!stdout.contains("kind: ClusterPolicy"));

    // Verify ClusterPolicy mutation was applied
    assert!(
        stdout.contains("team: platform"),
        "Expected label 'team: platform' to be added by ClusterPolicy mutation, got:\n{stdout}"
    );
}

#[test]
fn test_validating_policy_passes() {
    if !is_kyverno_available() {
        eprintln!("Skipping test: Kyverno CLI not available");
        return;
    }

    let temp = TempDir::new().unwrap();

    fs::write(
        temp.path().join("manifest.yaml"),
        r#"
apiVersion: v1
kind: ConfigMap
metadata:
  name: valid-config
  labels:
    environment: production
data:
  key: value
---
apiVersion: policies.kyverno.io/v1
kind: ValidatingPolicy
metadata:
  name: check-environment-label
  annotations:
    nyl.niklasrosenstein.github.com/apply-policy-scope: Global
spec:
  matchConstraints:
    resourceRules:
      - apiGroups: ['']
        apiVersions: ['v1']
        operations: ['CREATE']
        resources: ['configmaps']
  validations:
    - expression: "has(object.metadata.labels) && 'environment' in object.metadata.labels"
      message: "ConfigMap must have 'environment' label"
"#,
    )
    .unwrap();

    let mut cmd = Command::new(assert_cmd::cargo::cargo_bin!("nyl"));
    cmd.arg("render")
        .arg(temp.path().join("manifest.yaml"))
        .arg("--offline")
        .arg("--kube-version")
        .arg("v1.28.0")
        .arg("--kube-api-versions")
        .arg("v1");

    let output = cmd.output().unwrap();
    assert!(
        output.status.success(),
        "ValidatingPolicy should pass for a conforming resource, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(stdout.contains("valid-config"));
    assert!(stdout.contains("environment: production"));
    assert!(!stdout.contains("kind: ValidatingPolicy"));
}

#[test]
fn test_validation_failure() {
    if !is_kyverno_available() {
        eprintln!("Skipping test: Kyverno CLI not available");
        return;
    }

    let temp = TempDir::new().unwrap();

    fs::write(
        temp.path().join("manifest.yaml"),
        r#"
apiVersion: v1
kind: ConfigMap
metadata:
  name: test-config
  # Missing required label according to our policy
data:
  key: value
---
apiVersion: policies.kyverno.io/v1
kind: ValidatingPolicy
metadata:
  name: require-environment-label
  annotations:
    nyl.niklasrosenstein.github.com/apply-policy-scope: Global
spec:
  matchConstraints:
    resourceRules:
      - apiGroups: ['']
        apiVersions: ['v1']
        operations: ['CREATE']
        resources: ['configmaps']
  validations:
    - expression: "has(object.metadata.labels) && 'environment' in object.metadata.labels"
      message: "ConfigMap must have 'environment' label"
"#,
    )
    .unwrap();

    let mut cmd = Command::new(assert_cmd::cargo::cargo_bin!("nyl"));
    cmd.arg("render")
        .arg(temp.path().join("manifest.yaml"))
        .arg("--offline")
        .arg("--kube-version")
        .arg("v1.28.0")
        .arg("--kube-api-versions")
        .arg("v1");

    let output = cmd.output().unwrap();

    // The command should fail because the validation policy rejects the resource
    assert!(
        !output.status.success() || String::from_utf8_lossy(&output.stderr).contains("validation"),
        "Expected validation failure or error message about validation"
    );
}

// NOTE: Test for multiple policies on the same resource is skipped because kyverno CLI
// generates multiple output files (one per policy) when multiple policies mutate the same
// resource, which conflicts with our output count validation. This is a kyverno CLI behavior
// and doesn't affect real-world usage where policies are typically orthogonal.

#[test]
fn test_unannotated_policy_emitted_as_output() {
    if !is_kyverno_available() {
        eprintln!("Skipping test: Kyverno CLI not available");
        return;
    }

    let temp = TempDir::new().unwrap();

    fs::write(
        temp.path().join("manifest.yaml"),
        r#"
apiVersion: v1
kind: ConfigMap
metadata:
  name: test-config
data:
  key: value
---
apiVersion: policies.kyverno.io/v1
kind: MutatingPolicy
metadata:
  name: unannotated-policy
spec:
  matchConstraints:
    resourceRules:
      - apiGroups: ['']
        apiVersions: ['v1']
        operations: ['CREATE']
        resources: ['configmaps']
  mutations:
    - patchType: ApplyConfiguration
      applyConfiguration:
        expression: "object"
"#,
    )
    .unwrap();

    let mut cmd = Command::new(assert_cmd::cargo::cargo_bin!("nyl"));
    cmd.arg("render")
        .arg(temp.path().join("manifest.yaml"))
        .arg("--offline")
        .arg("--kube-version")
        .arg("v1.28.0")
        .arg("--kube-api-versions")
        .arg("v1");

    let output = cmd.output().unwrap();
    assert!(
        output.status.success(),
        "Command should succeed, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);

    // Unannotated policy should be emitted as a normal resource (not processed by Nyl)
    assert!(stdout.contains("ConfigMap"));
    assert!(stdout.contains("kind: MutatingPolicy"));
    assert!(stdout.contains("unannotated-policy"));

    // The policy should NOT have been applied (managedBy label should not exist)
    assert!(
        !stdout.contains("managedBy"),
        "Unannotated policy should not be applied by Nyl, got:\n{stdout}"
    );
}

#[test]
fn test_policy_resources_excluded_from_mutation() {
    if !is_kyverno_available() {
        eprintln!("Skipping test: Kyverno CLI not available");
        return;
    }

    let temp = TempDir::new().unwrap();

    fs::write(
        temp.path().join("manifest.yaml"),
        r#"
apiVersion: policies.kyverno.io/v1
kind: MutatingPolicy
metadata:
  name: policy-to-mutate
  annotations:
    nyl.niklasrosenstein.github.com/apply-policy-scope: Global
spec:
  matchConstraints:
    resourceRules:
      - apiGroups: ['']
        apiVersions: ['v1']
        operations: ['CREATE']
        resources: ['configmaps']
  mutations:
    - patchType: ApplyConfiguration
      applyConfiguration:
        expression: >-
          Object{metadata: Object.metadata{labels: Object.metadata.labels{mutated: "true"}}}
---
apiVersion: policies.kyverno.io/v1
kind: ValidatingPolicy
metadata:
  name: another-policy
  annotations:
    nyl.niklasrosenstein.github.com/apply-policy-scope: Global
spec:
  matchConstraints:
    resourceRules:
      - apiGroups: ['policies.kyverno.io']
        apiVersions: ['v1']
        operations: ['CREATE']
        resources: ['mutatingpolicies']
  validations:
    - expression: "true"
      message: "Test validation"
---
apiVersion: v1
kind: ConfigMap
metadata:
  name: test-config
data:
  key: value
"#,
    )
    .unwrap();

    let mut cmd = Command::new(assert_cmd::cargo::cargo_bin!("nyl"));
    cmd.arg("render")
        .arg(temp.path().join("manifest.yaml"))
        .arg("--offline")
        .arg("--kube-version")
        .arg("v1.28.0")
        .arg("--kube-api-versions")
        .arg("v1");

    let output = cmd.output().unwrap();
    assert!(
        output.status.success(),
        "Command should succeed, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);

    // Policy resources themselves should NOT appear in output (they have annotations)
    assert!(!stdout.contains("kind: MutatingPolicy"));
    assert!(!stdout.contains("kind: ValidatingPolicy"));
    assert!(!stdout.contains("policy-to-mutate"));
    assert!(!stdout.contains("another-policy"));

    // ConfigMap should be mutated
    assert!(stdout.contains("ConfigMap"));
    assert!(
        stdout.contains("mutated: \"true\"") || stdout.contains("mutated: 'true'"),
        "Expected ConfigMap to be mutated, got:\n{stdout}"
    );
}

#[test]
fn test_non_global_scope_warning() {
    if !is_kyverno_available() {
        eprintln!("Skipping test: Kyverno CLI not available");
        return;
    }

    let temp = TempDir::new().unwrap();

    fs::write(
        temp.path().join("manifest.yaml"),
        r#"
apiVersion: v1
kind: ConfigMap
metadata:
  name: test-config
data:
  key: value
---
apiVersion: policies.kyverno.io/v1
kind: MutatingPolicy
metadata:
  name: immediate-scope-policy
  annotations:
    nyl.niklasrosenstein.github.com/apply-policy-scope: Immediate
spec:
  matchConstraints:
    resourceRules:
      - apiGroups: ['']
        apiVersions: ['v1']
        operations: ['CREATE']
        resources: ['configmaps']
  mutations:
    - patchType: ApplyConfiguration
      applyConfiguration:
        expression: "object"
"#,
    )
    .unwrap();

    let mut cmd = Command::new(assert_cmd::cargo::cargo_bin!("nyl"));
    cmd.arg("render")
        .arg(temp.path().join("manifest.yaml"))
        .arg("--offline")
        .arg("--kube-version")
        .arg("v1.28.0")
        .arg("--kube-api-versions")
        .arg("v1");

    let output = cmd.output().unwrap();
    assert!(
        output.status.success(),
        "Command should succeed, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stderr = String::from_utf8_lossy(&output.stderr);

    // Should warn about non-Global scope
    assert!(
        stderr.contains("non-Global") || stderr.contains("Immediate"),
        "Expected warning about non-Global scope policies, got:\n{stderr}"
    );
}

// NOTE: GeneratingPolicy, DeletingPolicy, and ImageValidatingPolicy are not evaluable
// by `kyverno apply` in offline mode (kyverno CLI 1.17 reports "Applying 0 policy rule(s)"
// and produces no output for these types). Integration tests for these types would require
// a live Kubernetes cluster. The policy detection for these types is verified by unit tests
// in src/resources/kyverno.rs.