Skip to content

Commit 5e071b9

Browse files
authored
PBM-1165: Update PBM module (#1284)
* PBM-1165: Update PBM module * update k8s version on Jenkins
1 parent fdfd08e commit 5e071b9

File tree

5 files changed

+59
-85
lines changed

5 files changed

+59
-85
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ void createCluster(String CLUSTER_SUFFIX) {
1414
gcloud auth activate-service-account --key-file $CLIENT_SECRET_FILE
1515
gcloud config set project $GCP_PROJECT
1616
gcloud container clusters list --filter $CLUSTER_NAME-${CLUSTER_SUFFIX} --zone $GKERegion --format='csv[no-heading](name)' | xargs gcloud container clusters delete --zone $GKERegion --quiet || true
17-
gcloud container clusters create --zone $GKERegion $CLUSTER_NAME-${CLUSTER_SUFFIX} --cluster-version=1.22 --machine-type=n1-standard-4 --preemptible --num-nodes=3 --network=jenkins-vpc --subnetwork=jenkins-${CLUSTER_SUFFIX} --no-enable-autoupgrade --cluster-ipv4-cidr=/21 --labels delete-cluster-after-hours=6 --enable-ip-alias --workload-pool=cloud-dev-112233.svc.id.goog && \
17+
gcloud container clusters create --zone $GKERegion $CLUSTER_NAME-${CLUSTER_SUFFIX} --cluster-version=1.24 --machine-type=n1-standard-4 --preemptible --num-nodes=3 --network=jenkins-vpc --subnetwork=jenkins-${CLUSTER_SUFFIX} --no-enable-autoupgrade --cluster-ipv4-cidr=/21 --labels delete-cluster-after-hours=6 --enable-ip-alias --workload-pool=cloud-dev-112233.svc.id.goog && \
1818
kubectl create clusterrolebinding cluster-admin-binding --clusterrole cluster-admin --user jenkins@"$GCP_PROJECT".iam.gserviceaccount.com || ret_val=\$?
1919
if [ \${ret_val} -eq 0 ]; then break; fi
2020
ret_num=\$((ret_num + 1))

go.mod

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.2
1515
github.com/hashicorp/go-version v1.6.0
1616
github.com/jetstack/cert-manager v1.6.1
17-
github.com/percona/percona-backup-mongodb v0.0.0-20221024072933-3ec38a5fc670
17+
github.com/percona/percona-backup-mongodb v1.8.1-0.20230725073611-5d2c6eeb81be
1818
github.com/pkg/errors v0.9.1
1919
github.com/robfig/cron/v3 v3.0.1
2020
github.com/sirupsen/logrus v1.9.0
@@ -33,12 +33,13 @@ require (
3333
)
3434

3535
require (
36-
github.com/Azure/azure-pipeline-go v0.2.3 // indirect
37-
github.com/Azure/azure-storage-blob-go v0.15.0 // indirect
36+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.3.0 // indirect
37+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.1 // indirect
38+
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0 // indirect
3839
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
3940
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
4041
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
41-
github.com/aws/aws-sdk-go v1.44.71 // indirect
42+
github.com/aws/aws-sdk-go v1.44.206 // indirect
4243
github.com/beorn7/perks v1.0.1 // indirect
4344
github.com/cespare/xxhash/v2 v2.2.0 // indirect
4445
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -67,18 +68,17 @@ require (
6768
github.com/jmespath/go-jmespath v0.4.0 // indirect
6869
github.com/josharian/intern v1.0.0 // indirect
6970
github.com/json-iterator/go v1.1.12 // indirect
70-
github.com/klauspost/compress v1.15.9 // indirect
71+
github.com/klauspost/compress v1.15.15 // indirect
7172
github.com/klauspost/pgzip v1.2.5 // indirect
7273
github.com/mailru/easyjson v0.7.7 // indirect
73-
github.com/mattn/go-ieproxy v0.0.7 // indirect
7474
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
7575
github.com/minio/minio-go v6.0.14+incompatible // indirect
7676
github.com/mitchellh/go-homedir v1.1.0 // indirect
7777
github.com/mitchellh/mapstructure v1.4.3 // indirect
7878
github.com/moby/spdystream v0.2.0 // indirect
7979
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8080
github.com/modern-go/reflect2 v1.0.2 // indirect
81-
github.com/mongodb/mongo-tools v0.0.0-20220803145531-1d46e6e7021f // indirect
81+
github.com/mongodb/mongo-tools v0.0.0-20221102190735-6d9d341edd33 // indirect
8282
github.com/montanaflynn/stats v0.6.6 // indirect
8383
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8484
github.com/oklog/ulid v1.3.1 // indirect
@@ -93,8 +93,8 @@ require (
9393
github.com/spf13/pflag v1.0.5 // indirect
9494
github.com/stretchr/objx v0.5.0 // indirect
9595
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
96-
github.com/xdg-go/scram v1.1.1 // indirect
97-
github.com/xdg-go/stringprep v1.0.3 // indirect
96+
github.com/xdg-go/scram v1.1.2 // indirect
97+
github.com/xdg-go/stringprep v1.0.4 // indirect
9898
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
9999
go.opentelemetry.io/otel v1.11.1 // indirect
100100
go.opentelemetry.io/otel/trace v1.11.1 // indirect
@@ -129,5 +129,4 @@ require (
129129
replace (
130130
github.com/Azure/go-autorest => github.com/Azure/go-autorest v14.2.0+incompatible // Required by OLM
131131
github.com/dgrijalva/jwt-go v3.2.0+incompatible => github.com/golang-jwt/jwt/v4 v4.2.0
132-
github.com/percona/percona-backup-mongodb => github.com/percona/percona-backup-mongodb v0.0.0-20221024072933-3ec38a5fc670
133132
)

0 commit comments

Comments
 (0)