Skip to content

Commit

Permalink
Release 1.0.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkleeman committed Jun 7, 2024
1 parent c5be254 commit 11378d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "restate-operator"
version = "0.9.0"
version = "1.0.0"
authors = ["restate.dev"]
edition = "2021"
rust-version = "1.75"
Expand Down
2 changes: 1 addition & 1 deletion charts/restate-operator-helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
name: restate-operator-helm
description: An operator for Restate clusters
type: application
version: "0.9.0"
version: "1.0.0"
5 changes: 2 additions & 3 deletions src/reconcilers/compute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,9 @@ fn restate_service(

fn env(cluster_name: &str, custom: Option<&[EnvVar]>) -> Vec<EnvVar> {
let defaults = [
("RESTATE_OBSERVABILITY__LOG__FORMAT", "Json"), // todo: old env var can be removed soon
("RESTATE_LOG_FORMAT", "json"),
("RESTATE_CLUSTER_NAME", cluster_name),
("RESTATE_BASE_DIR", "/target"),
("RESTATE_BASE_DIR", "/restate-data"),
("RUST_BACKTRACE", "1"),
("RUST_LIB_BACKTRACE", "0"),
("RESTATE_CONFIG", "/config/config.toml"),
Expand Down Expand Up @@ -206,7 +205,7 @@ fn restate_statefulset(
let mut volume_mounts = vec![
VolumeMount {
name: "storage".into(),
mount_path: "/target".into(),
mount_path: "/restate-data".into(),
..Default::default()
},
VolumeMount {
Expand Down

0 comments on commit 11378d2

Please sign in to comment.