Skip to content

Commit 59ad22b

Browse files
committed
Enable communication with Nomad using Task API over a unix socket
This patch updates the Nomad client to 1.7 bringing the ability to use a Unix Socket to communicate with the Nomad API. Update github.com/containers/image/v5 Makes compatible with changed API for slices.SortStableFunc. containers/image@336c7ff
1 parent bee94e4 commit 59ad22b

File tree

2 files changed

+108
-169
lines changed

2 files changed

+108
-169
lines changed

go.mod

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ require (
77
github.com/alecthomas/kong v0.8.1
88
github.com/bmatcuk/doublestar/v3 v3.0.0
99
github.com/containerd/containerd v1.7.6
10-
github.com/containers/image/v5 v5.26.1
10+
github.com/containers/image/v5 v5.29.0
1111
github.com/crazy-max/cron/v3 v3.1.1
1212
github.com/crazy-max/gohealthchecks v0.4.1
1313
github.com/crazy-max/gonfig v0.7.1
1414
github.com/docker/distribution v2.8.3+incompatible
15-
github.com/docker/docker v24.0.6+incompatible
15+
github.com/docker/docker v24.0.7+incompatible
1616
github.com/docker/go-connections v0.4.0
1717
github.com/docker/go-units v0.5.0
1818
github.com/eclipse/paho.mqtt.golang v1.4.3
@@ -21,7 +21,7 @@ require (
2121
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
2222
github.com/gregdel/pushover v1.3.0
2323
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
24-
github.com/hashicorp/nomad/api v0.0.0-20221121194306-f464aca721d2 // v1.4.3
24+
github.com/hashicorp/nomad/api v0.0.0-20231212190655-0bc822db4037 // v1.4.3
2525
github.com/imdario/mergo v0.3.16
2626
github.com/jedib0t/go-pretty/v6 v6.4.9
2727
github.com/matcornic/hermes/v2 v2.1.0
@@ -43,7 +43,7 @@ require (
4343
go.etcd.io/bbolt v1.3.8
4444
golang.org/x/mod v0.14.0
4545
golang.org/x/sys v0.15.0
46-
google.golang.org/grpc v1.58.2
46+
google.golang.org/grpc v1.58.3
4747
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0
4848
google.golang.org/protobuf v1.31.0
4949
gopkg.in/yaml.v2 v2.4.0
@@ -53,24 +53,23 @@ require (
5353
)
5454

5555
require (
56-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
5756
github.com/BurntSushi/toml v1.3.2 // indirect
5857
github.com/Masterminds/semver v1.5.0 // indirect
5958
github.com/Masterminds/sprig v2.16.0+incompatible // indirect
6059
github.com/Microsoft/go-winio v0.6.1 // indirect
61-
github.com/Microsoft/hcsshim v0.11.0 // indirect
60+
github.com/Microsoft/hcsshim v0.12.0-rc.1 // indirect
6261
github.com/PuerkitoBio/goquery v1.5.0 // indirect
6362
github.com/agext/levenshtein v1.2.3 // indirect
6463
github.com/andybalholm/cascadia v1.0.0 // indirect
6564
github.com/aokoli/goutils v1.0.1 // indirect
6665
github.com/aymerick/douceur v0.2.0 // indirect
6766
github.com/containerd/typeurl/v2 v2.1.1 // indirect
6867
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01 // indirect
69-
github.com/containers/ocicrypt v1.1.7 // indirect
70-
github.com/containers/storage v1.48.0 // indirect
68+
github.com/containers/ocicrypt v1.1.9 // indirect
69+
github.com/containers/storage v1.51.0 // indirect
7170
github.com/davecgh/go-spew v1.1.1 // indirect
7271
github.com/distribution/reference v0.5.0 // indirect
73-
github.com/docker/docker-credential-helpers v0.7.0 // indirect
72+
github.com/docker/docker-credential-helpers v0.8.0 // indirect
7473
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
7574
github.com/felixge/fgprof v0.9.3 // indirect
7675
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
@@ -83,14 +82,14 @@ require (
8382
github.com/gogo/protobuf v1.3.2 // indirect
8483
github.com/golang/protobuf v1.5.3 // indirect
8584
github.com/google/gnostic-models v0.6.8 // indirect
86-
github.com/google/go-cmp v0.5.9 // indirect
85+
github.com/google/go-cmp v0.6.0 // indirect
8786
github.com/google/gofuzz v1.2.0 // indirect
8887
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect
89-
github.com/google/uuid v1.3.0 // indirect
88+
github.com/google/uuid v1.3.1 // indirect
9089
github.com/gorilla/css v1.0.0 // indirect
9190
github.com/gorilla/mux v1.8.0 // indirect
92-
github.com/gorilla/websocket v1.5.0 // indirect
93-
github.com/hashicorp/cronexpr v1.1.1 // indirect
91+
github.com/gorilla/websocket v1.5.1 // indirect
92+
github.com/hashicorp/cronexpr v1.1.2 // indirect
9493
github.com/hashicorp/errwrap v1.1.0 // indirect
9594
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
9695
github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -100,23 +99,23 @@ require (
10099
github.com/josharian/intern v1.0.0 // indirect
101100
github.com/json-iterator/go v1.1.12 // indirect
102101
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
103-
github.com/klauspost/compress v1.17.2 // indirect
102+
github.com/klauspost/compress v1.17.3 // indirect
104103
github.com/klauspost/pgzip v1.2.6 // indirect
105104
github.com/leodido/go-urn v1.2.4 // indirect
106105
github.com/mailru/easyjson v0.7.7 // indirect
107106
github.com/mattn/go-colorable v0.1.13 // indirect
108107
github.com/mattn/go-isatty v0.0.19 // indirect
109-
github.com/mattn/go-runewidth v0.0.14 // indirect
108+
github.com/mattn/go-runewidth v0.0.15 // indirect
110109
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
111110
github.com/mitchellh/go-homedir v1.1.0 // indirect
112111
github.com/mitchellh/mapstructure v1.5.0 // indirect
113-
github.com/moby/sys/mountinfo v0.6.2 // indirect
112+
github.com/moby/sys/mountinfo v0.7.1 // indirect
114113
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
115114
github.com/modern-go/reflect2 v1.0.2 // indirect
116115
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
117116
github.com/olekukonko/tablewriter v0.0.1 // indirect
118-
github.com/opencontainers/runc v1.1.7 // indirect
119-
github.com/opencontainers/runtime-spec v1.1.0-rc.3 // indirect
117+
github.com/opencontainers/runc v1.1.10 // indirect
118+
github.com/opencontainers/runtime-spec v1.1.0 // indirect
120119
github.com/pmezard/go-difflib v1.0.0 // indirect
121120
github.com/rivo/uniseg v0.4.4 // indirect
122121
github.com/spf13/pflag v1.0.5 // indirect
@@ -126,18 +125,18 @@ require (
126125
github.com/ulikunitz/xz v0.5.11 // indirect
127126
github.com/vanng822/css v0.0.0-20190504095207-a21e860bcd04 // indirect
128127
github.com/vanng822/go-premailer v0.0.0-20191214114701-be27abe028fe // indirect
129-
github.com/vbatts/tar-split v0.11.3 // indirect
130-
golang.org/x/crypto v0.14.0 // indirect
131-
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
132-
golang.org/x/net v0.17.0 // indirect
133-
golang.org/x/oauth2 v0.10.0 // indirect
134-
golang.org/x/sync v0.3.0 // indirect
135-
golang.org/x/term v0.13.0 // indirect
136-
golang.org/x/text v0.13.0 // indirect
128+
github.com/vbatts/tar-split v0.11.5 // indirect
129+
golang.org/x/crypto v0.16.0 // indirect
130+
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
131+
golang.org/x/net v0.19.0 // indirect
132+
golang.org/x/oauth2 v0.14.0 // indirect
133+
golang.org/x/sync v0.5.0 // indirect
134+
golang.org/x/term v0.15.0 // indirect
135+
golang.org/x/text v0.14.0 // indirect
137136
golang.org/x/time v0.3.0 // indirect
138-
golang.org/x/tools v0.13.0 // indirect
139-
google.golang.org/appengine v1.6.7 // indirect
140-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
137+
golang.org/x/tools v0.16.0 // indirect
138+
google.golang.org/appengine v1.6.8 // indirect
139+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
141140
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
142141
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect
143142
gopkg.in/inf.v0 v0.9.1 // indirect

0 commit comments

Comments
 (0)