This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Handling of directories in the init container (#309)
* fix: Handling of directories in the init container * feat: Flush logs of nginx in integration tests
- Loading branch information
Raphael Ludwig
authored
Jul 8, 2022
1 parent
5187bd9
commit 7bd83dc
Showing
8 changed files
with
210 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v2 | ||
actions: | ||
- name: "Files e2e test" | ||
events: | ||
- name: "sh.keptn.event.deployment.triggered" | ||
tasks: | ||
- name: "Print sha1sum of files" | ||
image: "alpine" | ||
files: | ||
- helm | ||
cmd: | ||
- sh | ||
args: | ||
- "-c" | ||
- 'find /keptn -type f -name "*" -exec sha1sum {} \;' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"data": { | ||
"project": "e2e-project", | ||
"service": "e2e-service", | ||
"stage": "e2e" | ||
}, | ||
"source": "e2e-test", | ||
"specversion": "1.0", | ||
"type": "sh.keptn.event.e2e.jes.triggered" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: "spec.keptn.sh/0.2.2" | ||
kind: "Shipyard" | ||
metadata: | ||
name: "e2e-deployment-shipyard" | ||
spec: | ||
stages: | ||
- name: "e2e" | ||
sequences: | ||
- name: "jes" | ||
tasks: | ||
- name: "deployment" |