feat(OkdInstallBlog): add missing subscription config

This commit is contained in:
Sylvain Tremblay 2024-04-20 10:53:05 -04:00
parent 900b920966
commit 19dd198506
3 changed files with 5 additions and 2 deletions

View File

@ -8,7 +8,7 @@ image:
repository: registry.nationtech.io/sreez-website
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "v1.7.1"
tag: "v1.7.2"
imagePullSecrets:
- name: nationtech-registry-key

View File

@ -43,6 +43,9 @@ COPY --from=builder /app/target/site /app/site
# Copy Cargo.toml if its needed at runtime
COPY --from=builder /app/Cargo.toml /app/
# Copy config.toml to configure discord endpoint
COPY --from=builder /app/config.toml /app/
# Set any required env variables and
ENV RUST_LOG="info"
ENV LEPTOS_SITE_ADDR="0.0.0.0:8080"

View File

@ -2,7 +2,7 @@
REGISTRY=registry.nationtech.io
IMAGE_NAME=sreez-website
TAG="v1.7.1"
TAG="v1.7.2"
IMAGE="${REGISTRY}/${IMAGE_NAME}:${TAG}"