File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ WORKDIR /workspace
77# Copy the Go Modules manifests
88COPY go.mod go.mod
99COPY go.sum go.sum
10+
11+
1012# cache deps before building and copying source so that we don't need to re-download as much
1113# and so that source changes don't invalidate our downloaded layer
1214RUN go mod download
Original file line number Diff line number Diff line change 3737
3838
3939# Image configuration - can be overridden via environment variables
40- # Set IMAGE_TAG=local to build locally, or use a published version (default: 2.5.0 )
40+ # Set IMAGE_TAG=local to build locally, or use a published version (default: local )
4141IMAGE_REPO=" ${IMAGE_REPO:- keyfactor} "
4242IMAGE_NAME=" ${IMAGE_NAME:- command-cert-manager-issuer} "
43- IMAGE_TAG=" ${IMAGE_TAG:- 2.5.0 } "
43+ IMAGE_TAG=" ${IMAGE_TAG:- local } "
4444FULL_IMAGE_NAME=" ${IMAGE_REPO} /${IMAGE_NAME} :${IMAGE_TAG} "
4545
4646# Helm chart configuration - can be overridden via environment variables
47- # Set HELM_CHART_VERSION=local to use the local chart, or use a published version (default: 2.5.0 )
47+ # Set HELM_CHART_VERSION=local to use the local chart, or use a published version (default: local )
4848HELM_CHART_NAME=" command-cert-manager-issuer"
49- HELM_CHART_VERSION=" ${HELM_CHART_VERSION:- 2.5.0 } "
49+ HELM_CHART_VERSION=" ${HELM_CHART_VERSION:- local } "
5050
5151IS_LOCAL_DEPLOYMENT=$( [ " $IMAGE_TAG " = " local" ] && echo " true" || echo " false" )
5252IS_LOCAL_HELM=$( [ " $HELM_CHART_VERSION " = " local" ] && echo " true" || echo " false" )
Original file line number Diff line number Diff line change 11module github.com/Keyfactor/command-cert-manager-issuer
22
3- go 1.24
4-
5- toolchain go1.24.0
3+ go 1.24.0
64
75require (
8- github.com/Keyfactor/keyfactor-auth-client-go v1.3.0
6+ github.com/Keyfactor/keyfactor-auth-client-go v1.3.1
97 github.com/Keyfactor/keyfactor-go-client-sdk/v25 v25.0.2
108 github.com/cert-manager/cert-manager v1.16.2
119 github.com/go-logr/logr v1.4.2
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ github.com/AzureAD/microsoft-authentication-extensions-for-go/cache v0.1.1 h1:WJ
2222github.com/AzureAD/microsoft-authentication-extensions-for-go/cache v0.1.1 /go.mod h1:tCcJZ0uHAmvjsVYzEFivsRTN00oz5BEsRgQHu5JZ9WE =
2323github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 h1:oygO0locgZJe7PpYPXT5A29ZkwJaPqcva7BVeemZOZs =
2424github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 /go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI =
25- github.com/Keyfactor/keyfactor-auth-client-go v1.3.0 h1:otC213b6CYzqeN9b3CRlH1Qj1hTFIN5nqPA8gTlHdLg =
26- github.com/Keyfactor/keyfactor-auth-client-go v1.3.0 /go.mod h1:97vCisBNkdCK0l2TuvOSdjlpvQa4+GHsMut1UTyv1jo =
25+ github.com/Keyfactor/keyfactor-auth-client-go v1.3.1 h1:G45WsqH5CqMYSAcNHa7tm9fhvKHsc1BaFQS1X1eCfs4 =
26+ github.com/Keyfactor/keyfactor-auth-client-go v1.3.1 /go.mod h1:97vCisBNkdCK0l2TuvOSdjlpvQa4+GHsMut1UTyv1jo =
2727github.com/Keyfactor/keyfactor-go-client-sdk/v25 v25.0.2 h1:7VsZOYgMHAO2a1eeyVgDKel9TJXXYRQpd1EvSvp8lKA =
2828github.com/Keyfactor/keyfactor-go-client-sdk/v25 v25.0.2 /go.mod h1:VnVW8x+pChhnOWBR1PNYPeCQQjlWIK1bwHI8i8j7UPI =
2929github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa h1:LHTHcTQiSGT7VVbI0o4wBRNQIgn917usHWOd6VAffYI =
You can’t perform that action at this time.
0 commit comments