This repository was archived by the owner on Feb 24, 2023. It is now read-only.
File tree 4 files changed +34
-3
lines changed
4 files changed +34
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Go
2
+
3
+ on :
4
+ push :
5
+ branches : [ develop ]
6
+ pull_request :
7
+ branches : [ develop ]
8
+
9
+ jobs :
10
+
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+
16
+ - name : Set up Go
17
+ uses : actions/setup-go@v2
18
+ with :
19
+ go-version : 1.15
20
+
21
+ - name : Build
22
+ run : go build -o bin/vault-k8s-secret-engine cmd/main.go
23
+
24
+ - name : Test
25
+ run : go test -v ./...
26
+
27
+ - name : Upload a Build Artifact
28
+
29
+ with :
30
+ name : vault-k8s-secret-engine
31
+ path : bin/vault-k8s-secret-engine
Original file line number Diff line number Diff line change 4
4
"github.com/hashicorp/go-hclog"
5
5
"github.com/hashicorp/vault/api"
6
6
"github.com/hashicorp/vault/sdk/plugin"
7
+ servian "github.com/servian/vault-k8s-secret-engine/pkg"
7
8
"os"
8
- servian "source.servian.com/eit-integration/common/vault-k8s-dynamic-service-accounts/pkg"
9
9
)
10
10
11
11
func main () {
Original file line number Diff line number Diff line change 1
- module source.servian. com/eit-integration/common/ vault-k8s-dynamic-service-accounts
1
+ module github. com/servian/ vault-k8s-secret-engine
2
2
3
3
go 1.15
4
4
Original file line number Diff line number Diff line change 5
5
"fmt"
6
6
"github.com/hashicorp/vault/sdk/framework"
7
7
"github.com/hashicorp/vault/sdk/logical"
8
- "source.servian. com/eit-integration/common/ vault-k8s-dynamic-service-accounts /pkg/k8s"
8
+ "github. com/servian/ vault-k8s-secret-engine /pkg/k8s"
9
9
"strings"
10
10
)
11
11
You can’t perform that action at this time.
0 commit comments