Skip to content

Commit

Permalink
Merge pull request #115 from serlo/pull-editor-image-from-ghcr
Browse files Browse the repository at this point in the history
pull editor image from GHCR
  • Loading branch information
hugotiburtino authored Aug 11, 2024
2 parents ae51722 + 04918d8 commit 4df6de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/editor-as-lti-tool/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
name = "editor-as-lti-tool"
image_tag = var.dev_mode ? "dev" : "latest"
image_tag = "0.0.1"

lti_platform_url = "https://identityserver.itslearning.com"

Expand Down Expand Up @@ -71,7 +71,7 @@ resource "kubernetes_deployment" "editor_as_lti_tool" {
}

container {
image = "eu.gcr.io/serlo-shared/editor-as-lti-tool:${local.image_tag}"
image = "ghcr.io/serlo/serlo-editor-as-lti-tool:${local.image_tag}"
name = local.name
image_pull_policy = "Always"

Expand Down

0 comments on commit 4df6de9

Please sign in to comment.