-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
noVNC/websockify upgrade, cleanup and healthz
- Loading branch information
1 parent
84aef7d
commit 0ddeacf
Showing
18 changed files
with
79 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
63 changes: 0 additions & 63 deletions
63
provisioning/containers/gui-common/novnc/nginx.conf.template
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
provisioning/containers/gui-common/novnc/novnc-overrides/app/styles/base.css
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
provisioning/containers/gui-common/novnc/novnc-overrides/app/ui.js
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
provisioning/containers/gui-common/novnc/novnc-overrides/app/webutil.js
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
FROM golang:1.17 as builder | ||
FROM golang:1.19 as builder | ||
WORKDIR /tmp/builder | ||
|
||
COPY go.mod ./go.mod | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
module github.com/novnc/websockify-other/websockify | ||
|
||
go 1.17 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/google/uuid v1.1.2 | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/prometheus/client_golang v1.12.1 | ||
google.golang.org/grpc v1.46.0 | ||
google.golang.org/protobuf v1.27.1 | ||
k8s.io/apimachinery v0.24.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/prometheus/client_golang v1.14.0 | ||
google.golang.org/grpc v1.52.0 | ||
google.golang.org/protobuf v1.28.1 | ||
k8s.io/apimachinery v0.26.0 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.32.1 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect | ||
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.39.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
golang.org/x/net v0.5.0 // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
golang.org/x/text v0.6.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
) |
Oops, something went wrong.