You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 12, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: Makefile
+18-4Lines changed: 18 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -117,7 +117,7 @@ test-e2e: $(GINKGO) ## Run the e2e tests
117
117
$(GINKGO)$(E2E_FLAGS) --trace $(FOCUS) test/e2e
118
118
119
119
e2e: KIND_CLUSTER_NAME := rukpak-e2e
120
-
e2e: run image-registry local-git kind-load-bundles registry-load-bundles test-e2e kind-cluster-cleanup ## Run e2e tests against an ephemeral kind cluster
120
+
e2e: run image-registry secure-image-registry local-git kind-load-bundles registry-load-bundles secure-registry-load-bundles test-e2e kind-cluster-cleanup ## Run e2e tests against an ephemeral kind cluster
121
121
122
122
kind-cluster: $(KIND) kind-cluster-cleanup ## Standup a kind cluster
Copy file name to clipboardExpand all lines: cmd/core/main.go
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ func main() {
77
77
enableLeaderElectionbool
78
78
probeAddrstring
79
79
systemNamespacestring
80
-
unpackImagestring
80
+
unpackCacheDirstring
81
81
rukpakVersionbool
82
82
provisionerStorageDirectorystring
83
83
)
@@ -86,7 +86,7 @@ func main() {
86
86
flag.StringVar(&bundleCAFile, "bundle-ca-file", "", "The file containing the certificate authority for connecting to bundle content servers.")
87
87
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
88
88
flag.StringVar(&systemNamespace, "system-namespace", "", "Configures the namespace that gets used to deploy system resources.")
89
-
flag.StringVar(&unpackImage, "unpack-image", util.DefaultUnpackImage, "Configures the container image that gets used to unpack Bundle contents.")
89
+
flag.StringVar(&unpackCacheDir, "unpack-cache-dir", "/var/cache/unpack", "Configures the directory that gets used to unpack and cache Bundle contents.")
Copy file name to clipboardExpand all lines: cmd/helm/main.go
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -70,15 +70,15 @@ func main() {
70
70
enableLeaderElectionbool
71
71
probeAddrstring
72
72
systemNamespacestring
73
-
unpackImagestring
73
+
unpackCacheDirstring
74
74
rukpakVersionbool
75
75
storageDirectorystring
76
76
)
77
77
flag.StringVar(&httpBindAddr, "http-bind-address", ":8080", "The address the http server binds to.")
78
78
flag.StringVar(&httpExternalAddr, "http-external-address", "http://localhost:8080", "The external address at which the http server is reachable.")
79
79
flag.StringVar(&bundleCAFile, "bundle-ca-file", "", "The file containing the certificate authority for connecting to bundle content servers.")
80
80
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
81
-
flag.StringVar(&unpackImage, "unpack-image", util.DefaultUnpackImage, "Configures the container image that gets used to unpack Bundle contents.")
81
+
flag.StringVar(&unpackCacheDir, "unpack-cache-dir", "/var/cache/unpack", "Configures the directory that gets used to unpack and cache Bundle contents.")
82
82
flag.StringVar(&systemNamespace, "system-namespace", "", "Configures the namespace that gets used to deploy system resources.")
0 commit comments