Skip to content

Commit 69c5daf

Browse files
committed
docs: update Butane config examples to use stable version strings instead of experimental
1 parent a052a2c commit 69c5daf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/examples.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -487,31 +487,31 @@ This example embeds an Ignition config directly into the Butane config:
487487
<!-- butane-config -->
488488
```yaml
489489
variant: fcos
490-
version: 1.7.0-experimental
490+
version: 1.6.0
491491
ignition:
492492
config:
493493
merge:
494-
- inline: '{"ignition": {"version": "3.6.0-experimental"}}'
494+
- inline: '{"ignition": {"version": "3.5.0"}}'
495495
```
496496

497497
This example merges an Ignition from a local file. The file directory can be specified using the `-d/--files` option when running Butane.
498498

499499
<!-- butane-config -->
500500
```yaml
501501
variant: fcos
502-
version: 1.7.0-experimental
502+
version: 1.6.0
503503
ignition:
504504
config:
505505
merge:
506-
- local: ignition.ig
506+
- local: ignition.ign
507507
```
508508

509509
This example fetches and merges an Ignition config from a remote URL.
510510

511511
<!-- butane-config -->
512512
```yaml
513513
variant: fcos
514-
version: 1.7.0-experimental
514+
version: 1.6.0
515515
ignition:
516516
config:
517517
merge:

test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ if [ -n "${csplit}" ] && [ -n "${head}" ]; then
5353
touch tmpdocs/files-dir/{config.ign,ca.pem,example.conf,example.service,file,file-epilogue,local-file3}
5454
echo "ssh-rsa AAAA" > tmpdocs/files-dir/id_rsa.pub
5555
echo "ssh-ed25519 AAAA" > tmpdocs/files-dir/id_ed25519.pub
56-
echo '{"ignition": {"version": "3.6.0-experimental"}}' > tmpdocs/files-dir/ignition.ig
56+
echo '{"ignition": {"version": "3.5.0"}}' > tmpdocs/files-dir/ignition.ign
5757

5858
for doc in docs/*md
5959
do

0 commit comments

Comments
 (0)