Skip to content

Commit

Permalink
pull from ghcr
Browse files Browse the repository at this point in the history
  • Loading branch information
consindo committed Oct 16, 2021
1 parent 7185854 commit 167da43
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion infrastructure/waka-orchestrator.tf
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ resource "kubernetes_deployment" "waka-orchestrator" {
service_account_name = kubernetes_service_account.waka-orchestrator.metadata.0.name

container {
image = "dymajo/waka-server:orchestrator-${jsondecode(data.http.git_sha.body).commit.sha}"
image = "ghcr.io/dymajo/waka-server/orchestrator:${jsondecode(data.http.git_sha.body).commit.sha}"
name = "waka-orchestrator"

env {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/waka-proxy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "kubernetes_deployment" "waka-proxy" {
spec {
automount_service_account_token = "true"
container {
image = "dymajo/waka-server:proxy-${jsondecode(data.http.git_sha.body).commit.sha}"
image = "ghcr.io/dymajo/waka-server/proxy:${jsondecode(data.http.git_sha.body).commit.sha}"
name = "waka-proxy"

env {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/waka-realtime.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ resource "kubernetes_deployment" "waka-realtime" {
spec {
automount_service_account_token = "true"
container {
image = "dymajo/waka-server:realtime-${jsondecode(data.http.git_sha.body).commit.sha}"
image = "ghcr.io/dymajo/waka-server/realtime:${jsondecode(data.http.git_sha.body).commit.sha}"
name = "waka-realtime"

env {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/waka-worker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ resource "kubernetes_deployment" "waka-worker" {
spec {
automount_service_account_token = "true"
container {
image = "dymajo/waka-server:worker-${jsondecode(data.http.git_sha.body).commit.sha}"
image = "ghcr.io/dymajo/waka-server/worker:${jsondecode(data.http.git_sha.body).commit.sha}"
name = "waka-worker"

env_from {
Expand Down

0 comments on commit 167da43

Please sign in to comment.