feat!: Rename common-chart to app-template

This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2022-08-08 15:05:46 +02:00
parent 567577762f
commit 6a2bee4036
No known key found for this signature in database
GPG key ID: BC5E2BD907F9A8EC
48 changed files with 70 additions and 70 deletions

View file

@ -0,0 +1,91 @@
suite: configMap names
templates:
- common.yaml
tests:
- it: default should pass
asserts:
- hasDocuments:
count: 2
- documentIndex: 0
not: true
isKind:
of: ConfigMap
- documentIndex: 1
not: true
isKind:
of: ConfigMap
- it: with disabled configMap should pass
set:
configmap:
config:
enabled: false
asserts:
- hasDocuments:
count: 2
- documentIndex: 0
not: true
isKind:
of: ConfigMap
- documentIndex: 1
not: true
isKind:
of: ConfigMap
- it: with multiple configMap should pass
set:
configmap:
config:
enabled: true
data:
foo: bar
secondary:
enabled: true
asserts:
- hasDocuments:
count: 4
- documentIndex: 0
isKind:
of: ConfigMap
- documentIndex: 0
isNotNull:
path: metadata.name
- documentIndex: 1
isKind:
of: ConfigMap
- documentIndex: 1
isNotNull:
path: metadata.name
- it: default name should pass
set:
configmap:
config:
enabled: true
asserts:
- hasDocuments:
count: 3
- documentIndex: 0
isKind:
of: ConfigMap
- documentIndex: 0
equal:
path: metadata.name
value: RELEASE-NAME-app-template-config
- it: with nameOverride should pass
set:
configmap:
config:
enabled: true
nameOverride: http
asserts:
- hasDocuments:
count: 3
- documentIndex: 0
isKind:
of: ConfigMap
- documentIndex: 0
equal:
path: metadata.name
value: RELEASE-NAME-app-template-http