mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 08:57:04 +02:00
25 lines
618 B
YAML
25 lines
618 B
YAML
suite: nameOverride tests
|
|
templates:
|
|
- common.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
|