feat(common): Release common library 3.6.0 (#364)

Signed-off-by: solidDoWant <fred.heinecke@yahoo.com>
Co-authored-by: solidDoWant <fred.heinecke@yahoo.com>
This commit is contained in:
Bernd Schorgers 2024-12-26 11:29:00 +01:00 committed by GitHub
parent 6d23aa66ca
commit e68b41ed0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 240 additions and 9 deletions

View file

@ -0,0 +1,58 @@
---
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/main/schema/helm-testsuite.json
suite: pod security
templates:
- common.yaml
values:
- ../_values/controllers_main_default_container.yaml
capabilities:
majorVersion: 1
minorVersion: 29
tests:
- it: default should pass for kubernetes < 1.28
capabilities:
majorVersion: 1
minorVersion: 28
asserts:
- documentIndex: 0
isKind:
of: Deployment
- documentIndex: 0
notExists:
path: spec.template.spec.hostUsers
- it: default should pass for kubernetes >= 1.29
asserts:
- documentIndex: 0
isKind:
of: Deployment
- documentIndex: 0
equal:
path: spec.template.spec.hostUsers
value: true
- it: hostUsers disabled should pass
set:
defaultPodOptions:
hostUsers: false
asserts:
- documentIndex: 0
isKind:
of: Deployment
- documentIndex: 0
equal:
path: spec.template.spec.hostUsers
value: false
- it: hostUsers enabled should pass
set:
defaultPodOptions:
hostUsers: true
asserts:
- documentIndex: 0
isKind:
of: Deployment
- documentIndex: 0
equal:
path: spec.template.spec.hostUsers
value: true