Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
fix e2e check
Browse files Browse the repository at this point in the history
Signed-off-by: Shubham Gupta <iamshubhamgupta2001@gmail.com>
  • Loading branch information
shubham-cmyk committed Sep 12, 2023
1 parent 2cc59af commit 4eaeffa
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
21 changes: 3 additions & 18 deletions pkg/test/test_data/teststep-assert/00-create.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,9 @@
apiVersion: v1
kind: Pod
metadata:
name: hello2
spec:
containers:
- image: alpine
name: test
---
apiVersion: v1
kind: Pod
metadata:
name: hello
spec:
containers:
- image: alpine
name: test
---
# using assert from TestStep from multiple folder locations
apiVersion: kuttl.dev/v1beta1
kind: TestStep
apply:
- hello1-pod.yaml
- hello2/hello2-pod.yaml
assert:
- hello1-assert.yaml
- hello2/hello2-assert.yaml
8 changes: 8 additions & 0 deletions pkg/test/test_data/teststep-assert/hello1-pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: v1
kind: Pod
metadata:
name: hello
spec:
containers:
- image: alpine
name: test
8 changes: 8 additions & 0 deletions pkg/test/test_data/teststep-assert/hello2/hello2-pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: v1
kind: Pod
metadata:
name: hello2
spec:
containers:
- image: alpine
name: test

0 comments on commit 4eaeffa

Please sign in to comment.