Skip to content

Commit cdd7e32

Browse files
committed
fix references to op paths
1 parent 41132e6 commit cdd7e32

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

build/postgres-operator/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ COPY licenses /licenses
6060
COPY --from=go_builder /usr/local/bin/postgres-operator /usr/local/bin
6161
COPY --from=go_builder /usr/local/bin/extension-installer /usr/local/bin
6262
COPY --from=go_builder /usr/local/bin/pgbackrest /usr/local/bin/
63+
COPY --from=go_builder /usr/local/bin/postgres-entrypoint.sh /usr/local/bin/
64+
COPY --from=go_builder /usr/local/bin/postgres-liveness-check.sh /usr/local/bin/
65+
COPY --from=go_builder /usr/local/bin/postgres-readiness-check.sh /usr/local/bin/
6366
COPY --from=go_builder /licenses /licenses
6467
COPY build/postgres-operator/install-extensions.sh /usr/local/bin
6568
COPY build/postgres-operator/init-entrypoint.sh /usr/local/bin
66-
COPY build/postgres-operator/postgres-entrypoint.sh /usr/local/bin
67-
COPY build/postgres-operator/postgres-liveness-check.sh /usr/local/bin
68-
COPY build/postgres-operator/postgres-readiness-check.sh /usr/local/bin
6969
COPY hack/tools/queries /opt/crunchy/conf
7070

7171
RUN chgrp -R 0 /opt/crunchy/conf && chmod -R g=u opt/crunchy/conf

go.mod

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/percona/percona-postgresql-operator
22

33
go 1.23.4
4+
45
toolchain go1.24.1
56

67
require (
@@ -58,7 +59,7 @@ require (
5859

5960
require (
6061
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
61-
github.com/aws/aws-sdk-go v1.55.6
62+
github.com/aws/aws-sdk-go v1.55.5
6263
github.com/beorn7/perks v1.0.1 // indirect
6364
github.com/blang/semver/v4 v4.0.0 // indirect
6465
github.com/bool64/shared v0.1.5 // indirect
@@ -127,7 +128,7 @@ require (
127128
google.golang.org/protobuf v1.36.5 // indirect
128129
gopkg.in/inf.v0 v0.9.1 // indirect
129130
gopkg.in/yaml.v3 v3.0.1 // indirect
130-
k8s.io/apiextensions-apiserver v0.32.1 // indirect
131+
k8s.io/apiextensions-apiserver v0.32.1
131132
k8s.io/klog/v2 v2.130.1 // indirect
132133
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
133134
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd
66
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
77
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so=
88
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw=
9-
github.com/aws/aws-sdk-go v1.55.6 h1:cSg4pvZ3m8dgYcgqB97MrcdjUmZ1BeMYKUxMMB89IPk=
10-
github.com/aws/aws-sdk-go v1.55.6/go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU=
9+
github.com/aws/aws-sdk-go v1.55.5 h1:KKUZBfBoyqy5d3swXyiC7Q76ic40rYcbqH7qjh59kzU=
10+
github.com/aws/aws-sdk-go v1.55.5/go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU=
1111
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
1212
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
1313
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=

0 commit comments

Comments
 (0)