Skip to content

Commit

Permalink
rename: remaining akkasls -> kalix (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlugter authored May 25, 2022
1 parent ad4e91c commit 3942e4d
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ class JsCodegenIntegrationSuite extends munit.FunSuite {
.withFileFromPath("kalix-codegen-js", cliImagePath)
.withFileFromPath("kalix-npm-js", npmJsPath)

class AkkaslsJsCodegenContainer extends GenericContainer[AkkaslsJsCodegenContainer](codegenImage)
class KalixJsCodegenContainer extends GenericContainer[KalixJsCodegenContainer](codegenImage)

class AkkaslsProxyContainer extends GenericContainer[AkkaslsProxyContainer](proxyImage)
class KalixProxyContainer extends GenericContainer[KalixProxyContainer](proxyImage)

val logConsumer = new Slf4jLogConsumer(logger);
logger.info("Waiting for docker image to be built. This can take several minutes")
Expand All @@ -45,11 +45,11 @@ class JsCodegenIntegrationSuite extends munit.FunSuite {
// Define simple dockerised deployment with proxy and container for generated project
val network = Network.newNetwork()
val codegenContainer =
new AkkaslsJsCodegenContainer()
new KalixJsCodegenContainer()
.withNetwork(network)
.withNetworkAliases("generated-entity")
.withEnv("HOST", "0.0.0.0")
val proxyContainer = new AkkaslsProxyContainer()
val proxyContainer = new KalixProxyContainer()
.withNetwork(network)
.withNetworkAliases("proxy")
.withExposedPorts(9000)
Expand Down
4 changes: 2 additions & 2 deletions npm-js/create-kalix-entity/template/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ ERROR:
## Deploying to Kalix

To deploy your service, install the `akkasls` CLI as documented in [Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and configure a Docker Registry to upload your docker image to.
To deploy your service, install the `kalix` CLI as documented in [Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and configure a Docker Registry to upload your docker image to.

You will need to update the `config.dockerImage` property in the `package.json` and refer to [Configuring registries](https://docs.kalix.io/projects/container-registries.html) for more information on how to make your docker image available to Kalix.

Finally, you can use the [Kalix Console](https://console.kalix.io)
to create a project and then deploy your service into the project either by using `npm run deploy`,
through the `akkasls` CLI or via the web interface. When using `npm run deploy`, npm will also
through the `kalix` CLI or via the web interface. When using `npm run deploy`, npm will also
conveniently package and publish your docker image prior to deployment.
2 changes: 1 addition & 1 deletion npm-js/kalix-scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ On install, this downloads the latest version of the JavaScript [codegen CLI](..
### Deploy

- Deploys Docker image to specified repository
- Invokes Kalix deploy via `akkasls` CLI
- Invokes Kalix deploy via `kalix` CLI
4 changes: 2 additions & 2 deletions samples/js/js-eventsourced-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ grpcurl --plaintext -d '{"cart_id": "cart1", "product_id": "kalix-tshirt"}' loca

## Deploying to Kalix

To deploy your service, install the `akkasls` CLI as documented in [Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and configure a Docker Registry to upload your docker image to.
To deploy your service, install the `kalix` CLI as documented in [Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and configure a Docker Registry to upload your docker image to.

You will need to update the `config.dockerImage` property in the `package.json` and refer to [Configuring registries](https://docs.kalix.io/projects/container-registries.html) for more information on how to make your docker image available to Kalix.

Finally, you can use the [Kalix Console](https://console.kalix.io)
to create a project and then deploy your service into the project either by using `npm run deploy`,
through the `akkasls` CLI or via the web interface. When using `npm run deploy`, npm will also
through the `kalix` CLI or via the web interface. When using `npm run deploy`, npm will also
conveniently package and publish your docker image prior to deployment.
4 changes: 2 additions & 2 deletions samples/js/js-replicated-entity-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ grpcurl --plaintext -d '{"cart_id": "cart1"}' localhost:9000 com.example.shoppin

## Deploying

To deploy your service, install the `akkasls` CLI as documented in [Setting up a local development
To deploy your service, install the `kalix` CLI as documented in [Setting up a local development
environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and
configure a Docker Registry to upload your docker image to.

Expand All @@ -102,6 +102,6 @@ registries](https://docs.kalix.io/projects/container-registries.html) for more
information on how to make your docker image available to Kalix.

Finally you can or use the [Kalix Console](https://console.kalix.io) to create a project and then
deploy your service into the project either by using `npm run deploy`, through the `akkasls` CLI or via the web
deploy your service into the project either by using `npm run deploy`, through the `kalix` CLI or via the web
interface. When using `npm run deploy`, npm will also conveniently package and publish your docker image prior to
deployment.
4 changes: 2 additions & 2 deletions samples/js/js-valueentity-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ grpcurl --plaintext -d '{"cart_id": "cart1"}' localhost:9000 com.example.shoppin

## Deploying

To deploy your service, install the `akkasls` CLI as documented in
To deploy your service, install the `kalix` CLI as documented in
[Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html)
and configure a Docker Registry to upload your docker image to.

Expand All @@ -99,5 +99,5 @@ for more information on how to make your docker image available to Kalix.

Finally you can or use the [Kalix Console](https://console.kalix.io)
to create a project and then deploy your service into the project either by using `npm run deploy`,
through the `akkasls` CLI or via the web interface. When using `npm run deploy`, npm will also
through the `kalix` CLI or via the web interface. When using `npm run deploy`, npm will also
conveniently package and publish your docker image prior to deployment.
6 changes: 3 additions & 3 deletions samples/js/valueentity-counter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ ERROR:
## Deploying

To deploy your service, install the `akkasls` CLI as documented in
To deploy your service, install the `kalix` CLI as documented in
[Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html)
and configure a Docker Registry to upload your docker image to.

You will need to update the `akkasls.dockerImage` property in the `pom.xml` and refer to
You will need to update the `config.dockerImage` property in the `package.json` and refer to
[Configuring registries](https://docs.kalix.io/projects/container-registries.html)
for more information on how to make your docker image available to Kalix.

Finally you can or use the [Kalix Console](https://console.kalix.io)
to create a project and then deploy your service into the project either by using `npm run deploy`,
through the `akkasls` CLI or via the web interface. When using `npm run deploy`, npm will also
through the `kalix` CLI or via the web interface. When using `npm run deploy`, npm will also
conveniently package and publish your docker image prior to deployment.
4 changes: 2 additions & 2 deletions samples/ts/ts-eventsourced-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ grpcurl --plaintext -d '{"cart_id": "cart1", "product_id": "kalix-tshirt"}' loca

## Deploying to Kalix

To deploy your service, install the `akkasls` CLI as documented in [Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and configure a Docker Registry to upload your docker image to.
To deploy your service, install the `kalix` CLI as documented in [Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and configure a Docker Registry to upload your docker image to.

You will need to update the `config.dockerImage` property in the `package.json` and refer to [Configuring registries](https://docs.kalix.io/projects/container-registries.html) for more information on how to make your docker image available to Kalix.

Finally, you can use the [Kalix Console](https://console.kalix.io)
to create a project and then deploy your service into the project either by using `npm run deploy`,
through the `akkasls` CLI or via the web interface. When using `npm run deploy`, NPM will also
through the `kalix` CLI or via the web interface. When using `npm run deploy`, NPM will also
conveniently package and publish your docker image prior to deployment.
4 changes: 2 additions & 2 deletions samples/ts/ts-replicated-entity-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ grpcurl --plaintext -d '{"cart_id": "cart1"}' localhost:9000 com.example.shoppin

## Deploying

To deploy your service, install the `akkasls` CLI as documented in [Setting up a local development
To deploy your service, install the `kalix` CLI as documented in [Setting up a local development
environment](https://docs.kalix.io/getting-started/set-up-development-env.html) and
configure a Docker Registry to upload your docker image to.

Expand All @@ -102,6 +102,6 @@ registries](https://docs.kalix.io/projects/container-registries.html) for more
information on how to make your docker image available to Kalix.

Finally you can or use the [Kalix Console](https://console.kalix.io) to create a project and then
deploy your service into the project either by using `npm run deploy`, through the `akkasls` CLI or via the web
deploy your service into the project either by using `npm run deploy`, through the `kalix` CLI or via the web
interface. When using `npm run deploy`, npm will also conveniently package and publish your docker image prior to
deployment.
6 changes: 3 additions & 3 deletions samples/ts/ts-valueentity-counter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ ERROR:
## Deploying

To deploy your service, install the `akkasls` CLI as documented in
To deploy your service, install the `kalix` CLI as documented in
[Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html)
and configure a Docker Registry to upload your docker image to.

You will need to update the `akkasls.dockerImage` property in the `pom.xml` and refer to
You will need to update the `config.dockerImage` property in the `package.json` and refer to
[Configuring registries](https://docs.kalix.io/projects/container-registries.html)
for more information on how to make your docker image available to Kalix.

Finally you can or use the [Kalix Console](https://console.kalix.io)
to create a project and then deploy your service into the project either by using `npm run deploy`,
through the `akkasls` CLI or via the web interface. When using `npm run deploy`, NPM will also
through the `kalix` CLI or via the web interface. When using `npm run deploy`, NPM will also
conveniently package and publish your docker image prior to deployment.
4 changes: 2 additions & 2 deletions samples/ts/ts-valueentity-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ grpcurl --plaintext -d '{"cart_id": "cart1"}' localhost:9000 com.example.shoppin

## Deploying

To deploy your service, install the `akkasls` CLI as documented in
To deploy your service, install the `kalix` CLI as documented in
[Setting up a local development environment](https://docs.kalix.io/getting-started/set-up-development-env.html)
and configure a Docker Registry to upload your docker image to.

Expand All @@ -99,5 +99,5 @@ for more information on how to make your docker image available to Kalix.

Finally you can use the [Kalix Console](https://console.kalix.io)
to create a project and then deploy your service into the project either by using `npm run deploy`,
through the `akkasls` CLI or via the web interface. When using `npm run deploy`, npm will also
through the `kalix` CLI or via the web interface. When using `npm run deploy`, npm will also
conveniently package and publish your docker image prior to deployment.

0 comments on commit 3942e4d

Please sign in to comment.