Skip to content

Commit abc79c1

Browse files
kwiatekusgrego952
andauthored
Change first usage example (#2433)
Co-authored-by: Grzegorz Karaluch <[email protected]>
1 parent b746a35 commit abc79c1

File tree

2 files changed

+27
-10
lines changed

2 files changed

+27
-10
lines changed

README.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,24 @@ Inspect the new available alpha commands by calling the `--help` option:
2121
kyma alpha --help
2222
```
2323

24-
### Import Image Into Kyma's Internal Docker Registry
25-
26-
> [!NOTE]
27-
> To use the following `image-import` command, you must [install the Docker Registry module](https://github.com/kyma-project/docker-registry?tab=readme-ov-file#install) on your Kyma runtime
24+
Run a simple app from the image on Kyma by calling:
2825

2926
```sh
30-
docker pull kennethreitz/httpbin
27+
kyma alpha app push --name my-first-kyma-app --image kennethreitz/httpbin --expose --container-port 80
3128

32-
kyma alpha registry image-import kennethreitz/httpbin:latest
33-
```
3429

35-
Run a Pod from a locally hosted image
30+
Creating deployment default/my-first-kyma-app
3631

37-
```sh
38-
kubectl run my-pod --image=localhost:32137/kennethreitz/httpbin:latest --overrides='{ "spec": { "imagePullSecrets": [ { "name": "dockerregistry-config" } ] } }'
32+
Creating service default/my-first-kyma-app
33+
34+
Creating API Rule default/my-first-kyma-app
35+
36+
The `my-first-kyma-app` application is available under the https://my-first-kyma-app.{CLUSTER_DOMAIN}/ address
3937
```
4038

39+
For more usage scenarios, see [user documentation](./docs/user/README.md).
40+
41+
4142
## Development
4243

4344
To build a Kyma CLI binary, run:
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Import Image Into Kyma's Internal Docker Registry
2+
3+
> [!NOTE]
4+
> To use the following `image-import` command, you must [install the Docker Registry module](https://github.com/kyma-project/docker-registry?tab=readme-ov-file#install) on your Kyma runtime
5+
6+
```sh
7+
docker pull kennethreitz/httpbin
8+
9+
kyma alpha registry image-import kennethreitz/httpbin:latest
10+
```
11+
12+
Run a Pod from a locally hosted image
13+
14+
```sh
15+
kubectl run my-pod --image=localhost:32137/kennethreitz/httpbin:latest --overrides='{ "spec": { "imagePullSecrets": [ { "name": "dockerregistry-config" } ] } }'
16+
```

0 commit comments

Comments
 (0)