Fix missing quote in driver docs
This commit is contained in:
parent
16946aff13
commit
08afeba499
|
@ -38,7 +38,7 @@ The `exec` driver supports the following configuration in the job spec:
|
|||
before launching the task. For example:
|
||||
|
||||
```
|
||||
args = ["$nomad.ip", "$MY_ENV", $meta.foo"]
|
||||
args = ["$nomad.ip", "$MY_ENV", "$meta.foo"]
|
||||
```
|
||||
|
||||
## Client Requirements
|
||||
|
|
|
@ -33,7 +33,7 @@ The `java` driver supports the following configuration in the job spec:
|
|||
before launching the task. For example:
|
||||
|
||||
```
|
||||
args = ["$nomad.ip", "$MY_ENV", $meta.foo"]
|
||||
args = ["$nomad.ip", "$MY_ENV", "$meta.foo"]
|
||||
```
|
||||
|
||||
* `jvm_options` - (Optional) A list of JVM options to be passed while invoking
|
||||
|
|
|
@ -36,7 +36,7 @@ The `raw_exec` driver supports the following configuration in the job spec:
|
|||
before launching the task. For example:
|
||||
|
||||
```
|
||||
args = ["$nomad.ip", "$MY_ENV", $meta.foo"]
|
||||
args = ["$nomad.ip", "$MY_ENV", "$meta.foo"]
|
||||
```
|
||||
|
||||
## Client Requirements
|
||||
|
|
Loading…
Reference in a new issue