Skip to content

Commit

Permalink
Add proxy support to Velero (#715)
Browse files Browse the repository at this point in the history
* Add proxy support to Velero
  • Loading branch information
jdewinne authored Jun 18, 2024
1 parent 80a3425 commit bec6be0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ ADMIN_CONSOLE_IMAGE_OVERRIDE =
ADMIN_CONSOLE_MIGRATIONS_IMAGE_OVERRIDE =
EMBEDDED_OPERATOR_CHART_URL = oci://registry.replicated.com/library
EMBEDDED_OPERATOR_CHART_NAME = embedded-cluster-operator
EMBEDDED_OPERATOR_CHART_VERSION = 0.36.0
EMBEDDED_OPERATOR_CHART_VERSION = 0.36.2
EMBEDDED_OPERATOR_UTILS_IMAGE = busybox:1.36.1
EMBEDDED_CLUSTER_OPERATOR_IMAGE_OVERRIDE =
EMBEDDED_CLUSTER_OPERATOR_IMAGE_OVERRIDE =
OPENEBS_CHART_URL = https://openebs.github.io/openebs
OPENEBS_CHART_NAME = openebs/openebs
OPENEBS_CHART_VERSION = 4.0.1
Expand Down
6 changes: 3 additions & 3 deletions cmd/embedded-cluster/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -444,17 +444,17 @@ var installCommand = &cli.Command{
&cli.StringFlag{
Name: "http-proxy",
Usage: "HTTP proxy to use for the installation",
Hidden: true,
Hidden: false,
},
&cli.StringFlag{
Name: "https-proxy",
Usage: "HTTPS proxy to use for the installation",
Hidden: true,
Hidden: false,
},
&cli.StringFlag{
Name: "no-proxy",
Usage: "Comma separated list of hosts to bypass the proxy for",
Hidden: true,
Hidden: false,
},
&cli.BoolFlag{
Name: "proxy",
Expand Down
6 changes: 3 additions & 3 deletions cmd/embedded-cluster/restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -806,17 +806,17 @@ var restoreCommand = &cli.Command{
&cli.StringFlag{
Name: "http-proxy",
Usage: "HTTP proxy to use for the installation",
Hidden: true,
Hidden: false,
},
&cli.StringFlag{
Name: "https-proxy",
Usage: "HTTPS proxy to use for the installation",
Hidden: true,
Hidden: false,
},
&cli.StringFlag{
Name: "no-proxy",
Usage: "Comma separated list of hosts to bypass the proxy for",
Hidden: true,
Hidden: false,
},
&cli.BoolFlag{
Name: "proxy",
Expand Down

0 comments on commit bec6be0

Please sign in to comment.