Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Commit

Permalink
Refactor discovery controller
Browse files Browse the repository at this point in the history
- use the aws-app-mesh-controller-for-k8s types
- split App Mesh operations from controller logic
- remove Kubernetes service controller
  • Loading branch information
stefanprodan committed Nov 1, 2019
1 parent e11b98a commit b884d9d
Show file tree
Hide file tree
Showing 8 changed files with 456 additions and 724 deletions.
60 changes: 0 additions & 60 deletions cmd/appmesh-gateway/kubernetes.go

This file was deleted.

13 changes: 11 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module github.com/stefanprodan/appmesh-gateway
go 1.13

require (
github.com/aws/aws-app-mesh-controller-for-k8s v0.2.0
github.com/envoyproxy/go-control-plane v0.9.0
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.3.2
Expand All @@ -12,9 +13,17 @@ require (
github.com/spf13/cobra v0.0.5
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
google.golang.org/grpc v1.23.0
k8s.io/api v0.0.0-20191025225708-5524a3672fbb
k8s.io/api v0.0.0-20191025225708-5524a3672fbb // indirect
k8s.io/apimachinery v0.0.0-20191025225532-af6325b3a843
k8s.io/client-go v0.0.0-20190620085101-78d2af792bab
k8s.io/client-go v11.0.0+incompatible
k8s.io/klog v1.0.0
k8s.io/utils v0.0.0-20191010214722-8d271d903fe4 // indirect
)

// Kubernetes 1.15.0
replace (
k8s.io/api => k8s.io/api v0.0.0-20191025225708-5524a3672fbb
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191025225532-af6325b3a843
k8s.io/client-go => k8s.io/client-go v0.0.0-20190620085101-78d2af792bab
k8s.io/utils => k8s.io/utils v0.0.0-20191010214722-8d271d903fe4
)
53 changes: 44 additions & 9 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit b884d9d

Please sign in to comment.