Skip to content

Commit eb33896

Browse files
committed
Escape liquid syntax
1 parent 8d1f79b commit eb33896

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

_data/dpl.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
s3: |
2+
3+
4+
* **access-key-id**: AWS Access Key ID. Can be obtained from [here](https://console.aws.amazon.com/iam/home?#security_credential).
5+
* **secret-access-key**: AWS Secret Key. Can be obtained from [here](https://console.aws.amazon.com/iam/home?#security_credential).
6+
* **bucket**: S3 Bucket.
7+
* **region**: S3 Region. Defaults to us-east-1.
8+
* **upload-dir**: S3 directory to upload to. Defaults to root directory.
9+
* **storage-class**: S3 storage class to upload as. Defaults to "STANDARD". Other values are "STANDARD_IA" or "REDUCED_REDUNDANCY". Details can be found [here](https://aws.amazon.com/s3/storage-classes/).
10+
* **server-side-encryption**: When set to `true`, use S3 Server Side Encryption (SSE-AES256). Defaults to `false`.
11+
* **local-dir**: Local directory to upload from. Can be set from a global perspective (~/travis/build) or relative perspective (build) Defaults to project root.
12+
* **detect-encoding**: Set HTTP header `Content-Encoding` for files compressed with `gzip` and `compress` utilities. Defaults to not set.
13+
* **cache_control**: Set HTTP header `Cache-Control` to suggest that the browser cache the file. Defaults to `no-cache`. Valid options are `no-cache`, `no-store`, `max-age=<seconds>`,`s-maxage=<seconds>` `no-transform`, `public`, `private`.
14+
* **expires**: This sets the date and time that the cached object is no longer cacheable. Defaults to not set. The date must be in the format `YYYY-MM-DD HH:MM:SS -ZONE`.
15+
* **acl**: Sets the access control for the uploaded objects. Defaults to `private`. Valid options are `private`, `public_read`, `public_read_write`, `authenticated_read`, `bucket_owner_read`, `bucket_owner_full_control`.
16+
* **dot_match**: When set to `true`, upload files starting a `.`.
17+
* **index_document_suffix**: Set the index document of a S3 website.
18+
* **default_text_charset**: Set the default character set to append to the content-type of text files you are uploading.
19+
heroku: |

user/enterprise/platform-tips.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,8 @@ $ travis console
6464
After an upgrade of Replicated 2.8.0 to a newer version occasionally the service
6565
restarts with the following error:
6666

67-
<!-- TODO:
68-
69-
Liquid Warning: Liquid syntax error (line 62): [:dot, "."] is not a valid expression in
70-
71-
{{.State.Error}}
72-
73-
is this intentional? Or just colliding syntax?
74-
75-
-->
76-
7767
```
78-
$ docker inspect --format '{{.State.Error}}' focused_yalow
68+
$ docker inspect --format '{% raw %}{{.State.Error}}{% endraw %}' focused_yalow
7969
oci runtime error: container_linux.go:247: starting container process
8070
caused "process_linux.go:359: container init caused
8171
\"rootfs_linux.go:54: mounting

0 commit comments

Comments
 (0)