From cc56b194071c0f15d3a68bc051fc5cd6f695f8bc Mon Sep 17 00:00:00 2001 From: Kundan Kumar Date: Sat, 8 Mar 2025 23:54:48 +0530 Subject: [PATCH] update typo in kompose.volume.subpath --- docs/user-guide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/user-guide.md b/docs/user-guide.md index da500793..171f1f76 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -140,7 +140,7 @@ Labels are an important kompose concept as they allow you to add Kubernetes modi | `String` | `1Gi` | | [`kompose.volume.storage-class-name`](#komposevolumestorage-class-name) | StorageClassName for provisioning volumes | | `String` | `standard` | -| [`kompose.volume.sub-path`](#komposevolumesub-path) | Subpath inside the mounted volume | +| [`kompose.volume.subpath`](#komposevolumesubpath) | Subpath inside the mounted volume | | `String` | `/data` | | [`kompose.volume.type`](#komposevolumetype) | Type of Kubernetes volume | | `String` | `configMap`, `persistentVolumeClaim`, `emptyDir`, `hostPath` | @@ -541,14 +541,14 @@ services: - db-data:/var/lib/postgresql/data ``` -### kompose.volume.sub-path +### kompose.volume.subpath ```yaml services: pgadmin: image: postgres labels: - kompose.volume.sub-path: pg-data + kompose.volume.subpath: pg-data ``` ### kompose.volume.type @@ -642,4 +642,4 @@ If you want to customize the build and push processes and use another containers Kompose offers you the possibility to do that. You can use `--build-command` and `--push-command` flags to achieve that. -e.g: `kompose -f convert --build-command 'whatever command --you-use' --push-command 'whatever command --you-use'` \ No newline at end of file +e.g: `kompose -f convert --build-command 'whatever command --you-use' --push-command 'whatever command --you-use'`