*: Fix documentation on how to run containerized jsonnet

This commit is contained in:
paulfantom
2019-05-21 16:19:04 +02:00
parent 81b9c9f9f6
commit de2edfc5de

View File

@@ -214,15 +214,10 @@ Check the monitoring namespace (or the namespace you have specific in `namespace
### Containerized Installing and Compiling ### Containerized Installing and Compiling
If you don't care to have `jb` nor `jsonnet` nor `gojsontoyaml` installed, then build the `po-jsonnet` Docker image (this is something you'll need a copy of this repository for). Do the following from this `kube-prometheus` directory: If you don't care to have `jb` nor `jsonnet` nor `gojsontoyaml` installed, then use `quay.io/coreos/jsonnet-ci` container image. Do the following from this `kube-prometheus` directory:
```shell ```shell
$ make hack/jsonnet-docker-image $ docker run --rm -v $(pwd):$(pwd) --workdir $(pwd) quay.io/coreos/jsonnet-ci jb update
``` $ docker run --rm -v $(pwd):$(pwd) --workdir $(pwd) quay.io/coreos/jsonnet-ci ./build.sh example.jsonnet
Then you can do commands such as the following:
```shell
$ docker run --rm -v $(pwd):$(pwd) --workdir $(pwd) po-jsonnet jb update
$ docker run --rm -v $(pwd):$(pwd) --workdir $(pwd) po-jsonnet ./build.sh example.jsonnet
``` ```
## Update from upstream project ## Update from upstream project