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
-> **Note**: The `script` argument can take anny string, including a [heredoc](https://www.terraform.io/docs/language/expressions/strings.html#heredoc-strings) or the contents of a file returned by the [`file`](https://www.terraform.io/docs/language/functions/file.html) function.
40
+
-> **Note:** The `script` argument can take anny string, including a [heredoc](https://www.terraform.io/docs/language/expressions/strings.html#heredoc-strings) or the contents of a file returned by the [`file`](https://www.terraform.io/docs/language/functions/file.html) function.
Copy file name to clipboardExpand all lines: docs/index.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ $ terraform apply
51
51
52
52
-`GOOGLE_APPLICATION_CREDENTIALS` - Path to a service account JSON key file.
53
53
54
-
-> **Note** you can also use `GOOGLE_APPLICATION_CREDENTIALS_DATA` with the
54
+
-> **Note:** you can also use `GOOGLE_APPLICATION_CREDENTIALS_DATA` with the
55
55
**contents** of the service account JSON key file.
56
56
57
57
### Microsoft Azure
@@ -65,4 +65,4 @@ $ terraform apply
65
65
66
66
-`KUBECONFIG` - Path to a [`kubeconfig` file](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#the-kubeconfig-environment-variable).
67
67
68
-
-> **Note**: You can use `KUBECONFIG_DATA` instead, with the **contents** of the `kubeconfig` file.
68
+
-> **Note:** You can use `KUBECONFIG_DATA` instead, with the **contents** of the `kubeconfig` file.
Copy file name to clipboardExpand all lines: docs/resources/task.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ In addition to all arguments above, the following attributes are exported:
54
54
-`events` - List of events for the machine orchestrator.
55
55
-`logs` - List with task logs; one for each machine.
56
56
57
-
~> **Note**: Status and events don't produce a stable output between cloud providers and are intended for human consumption only.
57
+
~> **Note:** Status and events don't produce a stable output between cloud providers and are intended for human consumption only.
58
58
59
59
## Machine Type
60
60
@@ -104,9 +104,9 @@ supported by the underlying cloud provider.
104
104
-`{cpu}-{memory}` - Any [CPU & memory combination](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) (e.g. `64-256000`).
105
105
-`{cpu}-{memory}+{accelerator}*{count}` - Any CPU, memory, & [accelerator](https://kubernetes.io/docs/tasks/manage-gpus/scheduling-gpus) combination (e.g. `64-256000+nvidia-tesla-k80*1`).
106
106
107
-
-> **Note**: Specified resource amounts are considered **limits** (rather than **requests**).
107
+
-> **Note:** Specified resource amounts are considered **limits** (rather than **requests**).
108
108
109
-
-> **Note**:`{accelerator}` will be transformed into a node selector requesting `accelerator={accelerator}` and `{count}` will be configured as the **limits** count for `kubernetes.io/gpu`.
109
+
-> **Note:**`{accelerator}` will be transformed into a node selector requesting `accelerator={accelerator}` and `{count}` will be configured as the **limits** count for `kubernetes.io/gpu`.
110
110
111
111
## Machine Images
112
112
@@ -210,6 +210,6 @@ Setting the `region` attribute results in undefined behaviour.
210
210
211
211
Unlike public cloud providers, Kubernetes does not offer any portable way of persisting and sharing storage between pods. When specified, the `directory` attribute will create a `PersistentVolumeClaim` of the default `StorageClass`, with the same lifecycle as the task and the specified `disk_size`.
212
212
213
-
~> **Warning**: Access mode will be `ReadWriteOnce` for `parallelism` equal to 1 or `ReadWriteMany` otherwise.
213
+
~> **Warning:** Access mode will be `ReadWriteOnce` for `parallelism` equal to 1 or `ReadWriteMany` otherwise.
214
214
215
-
-> **Note**: Rancher's [Local Path Provisioner](https://github.com/rancher/local-path-provisioner) might be the easiest way of deploying a quick `ReadWriteOnce` dynamically allocated storage solution for testing: just run `kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml`.
215
+
-> **Note:** Rancher's [Local Path Provisioner](https://github.com/rancher/local-path-provisioner) might be the easiest way of deploying a quick `ReadWriteOnce` dynamically allocated storage solution for testing: just run `kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml`.
0 commit comments