Skip to content

Commit 809a41e

Browse files
authored
Merge pull request #36 from galal-hussein/upgrade_klipper
Add integration tests to helm-controller
2 parents eb51d4f + b97cf8b commit 809a41e

File tree

337 files changed

+221771
-260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

337 files changed

+221771
-260
lines changed

.drone.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ steps:
1515
- name: docker
1616
path: /var/run/docker.sock
1717

18+
- name: e2e test
19+
image: rancher/dapper:v0.4.1
20+
commands:
21+
- dapper e2e
22+
volumes:
23+
- name: docker
24+
path: /var/run/docker.sock
25+
1826
- name: github_binary_release
1927
image: plugins/github-release
2028
settings:

Dockerfile.dapper

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ RUN if [ "${ARCH}" == "amd64" ]; then \
1717
curl -sL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s v1.15.0; \
1818
fi
1919

20+
RUN curl -L https://github.com/rancher/rke/releases/download/v1.0.5/rke_linux-$ARCH \
21+
--output /usr/local/bin/rke && chmod +x /usr/local/bin/rke
22+
2023
ENV GO111MODULE off
2124
ENV DAPPER_ENV REPO TAG DRONE_TAG
2225
ENV DAPPER_SOURCE /go/src/github.com/rancher/helm-controller/

Dockerfile.dapper479579668

Lines changed: 0 additions & 26 deletions
This file was deleted.

go.mod

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,58 @@ module github.com/rancher/helm-controller
33
go 1.13
44

55
require (
6-
github.com/rancher/wrangler v0.5.4-0.20200326191509-4054411d9736
7-
github.com/rancher/wrangler-api v0.5.1-0.20200326194427-c13310506d04
6+
cloud.google.com/go v0.38.0 // indirect
7+
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
8+
github.com/Azure/go-autorest v11.1.2+incompatible // indirect
9+
github.com/Azure/go-autorest/autorest v0.9.0 // indirect
10+
github.com/coreos/go-oidc v2.1.0+incompatible // indirect
11+
github.com/coreos/go-semver v0.3.0 // indirect
12+
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect
13+
github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea // indirect
14+
github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0 // indirect
15+
github.com/dustin/go-humanize v1.0.0 // indirect
16+
github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153 // indirect
17+
github.com/evanphx/json-patch v4.5.0+incompatible // indirect
18+
github.com/go-openapi/validate v0.19.5 // indirect
19+
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
20+
github.com/google/go-cmp v0.3.1 // indirect
21+
github.com/google/gofuzz v1.1.0 // indirect
22+
github.com/googleapis/gnostic v0.3.1 // indirect
23+
github.com/gophercloud/gophercloud v0.1.0 // indirect
24+
github.com/gorilla/websocket v1.4.0 // indirect
25+
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
26+
github.com/hashicorp/golang-lru v0.5.3 // indirect
27+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
28+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
29+
github.com/onsi/ginkgo v1.11.0
30+
github.com/onsi/gomega v1.7.0
31+
github.com/pkg/errors v0.8.1 // indirect
32+
github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021 // indirect
33+
github.com/prometheus/client_model v0.2.0 // indirect
34+
github.com/rancher/wrangler v0.6.1
35+
github.com/rancher/wrangler-api v0.6.0
836
github.com/sirupsen/logrus v1.4.2
37+
github.com/spf13/cobra v0.0.5 // indirect
938
github.com/stretchr/testify v1.4.0
1039
github.com/urfave/cli v1.22.2
40+
go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738 // indirect
41+
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 // indirect
42+
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
43+
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
44+
golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7 // indirect
45+
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
46+
golang.org/x/tools v0.0.0-20191017205301-920acffc3e65 // indirect
47+
google.golang.org/appengine v1.6.1 // indirect
48+
gopkg.in/inf.v0 v0.9.1 // indirect
49+
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
50+
gopkg.in/square/go-jose.v2 v2.2.2 // indirect
51+
gotest.tools v2.2.0+incompatible // indirect
1152
k8s.io/api v0.18.0
1253
k8s.io/apimachinery v0.18.0
1354
k8s.io/client-go v0.18.0
55+
k8s.io/code-generator v0.18.0 // indirect
1456
k8s.io/klog v1.0.0
57+
k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89 // indirect
58+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.7 // indirect
59+
sigs.k8s.io/structured-merge-diff/v3 v3.0.0 // indirect
1560
)

0 commit comments

Comments
 (0)