From 0ac58cfdbbae893fba52f0895788ac37079d4627 Mon Sep 17 00:00:00 2001 From: "franz.germann" Date: Mon, 28 Apr 2025 14:05:38 +0200 Subject: [PATCH 1/4] updates host in deployment.yaml --- deployment/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/deployment.yaml b/deployment/deployment.yaml index c1037eb..339d111 100644 --- a/deployment/deployment.yaml +++ b/deployment/deployment.yaml @@ -44,7 +44,7 @@ metadata: nginx.ingress.kubernetes.io/ssl-redirect: "false" spec: rules: - - host: 192-168-197-2.traefik.me + - host: https://factory.c-one-infra.de http: paths: - path: /ascii-live @@ -57,4 +57,4 @@ spec: tls: - secretName: ascii-live-tls-prod-cert hosts: - - 192-168-197-2.traefik.me + - https://factory.c-one-infra.de From bd09827c56ba7e32f14e7cec9e3da3ac40c55029 Mon Sep 17 00:00:00 2001 From: "franz.germann" Date: Mon, 28 Apr 2025 14:07:50 +0200 Subject: [PATCH 2/4] updates host in deployment.yaml --- deployment/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/deployment.yaml b/deployment/deployment.yaml index 339d111..55e485e 100644 --- a/deployment/deployment.yaml +++ b/deployment/deployment.yaml @@ -44,7 +44,7 @@ metadata: nginx.ingress.kubernetes.io/ssl-redirect: "false" spec: rules: - - host: https://factory.c-one-infra.de + - host: factory.c-one-infra.de http: paths: - path: /ascii-live @@ -57,4 +57,4 @@ spec: tls: - secretName: ascii-live-tls-prod-cert hosts: - - https://factory.c-one-infra.de + - factory.c-one-infra.de From 3717327e7f73c270f2ddaa0cf36f933c4ec78dfe Mon Sep 17 00:00:00 2001 From: "franz.germann" Date: Mon, 28 Apr 2025 14:34:46 +0200 Subject: [PATCH 3/4] testing local build --- .github/workflows/.github-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/.github-ci.yml b/.github/workflows/.github-ci.yml index acf60a0..2000290 100644 --- a/.github/workflows/.github-ci.yml +++ b/.github/workflows/.github-ci.yml @@ -5,7 +5,6 @@ on: push jobs: build: runs-on: ubuntu-22.04 - steps: - name: Repository meta id: repository From e72ef905ce5508e96d49455bc2013ee62adfbd95 Mon Sep 17 00:00:00 2001 From: "franz.germann" Date: Mon, 28 Apr 2025 15:38:54 +0200 Subject: [PATCH 4/4] testing removal of ca-certicates from docker file --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4a55e65..692a233 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM golang:1.24.1-alpine AS build-env ENV GO111MODULE=on WORKDIR /go/src/github.com/hugomd/ascii-live/ -RUN apk add ca-certificates +# RUN apk add ca-certificates COPY . /go/src/github.com/hugomd/ascii-live/ RUN cd /go/src/github.com/hugomd/ascii-live && \ go mod download && \ @@ -9,5 +9,5 @@ RUN cd /go/src/github.com/hugomd/ascii-live && \ FROM scratch COPY --from=build-env /go/src/github.com/hugomd/ascii-live/main / -COPY --from=build-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt +# COPY --from=build-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt CMD ["/main"]