github.com/kubri/kubri@v0.5.1-0.20240317001612-bda2aaef967e/website/docs/configuration/generators/apk.md (about) 1 --- 2 sidebar_position: 4 3 --- 4 5 # Alpine Linux Repository 6 7 Generate and publish an Alpine Linux repository from your `.apk` files. 8 9 ## Configuration 10 11 ### `disabled` 12 13 - Type: `boolean` 14 - Default: `false` 15 16 Disable Alpine Linux. 17 18 ### `folder` 19 20 - Type: `string` 21 - Default: `apt` 22 23 Path to the directory on your target. 24 25 ### `key-name` 26 27 - Type: `string` 28 - Default: `` 29 30 The name of the ed25519 key used to sign the metadata. Required if signing is enabled. 31 32 ## Example 33 34 ```yaml 35 apk: 36 folder: alpine 37 key-name: alpine@example.com 38 ```