Skip to content

Commit

Permalink
fix some more instances
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgb committed May 15, 2024
1 parent 57de9ea commit 0ec6a88
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'drifting-in-space/plane' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
platforms: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'jamsocket/plane' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
buildx-fallback: true
project: 58j0517pw2
2 changes: 1 addition & 1 deletion .github/workflows/build-quickstart-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'drifting-in-space/plane' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
platforms: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'jamsocket/plane' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
buildx-fallback: true
project: 58j0517pw2
2 changes: 1 addition & 1 deletion docs/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Logo from '../components/logo'
</div>

<div style={{marginTop: 20}}>
<a href="https://github.com/jamsocket/plane"><img src="https://img.shields.io/github/stars/drifting-in-space/plane?style=social" alt="Plane GitHub Repo" /></a>
<a href="https://github.com/jamsocket/plane"><img src="https://img.shields.io/github/stars/jamsocket/plane?style=social" alt="Plane GitHub Repo" /></a>
</div>

Plane is a distributed system for **running stateful WebSocket backends at scale**. Plane is heavily inspired by [Figma’s multiplayer infrastructure](https://www.figma.com/blog/rust-in-production-at-figma/), which dynamically spawns a process for each active document.
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/plane-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ example payload might look like this:
},
"spawn_config": {
"executable": {
"image": "ghcr.io/drifting-in-space/demo-image-drop-four",
"image": "ghcr.io/jamsocket/demo-image-drop-four",
},
"lifetime_limit_seconds": 3600,
"max_idle_seconds": 60,
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/quickstart-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ docker/cli.sh \
connect \
--cluster 'localhost:9090' \
--key 'my-first-backend' \
--image 'ghcr.io/drifting-in-space/demo-image-drop-four'
--image 'ghcr.io/jamsocket/demo-image-drop-four'
```

You can think of Plane as a big key-value store that associates “keys” (arbitrary strings) with running processes
Expand Down
2 changes: 1 addition & 1 deletion plane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="../resources/plane-logo-light.svg" alt="Plane logo" />
</a>

[![GitHub Repo stars](https://img.shields.io/github/stars/drifting-in-space/plane?style=social)](https://github.com/jamsocket/plane)
[![GitHub Repo stars](https://img.shields.io/github/stars/jamsocket/plane?style=social)](https://github.com/jamsocket/plane)
[![Docker image](https://img.shields.io/docker/v/plane/plane)](https://hub.docker.com/r/plane/plane/tags)
[![Build Docker Image](https://github.com/jamsocket/plane/actions/workflows/build-image.yml/badge.svg)](https://github.com/jamsocket/plane/actions/workflows/build-image.yml)
[![Tests](https://github.com/jamsocket/plane/actions/workflows/tests.yml/badge.svg)](https://github.com/jamsocket/plane/actions/workflows/tests.yml)
Expand Down
2 changes: 1 addition & 1 deletion plane/plane-tests/tests/backend_lifecycle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async fn backend_lifecycle(env: TestEnvironment) {
cluster: Some(env.cluster.clone()),
pool: DronePoolName::default(),
executable: serde_json::to_value(DockerExecutorConfig {
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(),
image: "ghcr.io/jamsocket/demo-image-drop-four".to_string(),
pull_policy: Some(PullPolicy::IfNotPresent),
env: HashMap::default(),
resource_limits: ResourceLimits::default(),
Expand Down
2 changes: 1 addition & 1 deletion plane/plane-tests/tests/backend_status_in_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async fn backend_status_in_response(env: TestEnvironment) {
cluster: Some(env.cluster.clone()),
pool: DronePoolName::default(),
executable: serde_json::to_value(DockerExecutorConfig {
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(),
image: "ghcr.io/jamsocket/demo-image-drop-four".to_string(),
pull_policy: Some(PullPolicy::IfNotPresent),
env: HashMap::default(),
resource_limits: ResourceLimits::default(),
Expand Down
2 changes: 1 addition & 1 deletion plane/plane-tests/tests/drone_pools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async fn drone_pools(env: TestEnvironment) {
cluster: Some(env.cluster.clone()),
pool: DronePoolName::default(),
executable: serde_json::to_value(DockerExecutorConfig {
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(),
image: "ghcr.io/jamsocket/demo-image-drop-four".to_string(),
pull_policy: Some(PullPolicy::IfNotPresent),
env: HashMap::default(),
resource_limits: ResourceLimits::default(),
Expand Down
2 changes: 1 addition & 1 deletion plane/plane-tests/tests/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async fn test_get_metrics(_: TestEnvironment) {
.unwrap();

let executor_config = DockerExecutorConfig::from_image_with_defaults(
"ghcr.io/drifting-in-space/demo-image-drop-four",
"ghcr.io/jamsocket/demo-image-drop-four",
);

runtime.prepare(&executor_config).await.unwrap();
Expand Down
2 changes: 1 addition & 1 deletion plane/plane-tests/tests/reuse_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async fn reuse_key(env: TestEnvironment) {
cluster: Some(env.cluster.clone()),
pool: DronePoolName::default(),
executable: serde_json::to_value(DockerExecutorConfig {
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(),
image: "ghcr.io/jamsocket/demo-image-drop-four".to_string(),
pull_policy: Some(PullPolicy::IfNotPresent),
env: HashMap::default(),
resource_limits: ResourceLimits::default(),
Expand Down
2 changes: 1 addition & 1 deletion plane/plane-tests/tests/subdomains.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async fn subdomains(env: TestEnvironment) {
cluster: Some(env.cluster.clone()),
pool: DronePoolName::default(),
executable: serde_json::to_value(DockerExecutorConfig {
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(),
image: "ghcr.io/jamsocket/demo-image-drop-four".to_string(),
pull_policy: Some(PullPolicy::IfNotPresent),
env: HashMap::default(),
resource_limits: ResourceLimits::default(),
Expand Down
4 changes: 2 additions & 2 deletions plane/plane-tests/tests/volume_mounts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async fn volume_mounts(env: TestEnvironment) {
cluster: Some(env.cluster.clone()),
pool: DronePoolName::default(),
executable: serde_json::to_value(DockerExecutorConfig {
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(),
image: "ghcr.io/jamsocket/demo-image-drop-four".to_string(),
pull_policy: Some(PullPolicy::IfNotPresent),
env: HashMap::default(),
resource_limits: ResourceLimits::default(),
Expand Down Expand Up @@ -67,7 +67,7 @@ async fn volume_mounts(env: TestEnvironment) {
cluster: Some(env.cluster.clone()),
pool: DronePoolName::default(),
executable: serde_json::to_value(DockerExecutorConfig {
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(),
image: "ghcr.io/jamsocket/demo-image-drop-four".to_string(),
pull_policy: Some(PullPolicy::IfNotPresent),
env: HashMap::default(),
resource_limits: ResourceLimits::default(),
Expand Down

0 comments on commit 0ec6a88

Please sign in to comment.