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.
Copy file name to clipboardExpand all lines: docs/docs/100-reference/02-admin/03-computeclasses.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,6 @@ affinity: # The same affinity fields for Pods
41
41
If `memory.min`, `memory.max`, `memory.values`, `affinity`, and `tolerations` are not given, then there are no scheduling rules for workloads using the compute class.
42
42
43
43
## Cluster Compute Classes
44
-
Cluster Compute Classes are exactly the same as Project Compute Classes except that they are not namespaced. This means that Cluster Woerkload Classes are available to every app running in your cluster.
44
+
Cluster Compute Classes are exactly the same as Project Compute Classes except that they are not namespaced. This means that Cluster Workload Classes are available to every app running in your cluster.
45
45
46
46
Similar to Project Compute Classes, there can be only one default for the entire cluster. However, there can be a default Cluster Compute Class and a default Project Compute Class for any project; the Project Compute Class default will take precedence in this situation. Similarly, if a Cluster Compute Class and a Project Compute Class exist with the same name, then the Project Compute Class will take precedence. These rules are applied when deploying apps and also when using the [`acorn offerings volumeclasses`](100-reference/01-command-line/acorn_offerings_computeclasses.md) command.
Copy file name to clipboardExpand all lines: docs/docs/100-reference/03-acornfile.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -255,7 +255,7 @@ containers: db: {
255
255
`ports` defines which ports are available on the container and the default level of access. Ports
256
256
are defined with three different access modes: internal, expose, publish. Internal ports are only available
257
257
to the containers within an Acorn. Expose(d) ports are available to services within the cluster. And
258
-
publish ports are available publically outside the cluster. The access mode defined in the Acornfile is
258
+
publish ports are available publicly outside the cluster. The access mode defined in the Acornfile is
259
259
just the default behavior and can be changed at deploy time.
260
260
```acorn
261
261
containers: web: {
@@ -450,7 +450,7 @@ containers: web: {
450
450
```
451
451
452
452
### memory
453
-
`memory` allows you to specify how much memory the container should run with. It can be abreviated to `mem`. If left unspecified, it will be defaulted to the installation default (see the [reference documentation for memory](06-compute-resources.md#memory) for more information).
453
+
`memory` allows you to specify how much memory the container should run with. It can be abbreviated to `mem`. If left unspecified, it will be defaulted to the installation default (see the [reference documentation for memory](06-compute-resources.md#memory) for more information).
454
454
455
455
```acorn
456
456
containers: {
@@ -676,7 +676,7 @@ secrets: "my-token": {
676
676
}
677
677
```
678
678
### data
679
-
`data` defines the keys and non-senstive values that will be used by the secret.
679
+
`data` defines the keys and non-sensitive values that will be used by the secret.
680
680
Refer to [the secrets documentation](38-authoring/05-secrets.md) for
681
681
descriptions of the different secret types and how to use data keys and values.
682
682
@@ -701,7 +701,7 @@ secrets: {
701
701
702
702
## args
703
703
704
-
`args` defines arguements that can be modified at build or runtime by the user.
704
+
`args` defines arguments that can be modified at build or runtime by the user.
705
705
Arguments to an Acorn can be standard strings, ints, bools, and other complex types. To define an argument,
706
706
specify a name and a default value. The type will be inferred from the default value.
Copy file name to clipboardExpand all lines: docs/docs/100-reference/06-compute-resources.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ You can configure Acorn apps to have a set compute class upon startup.
50
50
51
51
Setting a compute class allows you to define what the infrastructure providing your Acorn workloads should look like. Things that compute classes control include:
52
52
53
-
- What OS/Architecure your workloads will run on
53
+
- What OS/Architecture your workloads will run on
54
54
- How much memory is minimal, maximal, default and allowed
55
55
- How many vCPUs should be allocated
56
56
@@ -78,7 +78,7 @@ Breaking this down:
78
78
1.`-` denotes a range and any value within it can be specified.
79
79
2.`,` denotes specific values that are the only ones allowed.
80
80
81
-
Specifying compute classes can be done in the Acornfile (using the [class property](03-acornfile.md#class) for containers) or at runtime (using the [--compute-class flag](50-running/55-compute-resources.md#compute-class)). If you do not specify a compute class, the default compute class for the project will be used. If there is no default for the project, the default for the cluster will be used. Finally, if there is no cluster default then no compute class will be used. Depending on the compute class that is used, the memory that you specify may be in contention with its requirements. Should that happen Acorn will provide a descriptive error message to ammend any issues.
81
+
Specifying compute classes can be done in the Acornfile (using the [class property](03-acornfile.md#class) for containers) or at runtime (using the [--compute-class flag](50-running/55-compute-resources.md#compute-class)). If you do not specify a compute class, the default compute class for the project will be used. If there is no default for the project, the default for the cluster will be used. Finally, if there is no cluster default then no compute class will be used. Depending on the compute class that is used, the memory that you specify may be in contention with its requirements. Should that happen Acorn will provide a descriptive error message to amend any issues.
82
82
83
83
:::note
84
84
Looking to manage a compute class? This should only be done if you are (or are in communication with) an administrator of Acorn. You can read more information about managing compute classes [here](02-admin/03-computeclasses.md)
Copy file name to clipboardExpand all lines: docs/docs/38-authoring/00-overview.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ localData: {
113
113
114
114
Strings can be a single line or multiline. A single line string is surrounded by `"` quotes.
115
115
116
-
Multiline strings are enclosed in triple quotes `"""`. The opening `"""` must be followed by a newline. The closing `"""` must also be on it's own line. The whitespace directly preceding the closing quotles must match the preceding whitespace on all other lines and is not included in the value. This allows you to indent the text to match current level without the indenting becoming part of the actual value.
116
+
Multiline strings are enclosed in triple quotes `"""`. The opening `"""` must be followed by a newline. The closing `"""` must also be on it's own line. The whitespace directly preceding the closing quotes must match the preceding whitespace on all other lines and is not included in the value. This allows you to indent the text to match current level without the indenting becoming part of the actual value.
117
117
118
118
```acorn
119
119
singleLine: "Hi!"
@@ -278,10 +278,10 @@ All the basic math and comparison operators you'd find in a typical programming
278
278
| :--------|:--------|:--------|:-------|
279
279
| Addition |`+`|`1 + 1`|`2`|
280
280
| Subtraction |`-`|`4 - 1`|`3`|
281
-
|Muliplication|`*`|`4 * 2`|`8`|
281
+
|Multiplication|`*`|`4 * 2`|`8`|
282
282
| Division |`/`|`5 / 2`|`2.5`|
283
283
| Greater than |`>`|`2 > 1`|`true`|
284
-
|Grather than or equal |`>=`|`2 >= 2`|`true`|
284
+
|Greater than or equal |`>=`|`2 >= 2`|`true`|
285
285
| Less than |`<`|`1 < 1`|`false`|
286
286
| Less than or equal |`<=`|`1 <= 1`|`true`|
287
287
| Equals |`==`|`1 == 2`|`false`|
@@ -363,7 +363,7 @@ containers: {
363
363
}
364
364
```
365
365
366
-
See the [function libarary](../reference/functions#ifelse) for more information.
366
+
See the [function library](../reference/functions#ifelse) for more information.
Copy file name to clipboardExpand all lines: docs/docs/38-authoring/03-containers.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -363,7 +363,7 @@ The `memory` property can be abbreviated to `mem` in the file.
363
363
364
364
## Compute Classes
365
365
366
-
When you want to specify what infrastructure your Acorn's workload will run on, you use Compute Classes. You can set the class of a workload by defining by the `class` property defineable on all workloads (`containers` and `jobs`). Check out the [compute class documemtation](100-reference/06-compute-resources.md#compute-classes) for more information.
366
+
When you want to specify what infrastructure your Acorn's workload will run on, you use Compute Classes. You can set the class of a workload by defining by the `class` property definable on all workloads (`containers` and `jobs`). Check out the [compute class documentation](100-reference/06-compute-resources.md#compute-classes) for more information.
Copy file name to clipboardExpand all lines: docs/docs/38-authoring/05-secrets.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ Acorn makes multiple types of secrets available to the Acorn author.
120
120
1.**Template:** Used to store configuration files that contain sensitive information.
121
121
1.**Token:** Used to generate and/or store long secret strings.
122
122
1.**Generated:** Used to take the output of a `job` and pass along as a secret bit of info.
123
-
1.**Opaque:** A generic secret that can store defaults in the Acorn, or is meant to be overriden by the user to pass unknown/unstructured sensitive data.
123
+
1.**Opaque:** A generic secret that can store defaults in the Acorn, or is meant to be overridden by the user to pass unknown/unstructured sensitive data.
Copy file name to clipboardExpand all lines: docs/docs/38-authoring/09-permissions.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ Physically defining the permissions of your application, `rules` get converted i
65
65
Similar to `rules`, `clusterRules` define permissions in the application's namespace but with the added benefit of working in other ones as well. Instead of creating a `Role` that gets attached to your application's `ServiceAccount`, you get a `ClusterRole`. If you would like to allow your application to perform the defined rules in any namespace on the cluster then `clusterRules` are the way to go.
66
66
67
67
## Verbs
68
-
To define what actions your application can perform on a given resource, you define a `verb`. These `verbs` are words that allow you to declaritively define what actions your application can perform on given resources.
68
+
To define what actions your application can perform on a given resource, you define a `verb`. These `verbs` are words that allow you to declaratively define what actions your application can perform on given resources.
Copy file name to clipboardExpand all lines: docs/docs/39-publishing.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ acorn login index.docker.io
55
55
acorn login ghcr.io
56
56
```
57
57
58
-
You will be prompted for your username and password to login. If your company has an internal registry you can login subtituting`ghcr.io` for your organizations registry domain.
58
+
You will be prompted for your username and password to login. If your company has an internal registry you can login substituting`ghcr.io` for your organizations registry domain.
Copy file name to clipboardExpand all lines: docs/docs/50-running/20-labels.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Labels and Annotations
3
3
---
4
4
5
-
As mentioned in the [authoring section](38-authoring/20-labels.md), you can add labels and annotations to your Acorns that will then be propogated down to the core Kubernetes resources created by Acorn. Authors of Acorn images can add these directly to the Acornfile, but users can also add them at runtime.
5
+
As mentioned in the [authoring section](38-authoring/20-labels.md), you can add labels and annotations to your Acorns that will then be propagated down to the core Kubernetes resources created by Acorn. Authors of Acorn images can add these directly to the Acornfile, but users can also add them at runtime.
6
6
7
7
The flags for adding labels and annotations allow you to specify the resource type and name you are targeting. This is best explained through examples:
0 commit comments