mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 16:37:04 +02:00
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/main/schema/helm-testsuite.json
|
|
suite: container name
|
|
templates:
|
|
- common.yaml
|
|
tests:
|
|
- it: with explicit name should pass
|
|
set:
|
|
controllers.main.containers:
|
|
main:
|
|
nameOverride: template-test
|
|
controller: main
|
|
image:
|
|
repository: ghcr.io/mendhak/http-https-echo
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.containers[0].name
|
|
value: template-test
|
|
|
|
- it: with implicit name should pass
|
|
set:
|
|
controllers.main.containers:
|
|
main:
|
|
controller: main
|
|
image:
|
|
repository: ghcr.io/mendhak/http-https-echo
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.containers[0].name
|
|
value: main
|
|
|
|
- it: with templated name should pass
|
|
set:
|
|
controllers.main.containers:
|
|
main:
|
|
nameOverride: "{{ .Release.Name }}-container"
|
|
controller: main
|
|
image:
|
|
repository: ghcr.io/mendhak/http-https-echo
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.containers[0].name
|
|
value: RELEASE-NAME-container
|