Skip to content

Commit

Permalink
[OCU-89] change registry from docker to github
Browse files Browse the repository at this point in the history
  • Loading branch information
northdpole committed Apr 29, 2024
1 parent f83c8b7 commit 11c6a3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ latest_tag=$(shell git tag --list --sort="-version:refname" | head -n 1)
commits_since_latest_tag=$(shell git log --oneline $(latest_tag)..HEAD | wc -l)

GO_TEST_PACKAGES=$(shell go list ./... | grep -v /vendor/)
CONTAINER_REPO=europe-west1-docker.pkg.dev/oc-dracon-saas/demo/ocurity/dracon
CONTAINER_REPO=ghcr.io/ocurity/dracon
DRACON_VERSION=$(shell echo $(latest_tag)$$([ $(commits_since_latest_tag) -eq 0 ] || echo "-$$(git log -n 1 --pretty='format:%h')" )$$([ -z "$$(git status --porcelain=v1 2>/dev/null)" ] || echo "-dirty" ))
TEKTON_VERSION=0.44.0
TEKTON_DASHBOARD_VERSION=0.29.2
Expand Down
2 changes: 1 addition & 1 deletion cmd/draconctl/migrations/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func grabLeaderLock(f cmdEntrypoint, cmd *cobra.Command, args []string, restCfg
// generateMigrationJob generates a Job manifest
func generateMigrationJob(cmdName string) *batchv1.Job {
if migrationsAsK8sJobConfig.image == "" {
migrationsAsK8sJobConfig.image = "europe-west1-docker.pkg.dev/oc-dracon-saas/demo/ocurity/dracon/draconctl:latest"
migrationsAsK8sJobConfig.image = "https://ghcr.io/ocurity/dracon/draconctl:latest"
}

migrationJob := batchv1.Job{
Expand Down

0 comments on commit 11c6a3a

Please sign in to comment.