Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): pin dependencies #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 03-Kubernetes/cluster-autoscaler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cluster-autoscaler:
image:
repository: k8s.gcr.io/autoscaling/cluster-autoscaler
pullPolicy: IfNotPresent
tag: v1.25.1 # Follows cluster versions schemes: controle plane 1.18 -> tag v1.18.x
tag: v1.25.1@sha256:cfdfd46b726a2d5488d4df9c41b636acbab0dff4c01c8c6dbe3d057539f2f2af # Follows cluster versions schemes: controle plane 1.18 -> tag v1.18.x

# Defaults to "ClusterFirst". Valid values are
# 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'
Expand Down
4 changes: 2 additions & 2 deletions 04-Application/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ before_script:
# Permissions are already set to allow Gitlab to access the registry
build:
stage: build
image: public.ecr.aws/zero-downtime/buildah-awscli:v1.22.0
image: public.ecr.aws/zero-downtime/buildah-awscli:v1.22.0@sha256:d79e2ce427fe150871bd8b69defbeb5f2d8f77e8fd4e48d3a1827b4fa3fc5654
extends:
- .tags
variables:
Expand All @@ -35,7 +35,7 @@ build:

# This job will deploy our application based on our Kube manifest
release:
image: alpine/helm:latest
image: alpine/helm:latest@sha256:9b25e60ae264940b276e32866d37e3088e70c4e2d1784b964dc3f90346281a74
stage: deploy
extends:
- .tags
Expand Down
2 changes: 1 addition & 1 deletion 04-Application/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/golang:1.20 AS builder
FROM public.ecr.aws/docker/library/golang:1.20@sha256:8f9af7094d0cb27cc783c697ac5ba25efdc4da35f8526db21f7aebb0b0b4f18a AS builder
WORKDIR /app

COPY go.* .
Expand Down