Skip to content

Commit fa0b626

Browse files
add go mod for k8s registry (#14)
1 parent 7466a32 commit fa0b626

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# go-chassis-extension
22

3-
Here is a place for go chassis extension
3+
include plugins of go chassis. to enhance your application functionality or replace the default module of go chassis
4+
5+
Plugins includes:
6+
- protocol: protocol plugin for service communication
7+
- registry: service discovery plugin
48

59

610

registry/kubernetes/go.mod

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module github.com/go-chassis/go-chassis-extension/registry/kubernetes
2+
3+
go 1.13
4+
5+
require (
6+
github.com/go-chassis/go-chassis v1.8.3
7+
github.com/stretchr/testify v1.5.1
8+
k8s.io/api v0.18.3
9+
k8s.io/apimachinery v0.18.3
10+
k8s.io/client-go v0.18.3
11+
)

0 commit comments

Comments
 (0)