Skip to content
Closed
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 Dockerfile.dapper
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN zypper -n in git-core curl tar gzip docker wget awk hostname && \
rm -rf /tmp/* /var/tmp/* /usr/share/doc/packages/*

RUN if [ "${ARCH}" == "amd64" ]; then \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.61.0; \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.64.7; \
fi
RUN curl -sL https://get.helm.sh/helm-v3.9.0-linux-${ARCH}.tar.gz | tar xvzf - -C /usr/local/bin --strip-components=1
RUN if [ "${ARCH}" != "s390x" ]; then \
Expand Down
2 changes: 1 addition & 1 deletion charts/rancher-backup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ global:
enabled: false # PSP enablement should default to false
kubectl:
repository: rancher/kubectl
tag: v1.27.16
tag: v1.31.6

## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
Expand Down
20 changes: 10 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ module github.com/rancher/backup-restore-operator

go 1.22.0

toolchain go1.22.8
toolchain go1.24.1

replace golang.org/x/crypto => golang.org/x/crypto v0.27.0
replace golang.org/x/crypto => golang.org/x/crypto v0.36.0

require (
github.com/minio/minio-go/v7 v7.0.77
github.com/minio/minio-go/v7 v7.0.88
github.com/rancher/lasso v0.0.0-20230830164424-d684fdeb6f29
github.com/rancher/wrangler/v2 v2.0.2
github.com/robfig/cron/v3 v3.0.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
golang.org/x/sync v0.8.0
k8s.io/api v0.27.16
k8s.io/apiextensions-apiserver v0.27.16
k8s.io/apimachinery v0.27.16
k8s.io/apiserver v0.27.16
k8s.io/client-go v0.27.16
github.com/stretchr/testify v1.10.0
golang.org/x/sync v0.12.0
k8s.io/api v0.31.7
k8s.io/apiextensions-apiserver v0.31.7
k8s.io/apimachinery v0.31.7
k8s.io/apiserver v0.31.7
k8s.io/client-go v0.31.7
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6
)

Expand Down
6 changes: 3 additions & 3 deletions tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ go 1.22

require (
github.com/rancher/hull v0.0.0-20230424152137-627ef5347afd
github.com/stretchr/testify v1.9.0
k8s.io/api v0.27.16
k8s.io/apimachinery v0.27.16
github.com/stretchr/testify v1.10.0
k8s.io/api v0.31.7
k8s.io/apimachinery v0.31.7
)

require (
Expand Down
Loading