Skip to content

Commit

Permalink
Fix ghcr container names (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesg authored Nov 3, 2021
1 parent 7039773 commit 09c0732
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
5 changes: 3 additions & 2 deletions chart/values.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,18 @@ git:

hub: ghcr.io/freiheit-com
tag: "$VERSION"

log:
# Possible values are "gcp" for a gcp-optimized format and "default" for json
format: ""
# Other possible values are "DEBUG", "INFO", "ERROR"
level: "WARN"
cd:
image: kuberpult/cd-service
image: kuberpult-cd-service
backendConfig:
create: false # Add backend config for health checks on GKE only
frontend:
image: kuberpult/frontend-service
image: kuberpult-frontend-service
ingress:
annotations: {}
domainName: null
Expand Down
1 change: 1 addition & 0 deletions docker/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
FROM alpine:3.14
LABEL org.opencontainers.image.source https://github.com/freiheit-com/kuberpult
RUN apk add --no-cache libgit2 libgit2-dev go protoc make pkgconfig git
RUN wget https://github.com/argoproj/argo-cd/releases/download/v2.1.2/argocd-linux-amd64 -O /usr/local/bin/argocd && chmod +x /usr/local/bin/argocd
1 change: 1 addition & 0 deletions services/cd-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM alpine:3.14
LABEL org.opencontainers.image.source https://github.com/freiheit-com/kuberpult
RUN apk --update add ca-certificates tzdata libgit2 git
RUN wget https://github.com/argoproj/argo-cd/releases/download/v2.1.2/argocd-linux-amd64 -O /usr/local/bin/argocd && chmod +x /usr/local/bin/argocd
ENV TZ=Europe/Berlin
Expand Down
2 changes: 1 addition & 1 deletion services/cd-service/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export VERSION

export CGO_ENABLED=1

IMAGENAME?=ghcr.io/freiheit-com/kuberpult/cd-service:${VERSION}
IMAGENAME?=ghcr.io/freiheit-com/kuberpult-cd-service:${VERSION}

COMPILE_WITH_DOCKER := $(shell [ -z "$$WITHOUT_DOCKER" ] && v=true || v=false; echo $$v)

Expand Down
1 change: 1 addition & 0 deletions services/frontend-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM alpine:3.14 AS builder
RUN apk --update add ca-certificates tzdata

FROM scratch
LABEL org.opencontainers.image.source https://github.com/freiheit-com/kuberpult
ENV TZ=Europe/Berlin
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
Expand Down
2 changes: 1 addition & 1 deletion services/frontend-service/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ GO := go
GO_FILES := $(shell find . -type f -name '*.go')


IMAGENAME?=ghcr.io/freiheit-com/kuberpult/frontend-service:${VERSION}
IMAGENAME?=ghcr.io/freiheit-com/kuberpult-frontend-service:${VERSION}

GARBAGE := *.sentinel

Expand Down

0 comments on commit 09c0732

Please sign in to comment.