Skip to content

Commit dec22e1

Browse files
authored
Merge pull request #362 from vdice/feat/use-upstream-docker-gc-chart
feat(chart): use upstream stable/spotify-docker-gc chart
2 parents 89fe7e3 + f9c6a4a commit dec22e1

File tree

6 files changed

+18
-30
lines changed

6 files changed

+18
-30
lines changed

charts/workflow-e2e/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
charts
2+
requirements.lock

charts/workflow-e2e/requirements.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dependencies:
2+
- name: spotify-docker-gc
3+
version: 0.1.0
4+
repository: https://kubernetes-charts.storage.googleapis.com
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
To monitor tests as they execute:
2+
3+
```console
4+
$ kubectl --namespace={{ .Release.Namespace }} logs -f workflow-e2e tests
5+
```

charts/workflow-e2e/templates/spotify-gc-daemon.yaml

-29
This file was deleted.

charts/workflow-e2e/templates/workflow-e2e-pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
value: "true"
1818
- name: CLI_VERSION
1919
value: "{{.Values.cli_version}}"
20-
# set TEST env variable to run appropriate tests in e2e suite
20+
# set TEST env variable to run appropriate tests in e2e suite
2121
- name: TEST
2222
value: "{{.Values.test}}"
2323
- name: DEBUG_MODE

charts/workflow-e2e/values.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ ginkgo_nodes: 15
66
cli_version: "latest"
77
test: "e2e"
88
debug_mode: "false"
9+
10+
spotify-docker-gc:
11+
cron:
12+
schedule: "*/1 * * * *"
13+
env:
14+
dockerAPIVersion: "1.23"

0 commit comments

Comments
 (0)