Skip to content

Commit

Permalink
Fix references to missing docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasjackson committed Aug 9, 2024
1 parent b452c54 commit 7e10fa5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ resource "k8s_cluster" "k3s" {
}
copy_image {
name = "shipyardrun/connector:v0.4.0"
name = "ghcr.io/jumppad-labs/connector:v0.4.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/modules/modules/single_k3s_cluster/k8s.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "k8s_cluster" "k3s" {
}

copy_image {
name = "shipyardrun/connector:v0.1.0"
name = "ghcr.io/jumppad-labs/connector:v0.4.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/remote/connector_config/connector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: connector
image: shipyardrun/connector:v0.4.0
image: ghcr.io/jumppad-labs/connector:v0.4.0
env:
- name: BIND_ADDR_GRPC
value: "0.0.0.0:30000"
Expand Down
2 changes: 1 addition & 1 deletion examples/remote/remote_k8s.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ container "remote_k8s" {

container "local_connector" {
image {
name = "shipyardrun/connector:v0.4.0"
name = "ghcr.io/jumppad-labs/connector:v0.4.0"
}

env_var = {
Expand Down
2 changes: 1 addition & 1 deletion examples/single_k3s_cluster/k8s.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "k8s_cluster" "k3s" {
}

copy_image {
name = "shipyardrun/connector:v0.4.0"
name = "ghcr.io/jumppad-labs/connector:v0.4.0"
}
}

Expand Down

0 comments on commit 7e10fa5

Please sign in to comment.