Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit d95b86b

Browse files
authored
Added overwrite parameter to catalog client.Put (#285)
* Added overwrite parameter to catalog client.Put Signed-off-by: Nick Müller <nmueller@blackshark.ai> * Refactored catalog client artifact overwrite into separate Update method Signed-off-by: Nick Müller <nmueller@blackshark.ai> * Updated flyteidl and flytestdlib to latest released versions Signed-off-by: Nick Müller <nmueller@blackshark.ai> Signed-off-by: Nick Müller <nmueller@blackshark.ai>
1 parent a87ca40 commit d95b86b

5 files changed

Lines changed: 308 additions & 91 deletions

File tree

go.mod

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,31 @@ require (
66
github.com/GoogleCloudPlatform/spark-on-k8s-operator v0.0.0-20200723154620-6f35a1152625
77
github.com/Masterminds/semver v1.5.0
88
github.com/aws/amazon-sagemaker-operator-for-k8s v1.0.1-0.20210303003444-0fb33b1fd49d
9-
github.com/aws/aws-sdk-go v1.37.3
9+
github.com/aws/aws-sdk-go v1.44.2
1010
github.com/aws/aws-sdk-go-v2 v1.2.0
1111
github.com/aws/aws-sdk-go-v2/config v1.0.0
1212
github.com/aws/aws-sdk-go-v2/service/athena v1.0.0
1313
github.com/coocood/freecache v1.1.1
14-
github.com/flyteorg/flyteidl v1.1.10
15-
github.com/flyteorg/flytestdlib v1.0.0
14+
github.com/flyteorg/flyteidl v1.2.3
15+
github.com/flyteorg/flytestdlib v1.0.11
1616
github.com/go-test/deep v1.0.7
1717
github.com/golang/protobuf v1.5.2
1818
github.com/hashicorp/golang-lru v0.5.4
1919
github.com/imdario/mergo v0.3.13
2020
github.com/kubeflow/common v0.4.3
2121
github.com/kubeflow/training-operator v1.5.0-rc.0
22-
github.com/magiconair/properties v1.8.4
23-
github.com/mitchellh/mapstructure v1.4.1
22+
github.com/magiconair/properties v1.8.6
23+
github.com/mitchellh/mapstructure v1.4.3
2424
github.com/pkg/errors v0.9.1
2525
github.com/prometheus/client_golang v1.12.1
2626
github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c
2727
github.com/spf13/pflag v1.0.5
2828
github.com/stretchr/testify v1.7.2
29-
golang.org/x/net v0.0.0-20220607020251-c690dde0001d
30-
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
31-
google.golang.org/api v0.43.0
32-
google.golang.org/grpc v1.40.0
33-
google.golang.org/protobuf v1.27.1
29+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b
30+
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
31+
google.golang.org/api v0.76.0
32+
google.golang.org/grpc v1.46.0
33+
google.golang.org/protobuf v1.28.0
3434
gotest.tools v2.2.0+incompatible
3535
k8s.io/api v0.24.1
3636
k8s.io/apimachinery v0.24.1
@@ -40,15 +40,17 @@ require (
4040
)
4141

4242
require (
43-
cloud.google.com/go v0.81.0 // indirect
44-
cloud.google.com/go/storage v1.12.0 // indirect
45-
github.com/Azure/azure-sdk-for-go v62.3.0+incompatible // indirect
46-
github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1 // indirect
47-
github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3 // indirect
48-
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0 // indirect
43+
cloud.google.com/go v0.101.0 // indirect
44+
cloud.google.com/go/compute v1.6.1 // indirect
45+
cloud.google.com/go/iam v0.3.0 // indirect
46+
cloud.google.com/go/storage v1.22.0 // indirect
47+
github.com/Azure/azure-sdk-for-go v63.4.0+incompatible // indirect
48+
github.com/Azure/azure-sdk-for-go/sdk/azcore v0.23.1 // indirect
49+
github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.2 // indirect
50+
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.4.0 // indirect
4951
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
50-
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
51-
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
52+
github.com/Azure/go-autorest/autorest v0.11.27 // indirect
53+
github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect
5254
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
5355
github.com/Azure/go-autorest/logger v0.2.1 // indirect
5456
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
@@ -66,9 +68,8 @@ require (
6668
github.com/davecgh/go-spew v1.1.1 // indirect
6769
github.com/emicklei/go-restful v2.9.6+incompatible // indirect
6870
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
69-
github.com/fatih/color v1.10.0 // indirect
70-
github.com/flyteorg/stow v0.3.3 // indirect
71-
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
71+
github.com/fatih/color v1.13.0 // indirect
72+
github.com/flyteorg/stow v0.3.6 // indirect
7273
github.com/fsnotify/fsnotify v1.5.1 // indirect
7374
github.com/ghodss/yaml v1.0.0 // indirect
7475
github.com/go-logr/logr v1.2.3 // indirect
@@ -77,51 +78,51 @@ require (
7778
github.com/go-openapi/swag v0.19.14 // indirect
7879
github.com/gofrs/uuid v4.2.0+incompatible // indirect
7980
github.com/gogo/protobuf v1.3.2 // indirect
81+
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect
8082
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
8183
github.com/google/gnostic v0.5.7-v3refs // indirect
8284
github.com/google/go-cmp v0.5.8 // indirect
8385
github.com/google/gofuzz v1.2.0 // indirect
84-
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
86+
github.com/googleapis/gax-go/v2 v2.3.0 // indirect
87+
github.com/googleapis/go-type-adapters v1.0.0 // indirect
8588
github.com/hashicorp/hcl v1.0.0 // indirect
8689
github.com/inconshreveable/mousetrap v1.0.0 // indirect
8790
github.com/jmespath/go-jmespath v0.4.0 // indirect
8891
github.com/josharian/intern v1.0.0 // indirect
8992
github.com/json-iterator/go v1.1.12 // indirect
90-
github.com/jstemmer/go-junit-report v0.9.1 // indirect
9193
github.com/mailru/easyjson v0.7.6 // indirect
92-
github.com/mattn/go-colorable v0.1.8 // indirect
93-
github.com/mattn/go-isatty v0.0.12 // indirect
94+
github.com/mattn/go-colorable v0.1.12 // indirect
95+
github.com/mattn/go-isatty v0.0.14 // indirect
9496
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
9597
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
9698
github.com/modern-go/reflect2 v1.0.2 // indirect
9799
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
98100
github.com/ncw/swift v1.0.53 // indirect
99-
github.com/pelletier/go-toml v1.8.1 // indirect
101+
github.com/pelletier/go-toml v1.9.4 // indirect
102+
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect
100103
github.com/pmezard/go-difflib v1.0.0 // indirect
101104
github.com/prometheus/client_model v0.2.0 // indirect
102105
github.com/prometheus/common v0.32.1 // indirect
103106
github.com/prometheus/procfs v0.7.3 // indirect
104107
github.com/sirupsen/logrus v1.8.1 // indirect
105-
github.com/spf13/afero v1.6.0 // indirect
106-
github.com/spf13/cast v1.3.1 // indirect
108+
github.com/spf13/afero v1.8.2 // indirect
109+
github.com/spf13/cast v1.4.1 // indirect
107110
github.com/spf13/cobra v1.4.0 // indirect
108111
github.com/spf13/jwalterweatherman v1.1.0 // indirect
109-
github.com/spf13/viper v1.7.1 // indirect
112+
github.com/spf13/viper v1.11.0 // indirect
110113
github.com/stretchr/objx v0.3.0 // indirect
111114
github.com/subosito/gotenv v1.2.0 // indirect
112115
go.opencensus.io v0.23.0 // indirect
113116
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
114-
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
115-
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
116-
golang.org/x/sys v0.0.0-20220608164250-635b8c9b7f68 // indirect
117+
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
117118
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
118119
golang.org/x/text v0.3.7 // indirect
119120
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
120-
golang.org/x/tools v0.1.11 // indirect
121+
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
121122
google.golang.org/appengine v1.6.7 // indirect
122-
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
123+
google.golang.org/genproto v0.0.0-20220426171045-31bebdecfb46 // indirect
123124
gopkg.in/inf.v0 v0.9.1 // indirect
124-
gopkg.in/ini.v1 v1.62.0 // indirect
125+
gopkg.in/ini.v1 v1.66.4 // indirect
125126
gopkg.in/yaml.v2 v2.4.0 // indirect
126127
gopkg.in/yaml.v3 v3.0.1 // indirect
127128
k8s.io/klog/v2 v2.60.1 // indirect

0 commit comments

Comments
 (0)