cloud-on-k8s icon indicating copy to clipboard operation
cloud-on-k8s copied to clipboard

apm-server-wolfi 8.17.2 "exec: "apm-server": executable file not found in $PATH: unknown"

Open kourosh-forti-hands opened this issue 8 months ago • 0 comments
trafficstars

Currently building a deployment using eck-stack to deploy elasticsearch, kibana, logstash, fleet-server, enterprise-search and apm-server.

They are all using wolfi images. Up to now I was able to deploy everything successfully using wolfi images.

During my apm-server deployment I began getting the following events from my pods:

"Error: failed to create containerd task: failed to create shim task: OCI runtime create failed: 
runc create failed: unable to start container process: exec: "apm-server": executable file not found in $PATH: unknown"

I discovered this was brought up and closed in issue #8447 upon further digging and testing. I switched it from the wolfi image and it deployed successfully.

Is it possible the issue still exists but with the wolfi images only?

eck-apm-server:
  version: 8.17.2
  enabled: true
  image: 000000000000.dkr.ecr.us-gov-west-1.amazonaws.com/apm/apm-server-wolfi:8.17.2-amd64
  imagePullPolicy: Always
  count: 3
  elasticsearchRef:
    name: elasticsearch
  kibanaRef:
    name: kibana
  config:
    name: elastic-apm
    apm-server.jaeger.grpc.enabled: true
    apm-server.jaeger.grpc.host: "0.0.0.0:14250"
    apm-server.rum.enabled: true
    apm-server.ilm.enabled: true
    xpack.fleet.packages:
      - name: apm
        version: latest
  http:
    tls:
      selfSignedCertificate:
        disabled: true
    service:
      spec:
        ports:
          - name: http
            port: 8200
            targetPort: 8200
          - name: grpc
            port: 14250
            targetPort: 14250

kourosh-forti-hands avatar Feb 24 '25 17:02 kourosh-forti-hands