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 Mar 16, 2024. It is now read-only.
Secret []string`usage:"Bind an existing secret (format existing:sec-name) (ex: sec-name:app-secret)" short:"s"`
41
-
Link []string`usage:"Link external app as a service in the current app (format app-name:container-name)"`
42
-
PublishAll*bool`usage:"Publish all (true) or none (false) of the defined ports of application" short:"P"`
43
-
Publish []string`usage:"Publish port of application (format [public:]private) (ex 81:80)" short:"p"`
44
-
Profile []string`usage:"Profile to assign default values"`
45
-
Env []string`usage:"Environment variables to set on running containers" short:"e"`
46
-
Label []string`usage:"Add labels to the app and the resources it creates (format [type:][name:]key=value) (ex k=v, containers:k=v)" short:"l"`
47
-
Annotation []string`usage:"Add annotations to the app and the resources it creates (format [type:][name:]key=value) (ex k=v, containers:k=v)"`
48
-
Dangerousbool`usage:"Automatically approve all privileges requested by the application"`
49
-
Outputstring`usage:"Output API request without creating app (json, yaml)" short:"o"`
50
-
TargetNamespacestring`usage:"The name of the namespace to be created and deleted for the application resources"`
51
-
NotifyUpgrade*bool`usage:"If true and the app is configured for auto-upgrades, you will be notified in the CLI when an upgrade is available and must confirm it"`
Intervalstring`usage:"If configured for auto-upgrade, this is the time interval at which to check for new releases (ex: 1h, 5m)"`
54
-
Memory []string`usage:"Set memory for a workload in the format of workload=memory. Only specify an amount to set all workloads. (ex foo=512Mi or 512Mi)" short:"m"`
55
-
ComputeClass []string`usage:"Set computeclass for a workload in the format of workload=computeclass. Specify a single computeclass to set all workloads. (ex foo=example-class or example-class)"`
37
+
Regionstring`usage:"Region in which to deploy the app, immutable"`
38
+
Filestring`short:"f" usage:"Name of the build file (default \"DIRECTORY/Acornfile\")"`
Secret []string`usage:"Bind an existing secret (format existing:sec-name) (ex: sec-name:app-secret)" short:"s"`
41
+
Link []string`usage:"Link external app as a service in the current app (format app-name:container-name)"`
42
+
PublishAll*bool`usage:"Publish all (true) or none (false) of the defined ports of application" short:"P"`
43
+
Publish []string`usage:"Publish port of application (format [public:]private) (ex 81:80)" short:"p"`
44
+
Profile []string`usage:"Profile to assign default values"`
45
+
Env []string`usage:"Environment variables to set on running containers" short:"e"`
46
+
Label []string`usage:"Add labels to the app and the resources it creates (format [type:][name:]key=value) (ex k=v, containers:k=v)" short:"l"`
47
+
Annotation []string`usage:"Add annotations to the app and the resources it creates (format [type:][name:]key=value) (ex k=v, containers:k=v)"`
48
+
Dangerousbool`usage:"Automatically approve all privileges requested by the application"`
49
+
Outputstring`usage:"Output API request without creating app (json, yaml)" short:"o"`
50
+
NotifyUpgrade*bool`usage:"If true and the app is configured for auto-upgrades, you will be notified in the CLI when an upgrade is available and must confirm it"`
Intervalstring`usage:"If configured for auto-upgrade, this is the time interval at which to check for new releases (ex: 1h, 5m)"`
53
+
Memory []string`usage:"Set memory for a workload in the format of workload=memory. Only specify an amount to set all workloads. (ex foo=512Mi or 512Mi)" short:"m"`
54
+
ComputeClass []string`usage:"Set computeclass for a workload in the format of workload=computeclass. Specify a single computeclass to set all workloads. (ex foo=example-class or example-class)"`
Copy file name to clipboardExpand all lines: pkg/client/client.go
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,6 @@ type AppUpdateOptions struct {
102
102
DeployArgsmap[string]any
103
103
Stop*bool
104
104
Imagestring
105
-
TargetNamespacestring
106
105
Replacebool// Replace is used to indicate whether the update should be a patch (replace=false: only change specified fields) or a full update (replace=true: reset unspecified fields to defaults)
107
106
AutoUpgrade*bool
108
107
NotifyUpgrade*bool
@@ -127,7 +126,6 @@ type AppRunOptions struct {
127
126
Publish []v1.PortBinding
128
127
Env []v1.NameValue
129
128
Profiles []string
130
-
TargetNamespacestring
131
129
DeployArgsmap[string]any
132
130
Stop*bool
133
131
Permissions []v1.Permissions
@@ -152,7 +150,6 @@ func (a AppRunOptions) ToUpdate() AppUpdateOptions {
152
150
Profiles: a.Profiles,
153
151
Permissions: a.Permissions,
154
152
Env: a.Env,
155
-
TargetNamespace: a.TargetNamespace,
156
153
AutoUpgrade: a.AutoUpgrade,
157
154
NotifyUpgrade: a.NotifyUpgrade,
158
155
AutoUpgradeInterval: a.AutoUpgradeInterval,
@@ -175,7 +172,6 @@ func (a AppUpdateOptions) ToRun() AppRunOptions {
0 commit comments