Skip to content

Commit bec6be0

Browse files
authored
Add proxy support to Velero (#715)
* Add proxy support to Velero
1 parent 80a3425 commit bec6be0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ ADMIN_CONSOLE_IMAGE_OVERRIDE =
99
ADMIN_CONSOLE_MIGRATIONS_IMAGE_OVERRIDE =
1010
EMBEDDED_OPERATOR_CHART_URL = oci://registry.replicated.com/library
1111
EMBEDDED_OPERATOR_CHART_NAME = embedded-cluster-operator
12-
EMBEDDED_OPERATOR_CHART_VERSION = 0.36.0
12+
EMBEDDED_OPERATOR_CHART_VERSION = 0.36.2
1313
EMBEDDED_OPERATOR_UTILS_IMAGE = busybox:1.36.1
14-
EMBEDDED_CLUSTER_OPERATOR_IMAGE_OVERRIDE =
14+
EMBEDDED_CLUSTER_OPERATOR_IMAGE_OVERRIDE =
1515
OPENEBS_CHART_URL = https://openebs.github.io/openebs
1616
OPENEBS_CHART_NAME = openebs/openebs
1717
OPENEBS_CHART_VERSION = 4.0.1

cmd/embedded-cluster/install.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -444,17 +444,17 @@ var installCommand = &cli.Command{
444444
&cli.StringFlag{
445445
Name: "http-proxy",
446446
Usage: "HTTP proxy to use for the installation",
447-
Hidden: true,
447+
Hidden: false,
448448
},
449449
&cli.StringFlag{
450450
Name: "https-proxy",
451451
Usage: "HTTPS proxy to use for the installation",
452-
Hidden: true,
452+
Hidden: false,
453453
},
454454
&cli.StringFlag{
455455
Name: "no-proxy",
456456
Usage: "Comma separated list of hosts to bypass the proxy for",
457-
Hidden: true,
457+
Hidden: false,
458458
},
459459
&cli.BoolFlag{
460460
Name: "proxy",

cmd/embedded-cluster/restore.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -806,17 +806,17 @@ var restoreCommand = &cli.Command{
806806
&cli.StringFlag{
807807
Name: "http-proxy",
808808
Usage: "HTTP proxy to use for the installation",
809-
Hidden: true,
809+
Hidden: false,
810810
},
811811
&cli.StringFlag{
812812
Name: "https-proxy",
813813
Usage: "HTTPS proxy to use for the installation",
814-
Hidden: true,
814+
Hidden: false,
815815
},
816816
&cli.StringFlag{
817817
Name: "no-proxy",
818818
Usage: "Comma separated list of hosts to bypass the proxy for",
819-
Hidden: true,
819+
Hidden: false,
820820
},
821821
&cli.BoolFlag{
822822
Name: "proxy",

0 commit comments

Comments
 (0)