mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 17:07:04 +02:00
29 lines
811 B
YAML
29 lines
811 B
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/main/schema/helm-testsuite.json
|
|
suite: nameOverride tests
|
|
templates:
|
|
- common.yaml
|
|
values:
|
|
- ../_values/controllers_main_default_container.yaml
|
|
tests:
|
|
- it: default name is set to release name
|
|
asserts:
|
|
- documentIndex: &ControllerDoc 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: *ControllerDoc
|
|
equal:
|
|
path: metadata.name
|
|
value: RELEASE-NAME
|
|
|
|
- it: global.nameOverride can be set
|
|
set:
|
|
global.nameOverride: custom-name
|
|
asserts:
|
|
- documentIndex: &ControllerDoc 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: *ControllerDoc
|
|
equal:
|
|
path: metadata.name
|
|
value: RELEASE-NAME-custom-name
|