Skip to content

Commit

Permalink
chore: prefix shared annotation with experimental
Browse files Browse the repository at this point in the history
Signed-off-by: Brooks Townsend <[email protected]>
  • Loading branch information
brooksmtownsend committed Oct 11, 2024
1 parent ee3b618 commit 6d16f9f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/wadm-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub const VERSION_ANNOTATION_KEY: &str = "version";
/// spec](https://github.com/oam-dev/spec/blob/master/metadata.md#annotations-format)
pub const DESCRIPTION_ANNOTATION_KEY: &str = "description";
/// The annotation key for shared applications
pub const SHARED_ANNOTATION_KEY: &str = "wasmcloud.dev/shared";
pub const SHARED_ANNOTATION_KEY: &str = "experimental.wasmcloud.dev/shared";
/// The identifier for the builtin spreadscaler trait type
pub const SPREADSCALER_TRAIT: &str = "spreadscaler";
/// The identifier for the builtin daemonscaler trait type
Expand Down
1 change: 1 addition & 0 deletions tests/e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ use wadm_types::{
use wasmcloud_control_interface::HostInventory;

const LOG_DIR: &str = "tests/e2e_log";
pub const DEFAULT_LATTICE_ID: &str = "default";
// Due to download times and the time needed to stabilize, we still need to wait for just a little bit
// This number comes from 30s (max backoff time) + 5s of wiggle room
pub const DEFAULT_WAIT_TIME: Duration = Duration::from_secs(35);
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/manifests/shared/shared_component.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: shared-component
annotations:
description: 'A shared component!'
wasmcloud.dev/shared: 'true'
experimental.wasmcloud.dev/shared: 'true'
spec:
components:
- name: link-to-meee
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/manifests/shared/shared_http.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: shared-http
annotations:
description: 'A shared HTTP server and client, for everybody!!!!!!!!!!!!!!!!!!!!'
wasmcloud.dev/shared: 'true'
experimental.wasmcloud.dev/shared: 'true'
spec:
components:
- name: httpclient
Expand Down

0 comments on commit 6d16f9f

Please sign in to comment.