Skip to content

Commit 5917d21

Browse files
committed
fix: boto3 listObjects error
1 parent 9fe556c commit 5917d21

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

docker/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ FROM mysql:8.0-debian
22
LABEL org.opencontainers.image.authors="[email protected]"
33

44
RUN apt-get update && \
5-
apt-get install -y zip psmisc python3 python3-boto3
5+
apt-get install -y zip psmisc python3 python3-venv
6+
7+
RUN python3 -m venv /opt/venv
8+
ENV PATH="/opt/venv/bin:$PATH"
9+
RUN pip install boto3
610

711
WORKDIR /app
812
ADD . /app

helm-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.1.2
18+
version: 1.1.3
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.1.2"
24+
appVersion: "1.1.3"

helm-chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ backup:
7171
image:
7272
registry: ""
7373
repository: 36node/mysql-backup
74-
tag: 1.1.2
74+
tag: 1.1.3
7575
digest: ""
7676
## Specify a imagePullPolicy
7777
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -139,7 +139,7 @@ restore:
139139
image:
140140
registry: ""
141141
repository: 36node/mysql-backup
142-
tag: 1.1.2
142+
tag: 1.1.3
143143
digest: ""
144144
## Specify a imagePullPolicy
145145
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'

0 commit comments

Comments
 (0)