Skip to content

Commit 9cf8e2d

Browse files
authored
[Feature] Add CA Certificates (#1955)
1 parent 67fb9f7 commit 9cf8e2d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- (Feature) Enable ML Operator and add required Platform Roles
66
- (Feature) Helm Lint
77
- (Bugfix) Helm Lint Indent fix
8+
- (Feature) Add CA Certificates
89

910
## [1.3.0](https://github.com/arangodb/kube-arangodb/tree/1.3.0) (2025-08-01)
1011
- (Feature) (Platform) Storage Debug

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM ${IMAGE} AS base
99

1010
ARG BUILD_SKIP_UPDATE=false
1111
ENV BUILD_SKIP_UPDATE=${BUILD_SKIP_UPDATE}
12-
RUN if [ X"${BUILD_SKIP_UPDATE}" = X"true" ]; then echo "Update skipped!"; else apt-get update && apt-get upgrade -y && apt-get clean; fi
12+
RUN apt-get update && apt-get upgrade -y && (if [ X"${BUILD_SKIP_UPDATE}" = X"true" ]; then echo "Update skipped!"; else apt-get install -y ca-certificates; fi) && apt-get clean
1313

1414
FROM base
1515

0 commit comments

Comments
 (0)