Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/axoflow/axoflow-otel-collector/axoflow-otel-collector:0.129.0-axoflow.4 AS axo-otelcol
FROM ghcr.io/axoflow/axoflow-otel-collector/axoflow-otel-collector:0.143.0-axoflow.0 AS axo-otelcol

FROM alpine:3.21 AS base

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You can find guides per connector:
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| `AXOROUTER_ENDPOINT` | Yes | - | Axorouter endpoint |
| `STORAGE_DIRECTORY` | No (Yes in case of Docker) | `/etc/axoflow-otel-collector/storage` | Directory used for persistence |
| `STORAGE_DIRECTORY` | No (Yes in case of Docker) | `/var/lib/axoflow-otel-collector/storage` | Directory used for persistence |
| `AXOROUTER_TLS_INSECURE` | No | `false` | Whether to disable TLS security |
| `AXOROUTER_TLS_CA_FILE` | No | - | Path to the CA certificate file |
| `AXOROUTER_TLS_CA_PEM` | No | - | PEM-encoded CA certificate |
Expand Down
2 changes: 1 addition & 1 deletion charts/cloudconnectors/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ Create the name of the service account to use
Storage path helper
*/}}
{{- define "cloudconnectors.storagePath" -}}
{{- default "/etc/axoflow-otel-collector/storage" .Values.storage.path -}}
{{- default "/var/lib/axoflow-otel-collector/storage" .Values.storage.path -}}
{{- end -}}
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu

: "${STORAGE_DIRECTORY:=etc/axoflow-otel-collector/storage}"
: "${STORAGE_DIRECTORY:=/var/lib/axoflow-otel-collector/storage}"

detect_provider() {
local provider=""
Expand Down
Loading