Skip to content

Commit c5a2f40

Browse files
author
Tyler Phelan
committed
update docs
1 parent ad3d957 commit c5a2f40

3 files changed

Lines changed: 10 additions & 9 deletions

File tree

docs/kp_image_create.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ For each environment variable, supply the "--env" flag followed by the key value
2424
For example, "--env key1=value1 --env key2=value2 ...".
2525

2626
Service bindings may be provided by using the "--service-binding" flag.
27-
For each service binding, supply the "--service-binding" flag followed by the <KIND>/<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
28-
For example, "--service-binding my-secret-1 --service-binding Secret/v1:my-secret-2 --service-binding CustomProvisionedService/v1beta1:my-ps"
27+
For each service binding, supply the "--service-binding" flag followed by the <KIND>:<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
28+
For example, "--service-binding my-secret-1 --service-binding Secret:v1:my-secret-2 --service-binding CustomProvisionedService:v1beta1:my-ps"
2929

3030
```
3131
kp image create <name> --tag <tag> [flags]
@@ -39,7 +39,7 @@ kp image create my-image --tag my-registry.com/my-repo --blob https://my-blob-ho
3939
kp image create my-image --tag my-registry.com/my-repo --local-path /path/to/local/source/code
4040
kp image create my-image --tag my-registry.com/my-repo --local-path /path/to/local/source/code --builder my-builder -n my-namespace
4141
kp image create my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --env foo=bar --env color=red --env food=apple
42-
kp image create my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --service-binding my-secret-1 --service-binding Secret/v1:my-secret-2 --service-binding CustomProvisionedService/v1beta1:my-ps
42+
kp image create my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --service-binding my-secret-1 --service-binding Secret:v1:my-secret-2 --service-binding CustomProvisionedService:v1beta1:my-ps
4343
```
4444

4545
### Options

docs/kp_image_patch.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ For each environment variable, supply the "--env" flag followed by the key value
2323
For example, "--env key1=value1 --env key2=value2 --delete-env key3 --delete-env key3".
2424

2525
Service bindings may be provided by using the "--service-binding" flag or deleted by using the "--delete-service-binding" flag.
26-
For each service binding, supply the "--service-binding" flag followed by the <KIND>/<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
27-
For example, "--service-binding my-secret-1 --service-binding CustomProvisionedService/v1beta1:my-ps" --delete-service-binding Secret/v1:my-secret-2
26+
For each service binding, supply the "--service-binding" flag followed by the <KIND>:<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
27+
For example, "--service-binding my-secret-1 --service-binding CustomProvisionedService:v1beta1:my-ps" --delete-service-binding Secret:v1:my-secret-2
2828

2929
The --cache-size flag can only be used to increase the size of the existing cache.
3030

@@ -41,7 +41,7 @@ kp image patch my-image --blob https://my-blob-host.com/my-blob
4141
kp image patch my-image --local-path /path/to/local/source/code
4242
kp image patch my-image --local-path /path/to/local/source/code --builder my-builder
4343
kp image patch my-image --env foo=bar --env color=red --delete-env apple --delete-env potato
44-
kp image patch my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --service-binding my-secret --service-binding CustomProvisionedService/v1:my-ps --delete-service-binding my-secret-2
44+
kp image patch my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --service-binding my-secret --service-binding CustomProvisionedService:v1:my-ps --delete-service-binding Secret:v1:my-secret-2
4545
```
4646

4747
### Options

docs/kp_image_save.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ For each environment variable, supply the "--env" flag followed by the key value
2626
For example, "--env key1=value1 --env key2=value2 --delete-env key3".
2727

2828
Service bindings may be provided by using the "--service-binding" flag or deleted by using the "--delete-service-binding" flag.
29-
For each service binding, supply the "--service-binding" flag followed by the <KIND>/<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
30-
For example, "--service-binding my-secret-1 --service-binding CustomProvisionedService/v1beta1:my-ps --delete-service-binding Secret/v1:my-secret-2"
29+
For each service binding, supply the "--service-binding" flag followed by the <KIND>:<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
30+
For example, "--service-binding my-secret-1 --service-binding CustomProvisionedService:v1beta1:my-ps --delete-service-binding Secret:v1:my-secret-2"
31+
3132

3233
```
3334
kp image save <name> --tag <tag> [flags]
@@ -41,7 +42,7 @@ kp image save my-image --tag my-registry.com/my-repo --blob https://my-blob-host
4142
kp image save my-image --tag my-registry.com/my-repo --local-path /path/to/local/source/code
4243
kp image save my-image --tag my-registry.com/my-repo --local-path /path/to/local/source/code --builder my-builder -n my-namespace
4344
kp image save my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --env foo=bar --env color=red --env food=apple --delete-env apple --delete-env potato
44-
kp image save my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --service-binding my-secret --service-binding CustomProvisionedService/v1:my-ps --delete-service-binding my-secret-2
45+
kp image save my-image --tag my-registry.com/my-repo --blob https://my-blob-host.com/my-blob --service-binding my-secret --service-binding CustomProvisionedService:v1:my-ps --delete-service-binding Secret:v1:my-secret-2
4546
```
4647

4748
### Options

0 commit comments

Comments
 (0)