mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 08:57:04 +02:00
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:
parent
6d23aa66ca
commit
e68b41ed0a
11 changed files with 240 additions and 9 deletions
|
@ -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
|
|
@ -0,0 +1,66 @@
|
|||
---
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/main/schema/helm-testsuite.json
|
||||
suite: "pod metadata: annotations"
|
||||
templates:
|
||||
- common.yaml
|
||||
values:
|
||||
- ../_values/controllers_main_default_container.yaml
|
||||
tests:
|
||||
- it: default pod annotations
|
||||
documentSelector: &DeploymentSelector
|
||||
path: $[?(@.kind == "Deployment")].metadata.name
|
||||
value: RELEASE-NAME
|
||||
asserts:
|
||||
- notExists:
|
||||
path: spec.template.metadata.annotations
|
||||
|
||||
- it: pod annotations from defaultPodOptions should be included
|
||||
set:
|
||||
defaultPodOptions:
|
||||
annotations:
|
||||
defaultPodOptionsAnnotation: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isSubset:
|
||||
path: spec.template.metadata.annotations
|
||||
content:
|
||||
defaultPodOptionsAnnotation: test
|
||||
|
||||
- it: pod annotations from pod options should be included
|
||||
set:
|
||||
controllers:
|
||||
main:
|
||||
pod:
|
||||
annotations:
|
||||
podOptionsAnnotation: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isSubset:
|
||||
path: spec.template.metadata.annotations
|
||||
content:
|
||||
podOptionsAnnotation: test
|
||||
|
||||
- it: pod annotations from global annotations should not be included by default
|
||||
set:
|
||||
global:
|
||||
annotations:
|
||||
globalAnnotation: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isNotSubset:
|
||||
path: spec.template.metadata.annotations
|
||||
content:
|
||||
globalAnnotation: test
|
||||
|
||||
- it: pod annotations from global annotations should be included when requested
|
||||
set:
|
||||
global:
|
||||
propagateGlobalMetadataToPods: true
|
||||
annotations:
|
||||
globalAnnotation: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isSubset:
|
||||
path: spec.template.metadata.annotations
|
||||
content:
|
||||
globalAnnotation: test
|
|
@ -0,0 +1,70 @@
|
|||
---
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/main/schema/helm-testsuite.json
|
||||
suite: "pod metadata: labels"
|
||||
templates:
|
||||
- common.yaml
|
||||
values:
|
||||
- ../_values/controllers_main_default_container.yaml
|
||||
tests:
|
||||
- it: default pod labels
|
||||
documentSelector: &DeploymentSelector
|
||||
path: $[?(@.kind == "Deployment")].metadata.name
|
||||
value: RELEASE-NAME
|
||||
asserts:
|
||||
- equal:
|
||||
path: spec.template.metadata.labels
|
||||
value:
|
||||
app.kubernetes.io/component: main
|
||||
app.kubernetes.io/instance: RELEASE-NAME
|
||||
app.kubernetes.io/name: RELEASE-NAME
|
||||
|
||||
- it: pod labels from defaultPodOptions should be included
|
||||
set:
|
||||
defaultPodOptions:
|
||||
labels:
|
||||
defaultPodOptionsLabel: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isSubset:
|
||||
path: spec.template.metadata.labels
|
||||
content:
|
||||
defaultPodOptionsLabel: test
|
||||
|
||||
- it: pod labels from pod options should be included
|
||||
set:
|
||||
controllers:
|
||||
main:
|
||||
pod:
|
||||
labels:
|
||||
podOptionsLabel: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isSubset:
|
||||
path: spec.template.metadata.labels
|
||||
content:
|
||||
podOptionsLabel: test
|
||||
|
||||
- it: pod labels from global labels should not be included by default
|
||||
set:
|
||||
global:
|
||||
labels:
|
||||
globalLabel: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isNotSubset:
|
||||
path: spec.template.metadata.labels
|
||||
content:
|
||||
globalLabel: test
|
||||
|
||||
- it: pod labels from global labels should be included when requested
|
||||
set:
|
||||
global:
|
||||
propagateGlobalMetadataToPods: true
|
||||
labels:
|
||||
globalLabel: test
|
||||
documentSelector: *DeploymentSelector
|
||||
asserts:
|
||||
- isSubset:
|
||||
path: spec.template.metadata.labels
|
||||
content:
|
||||
globalLabel: test
|
Loading…
Add table
Add a link
Reference in a new issue