File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -60,12 +60,12 @@ COPY licenses /licenses
60
60
COPY --from=go_builder /usr/local/bin/postgres-operator /usr/local/bin
61
61
COPY --from=go_builder /usr/local/bin/extension-installer /usr/local/bin
62
62
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/
63
66
COPY --from=go_builder /licenses /licenses
64
67
COPY build/postgres-operator/install-extensions.sh /usr/local/bin
65
68
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
69
69
COPY hack/tools/queries /opt/crunchy/conf
70
70
71
71
RUN chgrp -R 0 /opt/crunchy/conf && chmod -R g=u opt/crunchy/conf
Original file line number Diff line number Diff line change 1
1
module github.com/percona/percona-postgresql-operator
2
2
3
3
go 1.23.4
4
+
4
5
toolchain go1.24.1
5
6
6
7
require (
@@ -58,7 +59,7 @@ require (
58
59
59
60
require (
60
61
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
62
63
github.com/beorn7/perks v1.0.1 // indirect
63
64
github.com/blang/semver/v4 v4.0.0 // indirect
64
65
github.com/bool64/shared v0.1.5 // indirect
@@ -127,7 +128,7 @@ require (
127
128
google.golang.org/protobuf v1.36.5 // indirect
128
129
gopkg.in/inf.v0 v0.9.1 // indirect
129
130
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
131
132
k8s.io/klog/v2 v2.130.1 // indirect
132
133
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
133
134
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd
6
6
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 /go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs =
7
7
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so =
8
8
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 =
11
11
github.com/benbjohnson/clock v1.1.0 /go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA =
12
12
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM =
13
13
github.com/beorn7/perks v1.0.1 /go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw =
You can’t perform that action at this time.
0 commit comments