Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(artifacts): fix typo and remove superfluous whitespace #13251

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/walk-through/artifacts.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Optionally, for large artifacts, you can set `podSpecPatch` in the workflow spec
```yaml
<... snipped ...>
- name: large-artifact
# below patch gets merged with the actual pod spec and increses the memory
# below patch gets merged with the actual pod spec and increases the memory
# request of the init container.
podSpecPatch: |
initContainers:
Expand Down Expand Up @@ -92,15 +92,15 @@ Artifacts are packaged as Tarballs and gzipped by default. You may customize thi
path: /tmp/hello_world.txt

# disable archiving entirely - upload the file / directory as is.
# this is useful when the container layout matches the desired target repository layout.
# this is useful when the container layout matches the desired target repository layout.
- name: hello-art-2
path: /tmp/hello_world.txt
archive:
none: {}

# customize the compression behavior (disabling it here).
# this is useful for files with varying compression benefits,
# e.g. disabling compression for a cached build workspace and large binaries,
# this is useful for files with varying compression benefits,
# e.g. disabling compression for a cached build workspace and large binaries,
# or increasing compression for "perfect" textual data - like a json/xml export of a large database.
- name: hello-art-3
path: /tmp/hello_world.txt
Expand Down Expand Up @@ -167,7 +167,7 @@ metadata:
spec:
entrypoint: main
artifactGC:
strategy: OnWorkflowDeletion
strategy: OnWorkflowDeletion
##############################################################################################
# Workflow Level Service Account and Metadata
##############################################################################################
Expand Down Expand Up @@ -268,7 +268,7 @@ A flag has been added to the Workflow Spec called `forceFinalizerRemoval` (see [
```yaml
spec:
artifactGC:
strategy: OnWorkflowDeletion
strategy: OnWorkflowDeletion
forceFinalizerRemoval: true

```
Loading