Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/restate-constructs/fargate-restate-deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const PUBLIC_ADMIN_PORT = 9070;
const RESTATE_INGRESS_PORT = 8080;
const RESTATE_ADMIN_PORT = 9070;
const RESTATE_IMAGE_DEFAULT = "docker.restate.dev/restatedev/restate";
const RESTATE_DOCKER_DEFAULT_TAG = "1.6";
const RESTATE_DOCKER_DEFAULT_TAG = "1.7";
const ADOT_DOCKER_DEFAULT_TAG = "latest";

export interface RestateFargateProps {
Expand Down Expand Up @@ -101,6 +101,9 @@ export interface RestateFargateProps {
* Creates a Restate service deployment running as a Fargate task and backed by EFS.
*
* Please note that this construct is still experimental! Use with caution.
*
* @deprecated This construct will be removed in a future release. To run Restate on Kubernetes, use the Restate Helm
* chart or the restate-operator instead.
*/
export class FargateRestateDeployment extends Construct implements IRestateEnvironment {
readonly invokerRole: iam.IRole;
Expand Down
7 changes: 5 additions & 2 deletions lib/restate-constructs/single-node-restate-deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ const RESTATE_TLS_INGRESS_PORT = 443;
const RESTATE_ADMIN_PORT = 9070;
const RESTATE_TLS_ADMIN_PORT = 9073;
const RESTATE_IMAGE_DEFAULT = "docker.restate.dev/restatedev/restate";
const RESTATE_DOCKER_DEFAULT_TAG = "1.6";
const RESTATE_NPM_DEFAULT_TAG = "1.6";
const RESTATE_DOCKER_DEFAULT_TAG = "1.7";
const RESTATE_NPM_DEFAULT_TAG = "1.7";
const ADOT_DOCKER_DEFAULT_TAG = "latest";
const DATA_DEVICE_NAME = "/dev/sdd";

Expand All @@ -168,6 +168,9 @@ const DATA_DEVICE_NAME = "/dev/sdd";
*
* See {@link SingleNodeRestateProps} for available configuration options, and {@link ServiceDeployer} for deploying
* Lambda handlers to environments.
*
* @deprecated This construct will be removed in a future release. To run Restate on Kubernetes, use the Restate Helm
* chart or the restate-operator instead.
*/
export class SingleNodeRestateDeployment extends Construct implements IRestateEnvironment {
readonly instance: ec2.Instance;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@restatedev/restate-cdk",
"description": "Restate.dev CDK constructs",
"version": "1.6.2",
"version": "1.7.0-SNAPSHOT",
"author": "Restate Developers",
"license": "MIT",
"email": "code@restate.dev",
Expand Down
6 changes: 3 additions & 3 deletions test/__snapshots__/restate-constructs.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ exports[`Restate constructs Create a self-hosted Restate environment deployed on
yum install -y aws-cfn-bootstrap

yum install -y npm && npm install -gq
@restatedev/restate@1.6 @restatedev/restatectl@1.6
@restatedev/restate@1.7 @restatedev/restatectl@1.7

yum install -y docker

Expand Down Expand Up @@ -745,7 +745,7 @@ exports[`Restate constructs Create a self-hosted Restate environment deployed on
--log-driver=awslogs --log-opt awslogs-group=
- Ref: RestateLogsFD86ECAE
- >2-
docker.restate.dev/restatedev/restate:1.6 --config-file /etc/restate/config.toml
docker.restate.dev/restatedev/restate:1.7 --config-file /etc/restate/config.toml
yum install -y nginx

mkdir -p /etc/pki/private
Expand Down Expand Up @@ -1049,7 +1049,7 @@ exports[`Restate constructs Create a self-hosted Restate environment deployed on
yum install -y aws-cfn-bootstrap

yum install -y npm && npm install -gq
@restatedev/restate@1.6 @restatedev/restatectl@1.6
@restatedev/restate@1.7 @restatedev/restatectl@1.7

yum install -y docker

Expand Down
Loading