Skip to content

Commit 3acfe21

Browse files
committed
Merge pull request Allow overriding secret keys from AppBinding #33
Leverage SecretTranfroms in order to get secret keys where to read user, password data from. fixes: stashed/stash#1002
1 parent 1c5cd1c commit 3acfe21

File tree

200 files changed

+17077
-90255
lines changed

Some content is hidden

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

200 files changed

+17077
-90255
lines changed

go.mod

Lines changed: 46 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,33 +16,54 @@ require (
1616
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
1717
kmodules.xyz/client-go v0.0.0-20200525195850-2fd180961371
1818
kmodules.xyz/crd-schema-fuzz v0.0.0-20200521005638-2433a187de95
19-
kmodules.xyz/custom-resources v0.0.0-20200525205248-56eeb11ebcf3
19+
kmodules.xyz/custom-resources v0.0.0-20200604135349-9e9f5c4fdba9
2020
kmodules.xyz/offshoot-api v0.0.0-20200521035628-e135bf07b226
2121
sigs.k8s.io/yaml v1.2.0
2222
stash.appscode.dev/apimachinery v0.10.0-alpha.0
2323
)
2424

25-
replace (
26-
bitbucket.org/ww/goautoneg => gomodules.xyz/goautoneg v0.0.0-20120707110453-a547fc61f48d
27-
git.apache.org/thrift.git => github.com/apache/thrift v0.13.0
28-
github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v35.0.0+incompatible
29-
github.com/Azure/go-ansiterm => github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
30-
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.0.0+incompatible
31-
github.com/Azure/go-autorest/autorest => github.com/Azure/go-autorest/autorest v0.9.0
32-
github.com/Azure/go-autorest/autorest/adal => github.com/Azure/go-autorest/autorest/adal v0.5.0
33-
github.com/Azure/go-autorest/autorest/azure/auth => github.com/Azure/go-autorest/autorest/azure/auth v0.2.0
34-
github.com/Azure/go-autorest/autorest/date => github.com/Azure/go-autorest/autorest/date v0.1.0
35-
github.com/Azure/go-autorest/autorest/mocks => github.com/Azure/go-autorest/autorest/mocks v0.2.0
36-
github.com/Azure/go-autorest/autorest/to => github.com/Azure/go-autorest/autorest/to v0.2.0
37-
github.com/Azure/go-autorest/autorest/validation => github.com/Azure/go-autorest/autorest/validation v0.1.0
38-
github.com/Azure/go-autorest/logger => github.com/Azure/go-autorest/logger v0.1.0
39-
github.com/Azure/go-autorest/tracing => github.com/Azure/go-autorest/tracing v0.5.0
40-
github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.0.0
41-
go.etcd.io/etcd => go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738
42-
google.golang.org/grpc => google.golang.org/grpc v1.26.0
43-
k8s.io/api => github.com/kmodules/api v0.18.4-0.20200524125823-c8bc107809b9
44-
k8s.io/apimachinery => github.com/kmodules/apimachinery v0.19.0-alpha.0.0.20200520235721-10b58e57a423
45-
k8s.io/apiserver => github.com/kmodules/apiserver v0.18.4-0.20200521000930-14c5f6df9625
46-
k8s.io/client-go => k8s.io/client-go v0.18.3
47-
k8s.io/kubernetes => github.com/kmodules/kubernetes v1.19.0-alpha.0.0.20200521033432-49d3646051ad
48-
)
25+
replace bitbucket.org/ww/goautoneg => gomodules.xyz/goautoneg v0.0.0-20120707110453-a547fc61f48d
26+
27+
replace git.apache.org/thrift.git => github.com/apache/thrift v0.13.0
28+
29+
replace github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v35.0.0+incompatible
30+
31+
replace github.com/Azure/go-ansiterm => github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
32+
33+
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.0.0+incompatible
34+
35+
replace github.com/Azure/go-autorest/autorest => github.com/Azure/go-autorest/autorest v0.9.0
36+
37+
replace github.com/Azure/go-autorest/autorest/adal => github.com/Azure/go-autorest/autorest/adal v0.5.0
38+
39+
replace github.com/Azure/go-autorest/autorest/azure/auth => github.com/Azure/go-autorest/autorest/azure/auth v0.2.0
40+
41+
replace github.com/Azure/go-autorest/autorest/date => github.com/Azure/go-autorest/autorest/date v0.1.0
42+
43+
replace github.com/Azure/go-autorest/autorest/mocks => github.com/Azure/go-autorest/autorest/mocks v0.2.0
44+
45+
replace github.com/Azure/go-autorest/autorest/to => github.com/Azure/go-autorest/autorest/to v0.2.0
46+
47+
replace github.com/Azure/go-autorest/autorest/validation => github.com/Azure/go-autorest/autorest/validation v0.1.0
48+
49+
replace github.com/Azure/go-autorest/logger => github.com/Azure/go-autorest/logger v0.1.0
50+
51+
replace github.com/Azure/go-autorest/tracing => github.com/Azure/go-autorest/tracing v0.5.0
52+
53+
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
54+
55+
replace github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.0.0
56+
57+
replace go.etcd.io/etcd => go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738
58+
59+
replace google.golang.org/grpc => google.golang.org/grpc v1.26.0
60+
61+
replace k8s.io/api => github.com/kmodules/api v0.18.4-0.20200524125823-c8bc107809b9
62+
63+
replace k8s.io/apimachinery => github.com/kmodules/apimachinery v0.19.0-alpha.0.0.20200520235721-10b58e57a423
64+
65+
replace k8s.io/apiserver => github.com/kmodules/apiserver v0.18.4-0.20200521000930-14c5f6df9625
66+
67+
replace k8s.io/client-go => k8s.io/client-go v0.18.3
68+
69+
replace k8s.io/kubernetes => github.com/kmodules/kubernetes v1.19.0-alpha.0.0.20200521033432-49d3646051ad

0 commit comments

Comments
 (0)