-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #332 from kmala/charts
feat(charts): Add helm charts for workflow-e2e
- Loading branch information
Showing
4 changed files
with
81 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: workflow-e2e | ||
home: https://github.com/deis/workflow-e2e | ||
version: <Will be populated by the ci before publishing the chart> | ||
description: End-to-end tests for Deis Workflow, executed in parallel. | ||
maintainers: | ||
- name: Deis Team | ||
email: engineering@deis.com |
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,29 @@ | ||
apiVersion: extensions/v1beta1 | ||
kind: DaemonSet | ||
metadata: | ||
name: deis-spotify-gc | ||
labels: | ||
heritage: deis | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: deis-spotify-gc | ||
heritage: deis | ||
template: | ||
metadata: | ||
name: deis-spotify-gc | ||
labels: | ||
heritage: deis | ||
app: deis-spotify-gc | ||
spec: | ||
containers: | ||
- name: deis-spotify-gc | ||
image: spotify/docker-gc:latest | ||
imagePullPolicy: Always | ||
volumeMounts: | ||
- mountPath: /var/run/docker.sock | ||
name: docker-socket | ||
volumes: | ||
- name: docker-socket | ||
hostPath: | ||
path: /var/run/docker.sock |
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,37 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: {{.Values.pod_name}} | ||
labels: | ||
heritage: deis | ||
spec: | ||
restartPolicy: Never | ||
containers: | ||
- name: tests | ||
image: quay.io/{{.Values.org}}/workflow-e2e:{{.Values.docker_tag}} | ||
imagePullPolicy: {{.Values.pull_policy}} | ||
env: | ||
- name: GINKGO_NODES | ||
value: "{{.Values.ginko_nodes}}" | ||
- name: JUNIT | ||
value: "true" | ||
- name: CLI_VERSION | ||
value: "{{.Values.cli_version}}" | ||
# set TEST env variable to run appropriate tests in e2e suite | ||
- name: TEST | ||
value: "{{.Values.test}}" | ||
- name: DEBUG_MODE | ||
value: {{.Values.debug_mode}} | ||
volumeMounts: | ||
- name: artifact-volume | ||
mountPath: /root | ||
- name: artifacts | ||
image: busybox | ||
imagePullPolicy: Always | ||
command: ["tail", "-f", "/dev/null"] | ||
volumeMounts: | ||
- name: artifact-volume | ||
mountPath: /root | ||
volumes: | ||
- name: artifact-volume | ||
emptyDir: {} |
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,8 @@ | ||
org: "deisci" | ||
docker_tag: "canary" | ||
pull_policy: "Always" | ||
pod_name: "workflow-dev-e2e" | ||
ginko_nodes: 15 | ||
cli_version: "latest" | ||
test: "e2e" | ||
debug_mode: "false" |