File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ FROM ${IMAGE} AS base
99
1010ARG BUILD_SKIP_UPDATE=false
1111ENV 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
1414FROM base
1515
You can’t perform that action at this time.
0 commit comments